本文整理汇总了Python中salmon.routing.Router类的典型用法代码示例。如果您正苦于以下问题:Python Router类的具体用法?Python Router怎么用?Python Router使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Router类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_routes_deliver_to_not_existing_address
def test_routes_deliver_to_not_existing_address(self):
Router.load(['inboxen.router.app.server'])
message = MailRequest("locahost", "[email protected]", "[email protected]", TEST_MSG)
with self.assertRaises(SMTPError) as excp:
Router.deliver(message)
self.assertEqual(excp.exception.code, 550)
self.assertEqual(excp.exception.message, "No such address")
开发者ID:Inboxen,项目名称:Inboxen,代码行数:8,代码来源:tests.py
示例2: test_forward
def test_forward(smtp_mock):
smtp_mock.return_value = Mock()
import salmon.handlers.forward # noqa
Router.deliver(create_message())
assert smtp_mock.return_value.sendmail.called
assert smtp_mock.return_value.quit.called
开发者ID:DrDub,项目名称:salmon,代码行数:8,代码来源:handler_tests.py
示例3: test_forward
def test_forward(smtp_mock):
smtp_mock.return_value = Mock()
utils.import_settings(False)
import salmon.handlers.forward # noqa
Router.deliver(create_message())
assert_equal(smtp_mock.return_value.sendmail.call_count, 1)
assert_equal(smtp_mock.return_value.quit.call_count, 1)
开发者ID:moggers87,项目名称:salmon,代码行数:10,代码来源:handler_tests.py
示例4: test_routes_deliver_to_admin_raise_smtperror_on_other_errors
def test_routes_deliver_to_admin_raise_smtperror_on_other_errors(self):
Router.load(['inboxen.router.app.server'])
with mock.patch("salmon.server.smtplib.SMTP") as smtp_mock:
smtp_mock.return_value.sendmail.side_effect = Exception()
message = MailRequest("locahost", "[email protected]", "[email protected]", TEST_MSG)
with self.assertRaises(SMTPError) as excp:
Router.deliver(message)
self.assertEqual(excp.exception.code, 450)
self.assertEqual(excp.exception.message, "Error while forwarding admin message %s" % id(message))
开发者ID:Inboxen,项目名称:Inboxen,代码行数:11,代码来源:tests.py
示例5: test_routes_deliver_to_admin
def test_routes_deliver_to_admin(self):
Router.load(['inboxen.router.app.server'])
with mock.patch("inboxen.router.app.server.Relay") as relay_mock, \
mock.patch("inboxen.router.app.server.make_email") as mock_make_email:
deliver_mock = mock.Mock()
relay_mock.return_value.deliver = deliver_mock
message = MailRequest("locahost", "[email protected]", "[email protected]", TEST_MSG)
Router.deliver(message)
self.assertEqual(mock_make_email.call_count, 0)
self.assertEqual(relay_mock.call_count, 1)
self.assertEqual(deliver_mock.call_count, 1)
self.assertEqual(message, deliver_mock.call_args[0][0])
开发者ID:Inboxen,项目名称:Inboxen,代码行数:14,代码来源:tests.py
示例6: test_routes_deliver_to_inbox
def test_routes_deliver_to_inbox(self):
user = factories.UserFactory()
inbox = factories.InboxFactory(user=user)
Router.load(['inboxen.router.app.server'])
with mock.patch("inboxen.router.app.server.Relay") as relay_mock, \
mock.patch("inboxen.router.app.server.make_email") as mock_make_email:
deliver_mock = mock.Mock()
relay_mock.return_value.deliver = deliver_mock
message = MailRequest("locahost", "[email protected]", str(inbox), TEST_MSG)
Router.deliver(message)
self.assertEqual(mock_make_email.call_count, 1)
self.assertEqual(relay_mock.call_count, 0)
self.assertEqual(deliver_mock.call_count, 0)
开发者ID:Inboxen,项目名称:Inboxen,代码行数:15,代码来源:tests.py
示例7: test_reload_raises
def test_reload_raises():
Router.LOG_EXCEPTIONS = True
Router.reload()
assert routing.LOG.exception.called
Router.LOG_EXCEPTIONS = False
routing.LOG.exception.reset_mock()
assert_raises(ImportError, Router.reload)
assert not routing.LOG.exception.called
routing.LOG.exception.reset_mock()
Router.LOG_EXCEPTIONS = True
Router.load(['fake.handler'])
assert routing.LOG.exception.called
Router.LOG_EXCEPTIONS = False
routing.LOG.exception.reset_mock()
assert_raises(ImportError, Router.load, ['fake.handler'])
assert not routing.LOG.exception.called
开发者ID:secretario,项目名称:salmon,代码行数:19,代码来源:routing_tests.py
示例8: test_soft_bounce_tells_them
def test_soft_bounce_tells_them():
setup()
# get them into a posting state
admin_tests.test_existing_user_posts_message()
assert_in_state('app.handlers.admin', list_addr, sender, 'POSTING')
clear_queue()
assert mailinglist.find_subscriptions(sender, list_addr)
# force them to soft bounce
msg = create_bounce(list_addr, sender)
msg.bounce.primary_status = (3, bounce.PRIMARY_STATUS_CODES[u'3'])
assert msg.bounce.is_soft()
Router.deliver(msg)
assert_in_state('app.handlers.admin', list_addr, sender, 'BOUNCING')
assert_in_state('app.handlers.bounce', list_addr, sender, 'BOUNCING')
assert delivered('unbounce'), "Looks like unbounce didn't go out."
assert_equal(len(queue(queue_dir=settings.BOUNCE_ARCHIVE).keys()), 1)
assert not mailinglist.find_subscriptions(sender, list_addr)
# make sure that any attempts to post return a "you're bouncing dude" message
unbounce = client.say(list_addr, 'So anyway as I was saying.', 'unbounce')
assert_in_state('app.handlers.admin', list_addr, sender, 'BOUNCING')
# now have them try to unbounce
msg = client.say(unbounce['from'], "Please put me back on, I'll be good.",
'unbounce-confirm')
# handle the bounce confirmation
client.say(msg['from'], "Confirmed to unbounce.", 'noreply')
# alright they should be in the unbounce state for the global bounce handler
assert_in_state('app.handlers.bounce', list_addr, sender,
'UNBOUNCED')
# and they need to be back to POSTING for regular operations
assert_in_state('app.handlers.admin', list_addr, sender, 'POSTING')
assert mailinglist.find_subscriptions(sender, list_addr)
# and make sure that only the original bounce is in the bounce archive
assert_equal(len(queue(queue_dir=settings.BOUNCE_ARCHIVE).keys()), 1)
开发者ID:claytondaley,项目名称:salmon,代码行数:42,代码来源:bounce_tests.py
示例9: test_Router_undeliverable_queue
def test_Router_undeliverable_queue():
Router.clear_routes()
Router.clear_states()
Router.UNDELIVERABLE_QUEUE = Mock()
msg = MailRequest('fakepeer', '[email protected]', '[email protected]', "Nothing")
Router.deliver(msg)
assert Router.UNDELIVERABLE_QUEUE.push.called
开发者ID:secretario,项目名称:salmon,代码行数:9,代码来源:routing_tests.py
示例10: simple_key_gen
from __future__ import print_function
from salmon.routing import Router, nolocking, route, route_like, state_key_generator, stateless
@state_key_generator
def simple_key_gen(module_name, message):
return module_name
# common routing capture regexes go in here, you can override them in @route
Router.defaults(host="localhost",
action="[a-zA-Z0-9]+",
list_name="[a-zA-Z.0-9]+")
@route("(list_name)-(action)@(host)")
def START(message, list_name=None, action=None, host=None):
print("START", message, list_name, action, host)
if action == 'explode':
print("EXPLODE!")
raise RuntimeError("Exploded on purpose.")
return CONFIRM
@route("(list_name)-confirm-(id_number)@(host)", id_number="[0-9]+")
def CONFIRM(message, list_name=None, id_number=None, host=None):
print("CONFIRM", message, list_name, id_number, host)
return POSTING
开发者ID:moggers87,项目名称:salmon,代码行数:29,代码来源:simple_fsm_mod.py
示例11: test_queue_handler
def test_queue_handler():
import salmon.handlers.queue # noqa
Router.deliver(create_message())
开发者ID:jluttine,项目名称:salmon,代码行数:3,代码来源:handler_tests.py
示例12: test_log_handler
def test_log_handler():
import salmon.handlers.log # noqa
Router.deliver(create_message())
开发者ID:jluttine,项目名称:salmon,代码行数:3,代码来源:handler_tests.py
示例13: cleanup_router
def cleanup_router():
Router.clear_routes()
Router.clear_states()
Router.HANDLERS.clear()
utils.settings = None
开发者ID:jluttine,项目名称:salmon,代码行数:5,代码来源:handler_tests.py
示例14: QueueReceiver
logging.config.fileConfig("config/logging.conf")
settings.receiver = QueueReceiver(settings.SENDER_QUEUE_PATH,
settings.sender_queue_sleep)
# the relay host to actually send the final message to
settings.relay = Relay(host=settings.relay_config['host'],
port=settings.relay_config['port'], debug=1)
# when silent, it won't reply to emails it doesn't know
settings.silent = settings.is_silent_config
# owner email to send all unknown emails
settings.owner_email = settings.owner_email_config
# server for email
settings.server_name = settings.server_name_config
# server for website
settings.web_server_name = settings.server_name_config
# start backend
table.r = table.start_table()
Router.defaults(**settings.router_defaults)
Router.load(settings.sender_handlers)
Router.RELOAD=True
Router.SEND_QUEUE=queue.Queue(settings.SENDER_QUEUE_PATH) # mails to send
Router.UNDELIVERABLE_QUEUE=queue.Queue("run/error_send")
Router.STATE_STORE=state_storage.UserStateStorage()
开发者ID:DrDub,项目名称:poissonmagique,代码行数:30,代码来源:sender.py
示例15: test_RoutingBase
def test_RoutingBase():
assert len(Router.ORDER) == 0
assert len(Router.REGISTERED) == 0
setup_router(['salmon_tests.handlers.simple_fsm_mod'])
from handlers import simple_fsm_mod
assert len(Router.ORDER) > 0
assert len(Router.REGISTERED) > 0
message = MailRequest('fakepeer', '[email protected]', '[email protected]', "")
Router.deliver(message)
assert Router.in_state(simple_fsm_mod.CONFIRM, message)
confirm = MailRequest('fakepeer', '"Zed Shaw" <[email protected]>', '[email protected]', "")
Router.deliver(confirm)
assert Router.in_state(simple_fsm_mod.POSTING, message)
Router.deliver(message)
assert Router.in_state(simple_fsm_mod.NEXT, message)
Router.deliver(message)
assert Router.in_state(simple_fsm_mod.END, message)
Router.deliver(message)
assert Router.in_state(simple_fsm_mod.START, message)
Router.clear_states()
Router.LOG_EXCEPTIONS = True
explosion = MailRequest('fakepeer', '<[email protected]>', '[email protected]', "")
Router.deliver(explosion)
assert Router.in_error(simple_fsm_mod.END, explosion)
Router.clear_states()
Router.LOG_EXCEPTIONS = False
explosion = MailRequest('fakepeer', '[email protected]', '[email protected]', "")
assert_raises(RuntimeError, Router.deliver, explosion)
Router.reload()
assert 'salmon_tests.handlers.simple_fsm_mod' in Router.HANDLERS
assert len(Router.ORDER)
assert len(Router.REGISTERED)
开发者ID:secretario,项目名称:salmon,代码行数:43,代码来源:routing_tests.py
示例16: to
import jinja2
import logging
import logging.config
import os
# configure logging to go to a log file
logging.config.fileConfig("config/test_logging.conf")
# the relay host to actually send the final message to (set debug=1 to see what
# the relay is saying to the log server).
settings.relay = Relay(host=settings.relay_config['host'],
port=settings.relay_config['port'], debug=0)
settings.receiver = None
Router.defaults(**settings.router_defaults)
Router.load(settings.handlers + settings.queue_handlers)
Router.RELOAD=True
view.LOADER = jinja2.Environment(
loader=jinja2.PackageLoader(settings.template_config['dir'],
settings.template_config['module']))
# if you have pyenchant and enchant installed then the template tests will do
# spell checking for you, but you need to tell pyenchant where to find itself
if 'PYENCHANT_LIBRARY_PATH' not in os.environ:
os.environ['PYENCHANT_LIBRARY_PATH'] = '/opt/local/lib/libenchant.dylib'
开发者ID:claytondaley,项目名称:salmon,代码行数:29,代码来源:testing.py
示例17:
##
import logging
import logging.config
import os
from django.conf import settings as dj_settings
from salmon import queue
from salmon.routing import Router
from inboxen.router.config import settings
__all__ = ["settings"]
try:
os.mkdir("logs", 0o700)
except OSError:
pass
try:
os.mkdir("run", 0o710) # group can access files in "run"
except OSError:
pass
logging.config.dictConfig(dj_settings.SALMON_LOGGING)
Router.load(['inboxen.router.app.server'])
Router.RELOAD = False
Router.LOG_EXCEPTIONS = True
Router.UNDELIVERABLE_QUEUE = queue.Queue("run/undeliverable")
开发者ID:Inboxen,项目名称:Inboxen,代码行数:30,代码来源:boot.py
示例18: test_spam_sent_by_confirmed_user
def test_spam_sent_by_confirmed_user():
test_confirmed_user_comments()
clear_queue("run/posts")
Router.deliver(make_spam())
开发者ID:hovel,项目名称:salmon,代码行数:5,代码来源:comments_tests.py
示例19: test_queue_handler
def test_queue_handler():
import salmon.handlers.queue # noqa
Router.deliver(message_tests.test_mail_request())
开发者ID:secretario,项目名称:salmon,代码行数:3,代码来源:handler_tests.py
示例20: setup_router
def setup_router(handlers):
Router.clear_routes()
Router.clear_states()
Router.HANDLERS.clear()
Router.load(handlers)
开发者ID:moggers87,项目名称:salmon,代码行数:5,代码来源:setup_env.py
注:本文中的salmon.routing.Router类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论