コード例 #1
0
ファイル: test_waypoint.py プロジェクト: arnaud-morvan/v6_ui
class TestWaypointUi(BaseTestUi):

    def setUp(self):  # noqa
        self.set_prefix("waypoints")
        BaseTestUi.setUp(self)
        self.view = Waypoint(request=self.request)

    def test_pages(self):
        self._test_pages()

    def test_api_call(self):
        self._test_api_call()

    def test_get_documents(self):
        self._test_get_documents()

    def test_reprojection(self):
        # Testing lon/lat coordinates
        point = Point(6, 46)
        point2 = self.view._transform(point, 'epsg:4326', 'epsg:3857')
        self.assertAlmostEqual(point2.x, 667916, delta=1)
        self.assertAlmostEqual(point2.y, 5780349, delta=1)
        point3 = self.view._transform(point2, 'epsg:3857', 'epsg:4326')
        self.assertAlmostEqual(point3.x, point.x)
        self.assertAlmostEqual(point3.y, point.y)

        # Testing CH1903 coordinates
        point4 = Point(600000, 200000)
        point5 = self.view._transform(point4, 'epsg:21781', 'epsg:3857')
        self.assertAlmostEqual(point5.x, 828064, delta=1)
        self.assertAlmostEqual(point5.y, 5934093, delta=1)
        point6 = self.view._transform(point5, 'epsg:3857', 'epsg:21781')
        self.assertAlmostEqual(point6.x, point4.x, delta=1)
        self.assertAlmostEqual(point6.y, point4.y, delta=1)
コード例 #2
0
 def setUp(self):  # noqa
     self.set_prefix("waypoints")
     BaseTestUi.setUp(self)
     self.view = Waypoint(request=self.request)
コード例 #3
0
class TestWaypointUi(BaseTestUi):

    def setUp(self):  # noqa
        self.set_prefix("waypoints")
        BaseTestUi.setUp(self)
        self.view = Waypoint(request=self.request)

    def test_pages(self):
        self._test_pages()

    def test_index_cache_down(self):
        page_cache_mock = patch(
            'c2corg_ui.views.cache_static_pages.get_or_create',
            side_effect=Exception('Redis down'))

        with page_cache_mock:
            self.app.get('/{}'.format(self._prefix), status=200)

    def test_api_call(self):
        self._test_api_call()

    def test_get_documents(self):
        self._test_get_documents()

    def test_slug(self):
        with HTTMock(waypoint_detail_mock):
            url = '/{0}/117982'.format(self._prefix)
            self.app.get(url, status=302)

            url = '/{0}/117982/fr'.format(self._prefix)
            resp = self.app.get(url, status=301)

            redir = resp.headers.get('Location')
            self.assertEqual(
                redir, 'http://localhost/waypoints/117982/fr/vallorbe')

    def test_merged(self):
        with HTTMock(waypoint_detail_merged_mock):
            url = '/{0}/123456/fr/foo'.format(self._prefix)
            resp = self.app.get(url, status=301)

            redir = resp.headers.get('Location')
            self.assertEqual(
                redir, 'http://localhost/waypoints/733992/fr')

    def test_detail_etag(self):
        """ An ETag header is set, using the ETag of the API response.
        """
        with HTTMock(waypoint_detail_mock):
            url = '/{0}/117982/fr/foo'.format(self._prefix)
            resp = self.app.get(url, status=200)

            etag = resp.headers.get('ETag')
            self.assertIsNotNone(etag)
            self.assertEqual(
                etag,
                'W/"117982-fr-1-{0}"'.format(caching.CACHE_VERSION))

            # then request the page again with the etag
            headers = {
                'If-None-Match': etag
            }
            self.app.get(url, status=304, headers=headers)

            # if a wrong/outdated etag is provided, the full page is returned
            headers = {
                'If-None-Match': 'W/"123456-xy-0-c796286-123456"'
            }
            self.app.get(url, status=200, headers=headers)

    def test_detail_caching(self):
        url = '/{0}/117982/fr/foo'.format(self._prefix)
        cache_key = self.view._get_cache_key(117982, 'fr')

        with HTTMock(waypoint_detail_mock):
            cache_document_detail.delete(cache_key)
            cache_value = cache_document_detail.get(cache_key)
            self.assertEqual(cache_value, NO_VALUE)

            # check that the response is cached
            self.app.get(url, status=200)

            cache_value = cache_document_detail.get(cache_key)
            self.assertNotEqual(cache_value, NO_VALUE)

            # check that values are returned from the cache
            fake_cache_value = CachedPage('117982-fr-1', 'fake page')
            cache_document_detail.set(cache_key, fake_cache_value)

            response = self.app.get(url, status=200)
            self.assertEqual(response.text, 'fake page')

        # simulate that the version of the document in the api has changed
        with HTTMock(waypoint_detail_new_mock):
            response = self.app.get(url, status=200)
            self.assertNotEqual(response.text, 'fake page')

    def test_detail_caching_debug(self):
        """ Check that the cache is not used when using the debug flag.
        """
        url = '/{0}/117982/fr/foo?debug'.format(self._prefix)
        cache_key = self.view._get_cache_key(117982, 'fr')
        cache_document_detail.delete(cache_key)

        with HTTMock(waypoint_detail_mock):
            response = self.app.get(url, status=200)

            cache_value = cache_document_detail.get(cache_key)
            self.assertEqual(cache_value, NO_VALUE)
            self.assertIsNone(response.headers.get('ETag'))

    def test_detail_redis_down(self):
        """ Check that the request does not fail even if Redis errors.
        """
        url = '/{0}/117982/fr/foo'.format(self._prefix)

        document_cache_mock = patch(
            'c2corg_ui.views.document.cache_document_detail',
            **{'get.side_effect': Exception('Redis down'),
               'set.side_effect': Exception('Redis down')})

        with document_cache_mock, HTTMock(waypoint_detail_mock):
            self.app.get(url, status=200)

    def test_get_cache_down_known(self):
        """ Check that no request to the cache is made if a request to the
        cache failed in the last 30 seconds.
        """
        url = '/{0}/117982/fr/foo'.format(self._prefix)

        document_cache_mock = patch(
            'c2corg_ui.views.document.cache_document_detail',
            **{'get.side_effect': Exception('Redis down'),
               'set.side_effect': Exception('Redis down')})

        with document_cache_mock as mock, HTTMock(waypoint_detail_mock):
            caching_common.cache_status.request_failure()

            self.app.get(url, status=200)
            self.assertFalse(mock.get.called)
            self.assertFalse(mock.set.called)

    def test_archive(self):
        url = '/{0}/117982/fr/131565'.format(self._prefix)
        self._test_page(url, waypoint_archive_mock, '117982-fr-1-131565')

    def test_history(self):
        url = '/{0}/history/735553/fr'.format(self._prefix)
        self._test_page(url, waypoint_history_mock, '735553-fr-1')

    def test_diff(self):
        url = '/{0}/diff/117982/fr/131565/292856'.format(self._prefix)
        self._test_page(
            url,
            waypoint_diff_mock,
            '117982-fr-1-131565-117982-fr-1-292856')
コード例 #4
0
ファイル: test_waypoint.py プロジェクト: arnaud-morvan/v6_ui
 def setUp(self):  # noqa
     self.set_prefix("waypoints")
     BaseTestUi.setUp(self)
     self.view = Waypoint(request=self.request)
コード例 #5
0
ファイル: test_waypoint.py プロジェクト: c2corg/v6_ui
class TestWaypointUi(BaseTestUi):
    def setUp(self):  # noqa
        self.set_prefix("waypoints")
        BaseTestUi.setUp(self)
        self.view = Waypoint(request=self.request)

    def test_pages(self):
        self._test_pages()

    def test_index_cache_down(self):
        page_cache_mock = patch("c2corg_ui.views.cache_static_pages.get_or_create", side_effect=Exception("Redis down"))

        with page_cache_mock:
            self.app.get("/{}".format(self._prefix), status=200)

    def test_api_call(self):
        self._test_api_call()

    def test_get_documents(self):
        self._test_get_documents()

    def test_slug(self):
        with HTTMock(waypoint_detail_mock):
            url = "/{0}/117982".format(self._prefix)
            self.app.get(url, status=302)

            url = "/{0}/117982/fr".format(self._prefix)
            resp = self.app.get(url, status=301)

            redir = resp.headers.get("Location")
            self.assertEqual(redir, "http://localhost/waypoints/117982/fr/vallorbe")

    def test_merged(self):
        with HTTMock(waypoint_detail_merged_mock):
            url = "/{0}/123456/fr/foo".format(self._prefix)
            resp = self.app.get(url, status=301)

            redir = resp.headers.get("Location")
            self.assertEqual(redir, "http://localhost/waypoints/733992/fr")

    def test_detail_etag(self):
        """ An ETag header is set, using the ETag of the API response.
        """
        with HTTMock(waypoint_detail_mock):
            url = "/{0}/117982/fr/foo".format(self._prefix)
            resp = self.app.get(url, status=200)

            etag = resp.headers.get("ETag")
            self.assertIsNotNone(etag)
            self.assertEqual(etag, 'W/"117982-fr-1-{0}"'.format(caching.CACHE_VERSION))

            # then request the page again with the etag
            headers = {"If-None-Match": etag}
            self.app.get(url, status=304, headers=headers)

            # if a wrong/outdated etag is provided, the full page is returned
            headers = {"If-None-Match": 'W/"123456-xy-0-c796286-123456"'}
            self.app.get(url, status=200, headers=headers)

    def test_detail_caching(self):
        url = "/{0}/117982/fr/foo".format(self._prefix)
        cache_key = self.view._get_cache_key(117982, "fr")

        with HTTMock(waypoint_detail_mock):
            cache_document_detail.delete(cache_key)
            cache_value = cache_document_detail.get(cache_key)
            self.assertEqual(cache_value, NO_VALUE)

            # check that the response is cached
            self.app.get(url, status=200)

            cache_value = cache_document_detail.get(cache_key)
            self.assertNotEqual(cache_value, NO_VALUE)

            # check that values are returned from the cache
            fake_cache_value = CachedPage("117982-fr-1", "fake page")
            cache_document_detail.set(cache_key, fake_cache_value)

            response = self.app.get(url, status=200)
            self.assertEqual(response.text, "fake page")

        # simulate that the version of the document in the api has changed
        with HTTMock(waypoint_detail_new_mock):
            response = self.app.get(url, status=200)
            self.assertNotEqual(response.text, "fake page")

    def test_detail_caching_debug(self):
        """ Check that the cache is not used when using the debug flag.
        """
        url = "/{0}/117982/fr/foo?debug".format(self._prefix)
        cache_key = self.view._get_cache_key(117982, "fr")
        cache_document_detail.delete(cache_key)

        with HTTMock(waypoint_detail_mock):
            response = self.app.get(url, status=200)

            cache_value = cache_document_detail.get(cache_key)
            self.assertEqual(cache_value, NO_VALUE)
            self.assertIsNone(response.headers.get("ETag"))

    def test_detail_redis_down(self):
        """ Check that the request does not fail even if Redis errors.
        """
        url = "/{0}/117982/fr/foo".format(self._prefix)

        document_cache_mock = patch(
            "c2corg_ui.views.document.cache_document_detail",
            **{"get.side_effect": Exception("Redis down"), "set.side_effect": Exception("Redis down")}
        )

        with document_cache_mock, HTTMock(waypoint_detail_mock):
            self.app.get(url, status=200)

    def test_get_cache_down_known(self):
        """ Check that no request to the cache is made if a request to the
        cache failed in the last 30 seconds.
        """
        url = "/{0}/117982/fr/foo".format(self._prefix)

        document_cache_mock = patch(
            "c2corg_ui.views.document.cache_document_detail",
            **{"get.side_effect": Exception("Redis down"), "set.side_effect": Exception("Redis down")}
        )

        with document_cache_mock as mock, HTTMock(waypoint_detail_mock):
            caching.cache_status.request_failure()

            self.app.get(url, status=200)
            self.assertFalse(mock.get.called)
            self.assertFalse(mock.set.called)

    def test_archive(self):
        url = "/{0}/117982/fr/131565".format(self._prefix)
        self._test_page(url, waypoint_archive_mock, "117982-fr-1-131565")

    def test_history(self):
        url = "/{0}/history/735553/fr".format(self._prefix)
        self._test_page(url, waypoint_history_mock, "735553-fr-1")

    def test_diff(self):
        url = "/{0}/diff/117982/fr/131565/292856".format(self._prefix)
        self._test_page(url, waypoint_diff_mock, "117982-fr-1-131565-117982-fr-1-292856")