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


Python DummyRequest.session["viewing_date"]方法代码示例

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


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

示例1: test_confirmation_receiver_JSON

# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["viewing_date"] [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
开发者ID:CO600GOL,项目名称:Game_of_life,代码行数:32,代码来源:test_create.py

示例2: test_confirmation_receiver_JSON_failure

# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["viewing_date"] [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
开发者ID:CO600GOL,项目名称:Game_of_life,代码行数:34,代码来源:test_create.py

示例3: test_session_page_data_for_scheduling

# 需要导入模块: from pyramid.testing import DummyRequest [as 别名]
# 或者: from pyramid.testing.DummyRequest import session["viewing_date"] [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)
开发者ID:CO600GOL,项目名称:Game_of_life,代码行数:22,代码来源:test_create.py


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