本文整理汇总了Python中blackhole.smtp.Smtp.process_header方法的典型用法代码示例。如果您正苦于以下问题:Python Smtp.process_header方法的具体用法?Python Smtp.process_header怎么用?Python Smtp.process_header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blackhole.smtp.Smtp
的用法示例。
在下文中一共展示了Smtp.process_header方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_headers_default
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_headers_default(self):
cfile = create_config(("",))
Config(cfile).load()
smtp = Smtp([])
assert smtp.mode == "accept"
smtp.process_header("x-blackhole-mode: bounce")
assert smtp.mode == "bounce"
示例2: test_headers_enabled
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_headers_enabled(self):
cfile = create_config(("dynamic_switch=true",))
Config(cfile).load()
smtp = Smtp([])
assert smtp.mode == "accept"
smtp.process_header("x-blackhole-mode: bounce")
assert smtp.mode == "bounce"
示例3: test_invalid_range_delay
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_invalid_range_delay(self):
smtp = Smtp([])
assert smtp.delay is None
smtp.process_header("x-blackhole-delay: abc, def")
assert smtp.delay is None
示例4: test_valid_range_delay
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_valid_range_delay(self):
smtp = Smtp([])
assert smtp.delay is None
smtp.process_header("x-blackhole-delay: 5, 10")
assert smtp.delay in [5, 6, 7, 8, 9, 10]
示例5: test_valid_single_delay
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_valid_single_delay(self):
smtp = Smtp([])
assert smtp.delay is None
smtp.process_header("x-blackhole-delay: 30")
assert smtp.delay is 30
示例6: test_invalid_mode_header2
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_invalid_mode_header2(self):
smtp = Smtp([])
assert smtp.mode == "accept"
smtp.process_header("x-some-mode: bounce")
assert smtp.mode == "accept"
示例7: test_invalid_mode_header
# 需要导入模块: from blackhole.smtp import Smtp [as 别名]
# 或者: from blackhole.smtp.Smtp import process_header [as 别名]
def test_invalid_mode_header(self):
smtp = Smtp([])
assert smtp.mode == "accept"
smtp.process_header("x-blackhole-mode: help")
assert smtp.mode == "accept"