当前位置: 首页>>代码示例>>Python>>正文


Python DispatchState.add_controller方法代码示例

本文整理汇总了Python中crank.dispatchstate.DispatchState.add_controller方法的典型用法代码示例。如果您正苦于以下问题:Python DispatchState.add_controller方法的具体用法?Python DispatchState.add_controller怎么用?Python DispatchState.add_controller使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在crank.dispatchstate.DispatchState的用法示例。


在下文中一共展示了DispatchState.add_controller方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: setup

# 需要导入模块: from crank.dispatchstate import DispatchState [as 别名]
# 或者: from crank.dispatchstate.DispatchState import add_controller [as 别名]
class TestDispatchState:

    def setup(self):
        self.request = MockRequest()
        self.dispatcher = MockController()
        self.state = DispatchState(self.request, self.dispatcher, {'a':1, 'b':2})

    def test_create(self):
        assert self.state.params == {'a':1, 'b':2}, self.state.params
        assert self.state.root_dispatcher == self.dispatcher
        assert self.state.routing_args == {}

    def test_create_params_in_request(self):
        state = DispatchState(self.request, self.dispatcher)
        assert state.params == {'c':3, 'd':4}, state.params

    def test_add_controller(self):
        mock = MockController()
        self.state.add_controller('mock', mock)
        assert dict(self.state.controller_path)['mock'] == mock

    def test_add_method(self):
        self.state.add_method('a', 'b')
        assert self.state.method == 'a'
        assert self.state.remainder == 'b'
        
    def test_use_path_info(self):
        state = DispatchState(self.request, self.dispatcher, path_info=['a', 'b'])
        assert state.path == ['a', 'b'], state.path

    def test_ignore_parameters(self):
        state = DispatchState(self.request, self.dispatcher, {'a':1, 'z':5}, ignore_parameters=['z'])
        assert state.params == {'a':1}, state.params
        
    def test_path_info_with_blanks(self):
        state = DispatchState(self.request, self.dispatcher, path_info=['', 'a', 'b', '',''])
        assert state.path == ['a', 'b'], state.path

    def test_path_info_blank(self):
        state = DispatchState(self.request, self.dispatcher, path_info=[])
        assert state.path == [], state.path

    def test_add_routing_args(self):
        current_path = 'current'
        remainder = ['c', 'd']
        fixed = ['e', 'f', 'g']
        var_args = ['g', 'h']
        self.state.add_routing_args(current_path, remainder, fixed, var_args)

    def test_add_routing_args_with_remainder(self):
        current_path = 'current'
        remainder = ['c', 'd', 'x','y']
        fixed = ['e', 'f', 'g']
        var_args = ['g', 'h']
        self.state.add_routing_args(current_path, remainder, fixed, var_args)

    def test_controller(self):
        mock = MockController()
        self.state.add_controller('mock', mock)
        assert self.state.controller == mock
        
    def test_init_with_extension(self):
        r = MockRequest()
        r.path_info = 'something.json'
        state = DispatchState(r, dispatcher=None)
        assert state.extension == 'json'
        
    def test_init_with_string_path(self):
        r = MockRequest()
        r.path_info = 'something.json'
        state = DispatchState(r, dispatcher=None, path_info='s1/s2')
        assert state.path == ['s1', 's2']
开发者ID:TurboGears,项目名称:crank,代码行数:74,代码来源:test_dispachstate.py


注:本文中的crank.dispatchstate.DispatchState.add_controller方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。