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


Python AppAssertionCredentials.get_access_token方法代码示例

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


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

示例1: test_refresh_token

# 需要导入模块: from oauth2client.contrib.gce import AppAssertionCredentials [as 别名]
# 或者: from oauth2client.contrib.gce.AppAssertionCredentials import get_access_token [as 别名]
 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,代码行数:11,代码来源:test_gce.py

示例2: test_refresh_token

# 需要导入模块: from oauth2client.contrib.gce import AppAssertionCredentials [as 别名]
# 或者: from oauth2client.contrib.gce.AppAssertionCredentials import get_access_token [as 别名]
 def test_refresh_token(self, get_info, get_token):
     http_request = mock.MagicMock()
     http_mock = mock.MagicMock(request=http_request)
     credentials = AppAssertionCredentials()
     credentials.invalid = False
     credentials.service_account_email = '[email protected]'
     self.assertIsNone(credentials.access_token)
     credentials.get_access_token(http=http_mock)
     self.assertEqual(credentials.access_token, 'A')
     self.assertTrue(credentials.access_token_expired)
     get_token.assert_called_with(http_request, service_account='[email protected]')
     credentials.get_access_token(http=http_mock)
     self.assertEqual(credentials.access_token, 'B')
     self.assertFalse(credentials.access_token_expired)
     get_token.assert_called_with(http_request, service_account='[email protected]')
     get_info.assert_not_called()
开发者ID:Natarajan-R,项目名称:oauth2client,代码行数:18,代码来源:test_gce.py

示例3: test_refresh_token

# 需要导入模块: from oauth2client.contrib.gce import AppAssertionCredentials [as 别名]
# 或者: from oauth2client.contrib.gce.AppAssertionCredentials import get_access_token [as 别名]
    def test_refresh_token(self, get_metadata):
        credentials = AppAssertionCredentials()
        self.assertIsNone(credentials.access_token)

        with mock.patch('oauth2client.contrib.gce._NOW',
                        side_effect=[datetime.datetime.min,
                                     datetime.datetime.max]):
            credentials.get_access_token()
            self.assertTrue(credentials.access_token_expired)

        force_refresh_time = datetime.datetime.max - datetime.timedelta(
            seconds=get_metadata.return_value['expires_in'])

        with mock.patch('oauth2client.contrib.gce._NOW',
                        side_effect=[force_refresh_time,
                                     datetime.datetime.min,
                                     datetime.datetime.min]):
            credentials.get_access_token()
            self.assertFalse(credentials.access_token_expired)
开发者ID:elibixby,项目名称:oauth2client,代码行数:21,代码来源:test_gce.py

示例4: test_get_access_token

# 需要导入模块: from oauth2client.contrib.gce import AppAssertionCredentials [as 别名]
# 或者: from oauth2client.contrib.gce.AppAssertionCredentials import get_access_token [as 别名]
    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,代码行数:16,代码来源:test_gce.py

示例5: test_get_access_token

# 需要导入模块: from oauth2client.contrib.gce import AppAssertionCredentials [as 别名]
# 或者: from oauth2client.contrib.gce.AppAssertionCredentials import get_access_token [as 别名]
    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,代码行数:17,代码来源:test_gce.py


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