本文整理匯總了Python中pykolab.imap.IMAP.getannotation方法的典型用法代碼示例。如果您正苦於以下問題:Python IMAP.getannotation方法的具體用法?Python IMAP.getannotation怎麽用?Python IMAP.getannotation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pykolab.imap.IMAP
的用法示例。
在下文中一共展示了IMAP.getannotation方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_003_folder_types_set
# 需要導入模塊: from pykolab.imap import IMAP [as 別名]
# 或者: from pykolab.imap.IMAP import getannotation [as 別名]
def test_003_folder_types_set(self):
imap = IMAP()
imap.connect()
exec("ac_folders = %s" % (conf.get_raw(conf.get('kolab', 'primary_domain'), 'autocreate_folders')))
folders = []
folders.extend(imap.lm('user/%(local)[email protected]%(domain)s' % (self.user)))
folders.extend(imap.lm('user/%(local)s/*@%(domain)s' % (self.user)))
for folder in folders:
annotation = imap.getannotation(folder)
print annotation
folder_name = '/'.join(folder.split('/')[2:]).split('@')[0]
if ac_folders.has_key(folder_name):
if ac_folders[folder_name].has_key('annotations'):
for _annotation in ac_folders[folder_name]['annotations'].keys():
_annotation_value = ac_folders[folder_name]['annotations'][_annotation]
self.assertTrue(annotation[annotation.keys().pop()].has_key(_annotation))
self.assertEqual(_annotation_value, annotation[annotation.keys().pop()][_annotation])