本文整理汇总了Python中fuglu.shared.Suspect.tags['testtag']方法的典型用法代码示例。如果您正苦于以下问题:Python Suspect.tags['testtag']方法的具体用法?Python Suspect.tags['testtag']怎么用?Python Suspect.tags['testtag']使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fuglu.shared.Suspect
的用法示例。
在下文中一共展示了Suspect.tags['testtag']方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_sf_get_args
# 需要导入模块: from fuglu.shared import Suspect [as 别名]
# 或者: from fuglu.shared.Suspect import tags['testtag'] [as 别名]
def test_sf_get_args(self):
"""Test SuspectFilter files"""
suspect = Suspect('[email protected]',
'[email protected]', TESTDATADIR + '/helloworld.eml')
suspect.tags['testtag'] = 'testvalue'
headermatches = self.candidate.get_args(suspect)
self.assertTrue(
'Sent to unittest domain!' in headermatches, "To_domain not found in headercheck")
self.assertTrue('Envelope sender is [email protected]' in headermatches,
"Envelope Sender not matched in header chekc")
self.assertTrue('Mime Version is 1.0' in headermatches,
"Standard header Mime Version not found")
self.assertTrue(
'A tag match' in headermatches, "Tag match did not work")
self.assertTrue(
'Globbing works' in headermatches, "header globbing failed")
self.assertTrue(
'body rule works' in headermatches, "decoded body rule failed")
self.assertTrue(
'full body rule works' in headermatches, "full body failed")
self.assertTrue('mime rule works' in headermatches, "mime rule failed")
self.assertFalse('this should not match in a body rule' in headermatches,
'decoded body rule matched raw body')
# perl style advanced rules
self.assertTrue('perl-style /-notation works!' in headermatches,
"new rule format failed: %s" % headermatches)
self.assertTrue('perl-style recipient match' in headermatches,
"new rule format failed for to_domain: %s" % headermatches)
self.assertFalse('this should not match' in headermatches,
"rule flag ignorecase was not detected")
示例2: test_hf
# 需要导入模块: from fuglu.shared import Suspect [as 别名]
# 或者: from fuglu.shared.Suspect import tags['testtag'] [as 别名]
def test_hf(self):
"""Test header filters"""
suspect = Suspect('[email protected]',
'[email protected]', TESTDATADIR + '/helloworld.eml')
suspect.tags['testtag'] = 'testvalue'
headermatches = self.candidate.get_args(suspect)
self.failUnless(
'Sent to unittest domain!' in headermatches, "To_domain not found in headercheck")
self.failUnless('Envelope sender is [email protected]' in headermatches,
"Envelope Sender not matched in header chekc")
self.failUnless('Mime Version is 1.0' in headermatches,
"Standard header Mime Version not found")
self.failUnless(
'A tag match' in headermatches, "Tag match did not work")
self.failUnless(
'Globbing works' in headermatches, "header globbing failed")
self.failUnless(
'body rule works' in headermatches, "decoded body rule failed")
self.failUnless(
'full body rule works' in headermatches, "full body failed")
self.failUnless('mime rule works' in headermatches, "mime rule failed")
self.failIf('this should not match in a body rule' in headermatches,
'decoded body rule matched raw body')
# perl style advanced rules
self.failUnless('perl-style /-notation works!' in headermatches,
"new rule format failed: %s" % headermatches)
self.failUnless('perl-style recipient match' in headermatches,
"new rule format failed for to_domain: %s" % headermatches)
self.failIf('this should not match' in headermatches,
"rule flag ignorecase was not detected")
# TODO: raw body rules
# extended
(match, info) = self.candidate.matches(suspect, extended=True)
self.failUnless(match, 'Match should return True')
field, matchedvalue, arg, regex = info
self.failUnless(field == 'to_domain')
self.failUnless(matchedvalue == 'unittests.fuglu.org')
self.failUnless(arg == 'Sent to unittest domain!')
self.failUnless(regex == 'unittests\.fuglu\.org')