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


Python views.status函数代码示例

本文整理汇总了Python中watchman.views.status函数的典型用法代码示例。如果您正苦于以下问题:Python status函数的具体用法?Python status怎么用?Python status使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: test_login_not_required_with_authorization_header_dashes_in_token

 def test_login_not_required_with_authorization_header_dashes_in_token(self):
     # Have to manually reload settings here because override_settings
     # happens after self.setUp(), but before self.tearDown()
     reload_settings()
     request = RequestFactory().get('/', HTTP_AUTHORIZATION='WATCHMAN-TOKEN Token="123-456-ABCD"')
     response = views.status(request)
     self.assertEqual(response.status_code, 200)
开发者ID:ulope,项目名称:django-watchman,代码行数:7,代码来源:test_views.py

示例2: test_login_fails_with_invalid_authorization_header

 def test_login_fails_with_invalid_authorization_header(self):
     # Have to manually reload settings here because override_settings
     # happens after self.setUp(), but before self.tearDown()
     reload_settings()
     request = RequestFactory().get('/', HTTP_AUTHORIZATION='WATCHMAN-TOKEN Token="12345"')
     response = views.status(request)
     self.assertEqual(response.status_code, 403)
开发者ID:ulope,项目名称:django-watchman,代码行数:7,代码来源:test_views.py

示例3: test_response_version_header

 def test_response_version_header(self):
     # Have to manually reload settings here because override_settings
     # happens after self.setUp()
     reload_settings()
     request = RequestFactory().get('/')
     response = views.status(request)
     self.assertTrue(response.has_header('X-Watchman-Version'))
开发者ID:mwarkentin,项目名称:django-watchman,代码行数:7,代码来源:test_views.py

示例4: test_response_when_login_required

    def test_response_when_login_required(self):
        # Have to manually reload settings here because override_settings
        # happens after self.setUp()
        reload_settings()
        request = RequestFactory().get('/')
        request.user = AuthenticatedUser()

        response = views.status(request)
        self.assertEqual(response.status_code, 200)
开发者ID:ulope,项目名称:django-watchman,代码行数:9,代码来源:test_views.py

示例5: test_version_header_not_included_when_token_auth_fails

    def test_version_header_not_included_when_token_auth_fails(self):
        # Have to manually reload settings here because override_settings
        # happens after self.setUp(), but before self.tearDown()
        reload_settings()
        request = RequestFactory().get('/')

        response = views.status(request)
        self.assertEqual(response.status_code, 403)
        self.assertFalse(response.has_header('X-Watchman-Version'))
开发者ID:mwarkentin,项目名称:django-watchman,代码行数:9,代码来源:test_views.py

示例6: test_response_is_404_for_checked_and_skipped_check

 def test_response_is_404_for_checked_and_skipped_check(self):
     # This is a bit of a weird one, basically if you explicitly include and
     # skip the same check, you should get back a 404 as they cancel each
     # other out
     request = RequestFactory().get('/', data={
         'check': 'watchman.checks.email',
         'skip': 'watchman.checks.email',
     })
     response = views.status(request)
     self.assertEqual(response.status_code, 404)
开发者ID:ulope,项目名称:django-watchman,代码行数:10,代码来源:test_views.py

示例7: test_login_not_required

    def test_login_not_required(self):
        # Have to manually reload settings here because override_settings
        # happens after self.setUp(), but before self.tearDown()
        reload_settings()
        request = RequestFactory().get('/', data={
            'watchman-token': 'ABCDE',
        })

        response = views.status(request)

        self.assertEqual(response.status_code, 200)
开发者ID:JBKahn,项目名称:django-watchman,代码行数:11,代码来源:test_views.py

示例8: test_response_contains_expected_checks

    def test_response_contains_expected_checks(self):
        expected_checks = ['caches', 'databases', 'storage', ]
        request = RequestFactory().get('/')
        response = views.status(request)

        if PYTHON_VERSION == 2:
            content = json.loads(response.content)
            self.assertItemsEqual(expected_checks, content.keys())
        else:
            content = json.loads(response.content.decode('utf-8'))
            self.assertCountEqual(expected_checks, content.keys())
开发者ID:ulope,项目名称:django-watchman,代码行数:11,代码来源:test_views.py

示例9: test_login_fails_with_invalid_get_param

    def test_login_fails_with_invalid_get_param(self):
        # Have to manually reload settings here because override_settings
        # happens after self.setUp(), but before self.tearDown()
        reload_settings()
        request = RequestFactory().get('/', data={
            'watchman-token': '12345',
        })

        response = views.status(request)

        self.assertEqual(response.status_code, 403)
开发者ID:ulope,项目名称:django-watchman,代码行数:11,代码来源:test_views.py

示例10: test_response_404_when_none_specified

    def test_response_404_when_none_specified(self):
        request = RequestFactory().get('/', data={
            'check': '',
        })
        response = views.status(request)
        self.assertEqual(response.status_code, 404)

        if PYTHON_VERSION == 2:
            content = json.loads(response.content)
            self.assertItemsEqual({'message': 'No checks found', 'error': 404}, content)
        else:
            content = json.loads(response.content.decode('utf-8'))
            self.assertCountEqual({'message': 'No checks found', 'error': 404}, content)
开发者ID:ulope,项目名称:django-watchman,代码行数:13,代码来源:test_views.py

示例11: test_response_skipped_checks

    def test_response_skipped_checks(self):
        expected_checks = ['caches', 'storage', 'elastics', ]
        request = RequestFactory().get('/', data={
            'skip': 'watchman.checks.databases',
        })
        response = views.status(request)

        if PYTHON_VERSION == 2:
            content = json.loads(response.content)
            self.assertItemsEqual(expected_checks, content.keys())
        else:
            content = json.loads(response.content.decode('utf-8'))
            self.assertCountEqual(expected_checks, content.keys())
开发者ID:gerlachry,项目名称:django-watchman,代码行数:13,代码来源:test_views.py

示例12: test_response_only_single_check

    def test_response_only_single_check(self, patched_check_databases):
        patched_check_databases.return_value = []
        request = RequestFactory().get('/', data={
            'check': 'watchman.checks.databases',
        })
        response = views.status(request)
        self.assertEqual(response.status_code, 200)

        if PYTHON_VERSION == 2:
            content = json.loads(response.content)
            self.assertItemsEqual({'databases': []}, content)
        else:
            content = json.loads(response.content.decode('utf-8'))
            self.assertCountEqual({'databases': []}, content)
开发者ID:ulope,项目名称:django-watchman,代码行数:14,代码来源:test_views.py

示例13: test_default_error_code

 def test_default_error_code(self, patched_check_databases):
     reload_settings()
     # Fake a DB error, ensure we get our error code
     patched_check_databases.return_value = [{
         "foo": {
             "ok": False,
             "error": "Fake DB Error",
             "stacktrace": "Fake DB Stack Trace",
         },
     }]
     request = RequestFactory().get('/', data={
         'check': 'watchman.checks.databases',
     })
     response = views.status(request)
     self.assertEqual(response.status_code, 500)
开发者ID:ulope,项目名称:django-watchman,代码行数:15,代码来源:test_views.py

示例14: test_response_content_type_json

 def test_response_content_type_json(self):
     request = RequestFactory().get('/')
     response = views.status(request)
     self.assertEqual(response['Content-Type'], 'application/json')
开发者ID:ulope,项目名称:django-watchman,代码行数:4,代码来源:test_views.py

示例15: test_response_version_header

 def test_response_version_header(self):
     request = RequestFactory().get('/')
     response = views.status(request)
     self.assertTrue(response.has_header('X-Watchman-Version'))
开发者ID:ulope,项目名称:django-watchman,代码行数:4,代码来源:test_views.py


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