本文整理汇总了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])