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


Python gce.AppAssertionCredentials类代码示例

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


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

示例1: test_serialize_deserialize

 def test_serialize_deserialize(self, get_metadata):
     credentials = AppAssertionCredentials()
     credentials_from_json = Credentials.new_from_json(
         credentials.to_json())
     self.assertEqual(
         credentials.service_account_info,
         credentials_from_json.service_account_info)
开发者ID:elibixby,项目名称:oauth2client,代码行数:7,代码来源:test_gce.py

示例2: test_create_scoped

 def test_create_scoped(self, warn_mock):
     credentials = AppAssertionCredentials()
     new_credentials = credentials.create_scoped(['dummy_scope'])
     self.assertNotEqual(credentials, new_credentials)
     self.assertTrue(isinstance(new_credentials, AppAssertionCredentials))
     self.assertEqual('dummy_scope', new_credentials.scope)
     warn_mock.assert_called_once_with(_SCOPES_WARNING)
开发者ID:rzs840707,项目名称:oauth2client,代码行数:7,代码来源:test_gce.py

示例3: test_to_json_and_from_json

 def test_to_json_and_from_json(self):
     credentials = AppAssertionCredentials(
         scope=['http://example.com/a', 'http://example.com/b'])
     json = credentials.to_json()
     credentials_from_json = Credentials.new_from_json(json)
     self.assertEqual(credentials.access_token,
                      credentials_from_json.access_token)
开发者ID:zcourts,项目名称:oauth2client,代码行数:7,代码来源:test_gce.py

示例4: test_retrieve_scopes_bad_email

    def test_retrieve_scopes_bad_email(self, metadata):
        http_request = mock.MagicMock()
        http_mock = mock.MagicMock(request=http_request)
        credentials = AppAssertionCredentials(email='[email protected]')
        with self.assertRaises(httplib2.HttpLib2Error):
            credentials.retrieve_scopes(http_mock)

        metadata.assert_called_once_with(http_request, service_account='[email protected]')
开发者ID:Natarajan-R,项目名称:oauth2client,代码行数:8,代码来源:test_gce.py

示例5: test_refresh_token

 def test_refresh_token(self, metadata):
     credentials = AppAssertionCredentials()
     self.assertIsNone(credentials.access_token)
     credentials.get_access_token()
     self.assertEqual(credentials.access_token, 'A')
     self.assertTrue(credentials.access_token_expired)
     credentials.get_access_token()
     self.assertEqual(credentials.access_token, 'B')
     self.assertFalse(credentials.access_token_expired)
开发者ID:miedzinski,项目名称:oauth2client,代码行数:9,代码来源:test_gce.py

示例6: test_refresh_failure_400

    def test_refresh_failure_400(self):
        http = mock.MagicMock()
        content = '{}'
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=http_client.BAD_REQUEST), content))

        credentials = AppAssertionCredentials()
        with self.assertRaises(HttpAccessTokenRefreshError):
            credentials.refresh(http)
开发者ID:elibixby,项目名称:oauth2client,代码行数:9,代码来源:test_gce.py

示例7: test_refresh_token_failed_fetch

    def test_refresh_token_failed_fetch(self):
        http_request = request_mock(
            http_client.NOT_FOUND,
            'application/json',
            json.dumps({'access_token': 'a', 'expires_in': 100})
        )
        credentials = AppAssertionCredentials()

        with self.assertRaises(HttpAccessTokenRefreshError):
            credentials._refresh(http_request=http_request)
开发者ID:miedzinski,项目名称:oauth2client,代码行数:10,代码来源:test_gce.py

示例8: test_refresh_token_failed_fetch

 def test_refresh_token_failed_fetch(self):
     http_request = request_mock(
         http_client.NOT_FOUND,
         'application/json',
         json.dumps({'access_token': 'a', 'expires_in': 100})
     )
     credentials = AppAssertionCredentials()
     credentials.invalid = False
     credentials.service_account_email = '[email protected]'
     with self.assertRaises(HttpAccessTokenRefreshError):
         credentials._refresh(http_request)
开发者ID:Natarajan-R,项目名称:oauth2client,代码行数:11,代码来源:test_gce.py

示例9: test_retrieve_scopes

 def test_retrieve_scopes(self, metadata):
     http_request = mock.MagicMock()
     http_mock = mock.MagicMock(request=http_request)
     credentials = AppAssertionCredentials()
     self.assertTrue(credentials.invalid)
     self.assertIsNone(credentials.scopes)
     scopes = credentials.retrieve_scopes(http_mock)
     self.assertEqual(scopes, SERVICE_ACCOUNT_INFO['scopes'])
     self.assertFalse(credentials.invalid)
     credentials.retrieve_scopes(http_mock)
     # Assert scopes weren't refetched
     metadata.assert_called_once_with(http_request, service_account='default')
开发者ID:Natarajan-R,项目名称:oauth2client,代码行数:12,代码来源:test_gce.py

示例10: test_scopes_failure

    def test_scopes_failure(self):
        # Set-up the mock.
        http = mock.MagicMock()
        content = '{}'
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=http_client.NOT_FOUND), content))
        # Test the failure.
        credentials = AppAssertionCredentials()

        with self.assertRaises(MetadataServerHttpError):
            credentials._retrieve_scopes(http.request)

        self.assertEqual(credentials._service_account_info, {})
开发者ID:elibixby,项目名称:oauth2client,代码行数:13,代码来源:test_gce.py

示例11: test_get_access_token

    def test_get_access_token(self):
        http = mock.MagicMock()
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=200),
                          '{"accessToken": "this-is-a-token"}'))

        credentials = AppAssertionCredentials(['dummy_scope'])
        token = credentials.get_access_token(http=http)
        self.assertEqual('this-is-a-token', token.access_token)
        self.assertEqual(None, token.expires_in)

        http.request.assert_called_once_with(
            'http://metadata.google.internal/0.1/meta-data/service-accounts/'
            'default/acquire?scope=dummy_scope')
开发者ID:cbildfell,项目名称:oauth2client,代码行数:14,代码来源:test_gce.py

示例12: test_refresh_failure_400

    def test_refresh_failure_400(self):
        http = mock.MagicMock()
        content = '{}'
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=http_client.BAD_REQUEST), content))

        credentials = AppAssertionCredentials()
        exception_caught = None
        try:
            credentials.refresh(http)
        except AccessTokenRefreshError as exc:
            exception_caught = exc

        self.assertNotEqual(exception_caught, None)
        self.assertEqual(str(exception_caught), content)
开发者ID:rzs840707,项目名称:oauth2client,代码行数:15,代码来源:test_gce.py

示例13: test_get_access_token

    def test_get_access_token(self):
        http = mock.MagicMock()
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=http_client.OK),
                          '{"accessToken": "this-is-a-token"}'))

        credentials = AppAssertionCredentials(['dummy_scope'])
        token = credentials.get_access_token(http=http)
        self.assertEqual('this-is-a-token', token.access_token)
        self.assertEqual(None, token.expires_in)

        http.request.assert_called_once_with(
            'http://metadata.google.internal/computeMetadata/v1/instance/'
            'service-accounts/default/acquire?scope=dummy_scope',
            headers={'Metadata-Flavor': 'Google'})
开发者ID:zcourts,项目名称:oauth2client,代码行数:15,代码来源:test_gce.py

示例14: test_refresh_failure_400

    def test_refresh_failure_400(self):
        http = mock.MagicMock()
        content = '{}'
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=400), content))

        credentials = AppAssertionCredentials(
            scope=['http://example.com/a', 'http://example.com/b'])

        exception_caught = None
        try:
            credentials.refresh(http)
        except AccessTokenRefreshError as exc:
            exception_caught = exc

        self.assertNotEqual(exception_caught, None)
        self.assertEqual(str(exception_caught), content)
开发者ID:cbildfell,项目名称:oauth2client,代码行数:17,代码来源:test_gce.py

示例15: test_refresh_failure_404

    def test_refresh_failure_404(self):
        http = mock.MagicMock()
        content = '{}'
        http.request = mock.MagicMock(
            return_value=(mock.Mock(status=http_client.NOT_FOUND), content))

        credentials = AppAssertionCredentials()
        exception_caught = None
        try:
            credentials.refresh(http)
        except AccessTokenRefreshError as exc:
            exception_caught = exc

        self.assertNotEqual(exception_caught, None)
        expanded_content = content + (' This can occur if a VM was created'
                                      ' with no service account or scopes.')
        self.assertEqual(str(exception_caught), expanded_content)
开发者ID:rzs840707,项目名称:oauth2client,代码行数:17,代码来源:test_gce.py


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