本文整理汇总了Python中pyramid.testing.DummyRequest.session["viewing_slot"]方法的典型用法代码示例。如果您正苦于以下问题:Python DummyRequest.session["viewing_slot"]方法的具体用法?Python DummyRequest.session["viewing_slot"]怎么用?Python DummyRequest.session["viewing_slot"]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyramid.testing.DummyRequest
的用法示例。
在下文中一共展示了DummyRequest.session["viewing_slot"]方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_confirmation_receiver_JSON
# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["viewing_slot"] [as 别名]
def test_confirmation_receiver_JSON(self):
"""
This method tests the confirmation receiver JSON view of the confirmation page. The expected result of this
test is for the content of a session to be successfully added to the server-side database.
"""
request = DummyRequest(route='/confirm.json')
# Create a pattern to be saved to the database
request.session["pattern"] = create_input_pattern()
# Create a time and date to be saved for the pattern on the database
time = datetime.datetime.now().replace(minute=0, second=0, microsecond=0) + datetime.timedelta(days=1)
request.session["viewing_date"] = time.strftime("%d/%m/%Y")
request.session["viewing_hour"] = time.strftime("%H")
request.session["viewing_slot"] = time.strftime("%M")
response_dict = confirmation_receiver_JSON(request)
# Assert that a response has been retrieved.
assert response_dict
# Assert the data has been successfully stored to the database.
assert response_dict["success"]
# Assert that the data is inside the database.
assert Run.get_run_for_time_slot(time)
# Assert that the session has been emptied.
assert not "pattern" in request.session
assert not "viewing_date" in request.session
assert not "viewing_hour" in request.session
assert not "viewing_slot" in request.session
示例2: test_confirmation_receiver_JSON_failure
# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["viewing_slot"] [as 别名]
def test_confirmation_receiver_JSON_failure(self):
"""
This method tests the confirmation receiver JSON view of the confirmation page. The expected result of this
test is for the session to have already been added to the database and to fail to be added again.
"""
# Add pattern and time to database
time = datetime.datetime.now().replace(minute=5, second=0, microsecond=0) + datetime.timedelta(days=1)
with transaction.manager:
DBSession.add(Run(create_input_pattern(), time, ""))
DBSession.commit
# Set up request
request = DummyRequest(route='/confirm.json')
request.session["pattern"] = create_input_pattern()
request.session["viewing_date"] = time.strftime("%d/%m/%Y")
request.session["viewing_hour"] = time.strftime("%H")
request.session["viewing_slot"] = time.strftime("%M")
response_dict = confirmation_receiver_JSON(request)
# Test response has arrived
assert response_dict
# Assert that the data was not successfully stored.
assert not response_dict["success"]
# Assert that the response has been given a failure message.
assert response_dict["failure_message"]
# Assert that the session still exists.
assert not "pattern" in request.session
assert not "viewing_date" in request.session
assert not "viewing_hour" in request.session
assert not "viewing_slot" in request.session
示例3: test_session_page_data_for_scheduling
# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["viewing_slot"] [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)