本文整理汇总了Python中pyramid.testing.DummyRequest.session["create_page"]方法的典型用法代码示例。如果您正苦于以下问题:Python DummyRequest.session["create_page"]方法的具体用法?Python DummyRequest.session["create_page"]怎么用?Python DummyRequest.session["create_page"]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyramid.testing.DummyRequest
的用法示例。
在下文中一共展示了DummyRequest.session["create_page"]方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_session_data_for_pattern_input
# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["create_page"] [as 别名]
def test_session_data_for_pattern_input(self):
"""
This method will test the ability of the create view to access the correct page data from the session. The
expected result of this test is for the correct page data to be available for the 'pattern input' page.
"""
# Set up the request for testing the 'create pattern' page on session
session_request = DummyRequest(route='/create')
session_request.session["create_page"] = "pattern_input"
session_response = create_view(session_request)
# Assert that the response contains the correct page data
assert session_response["title"] == "Create Pattern"
assert session_response["page"] == "patternpage"
示例2: test_session_page_data_for_scheduling
# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["create_page"] [as 别名]
def test_session_page_data_for_scheduling(self):
"""
This method will test the ability of the create view to access the correct page data from the session. The
expected result of this test is for the correct page data to be available for the 'scheduling' page.
"""
# Set up the request for testing the 'scheduling' page on session
session_request = DummyRequest(route='/create')
session_request.session["create_page"] = "scheduler"
session_request.session["viewing_date"] = datetime.datetime.today().strftime("%d/%m/%Y")
session_request.session["viewing_hour"] = datetime.datetime.now().hour
session_request.session["viewing_slot"] = 25 # hard-coded because it must be a multiple of 5
session_response = create_view(session_request)
# Assert that the response contains the correct page data
assert session_response["title"] == "Scheduler"
assert session_response["page"] == "patternpage"
assert isinstance(session_response["viewing_date"], str)
assert isinstance(session_response["viewing_hour"], int)
assert isinstance(session_response["viewing_slot"], int)