本文整理汇总了Python中mimic.core.MimicCore.session_for_token方法的典型用法代码示例。如果您正苦于以下问题:Python MimicCore.session_for_token方法的具体用法?Python MimicCore.session_for_token怎么用?Python MimicCore.session_for_token使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mimic.core.MimicCore
的用法示例。
在下文中一共展示了MimicCore.session_for_token方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_by_token_after_username
# 需要导入模块: from mimic.core import MimicCore [as 别名]
# 或者: from mimic.core.MimicCore import session_for_token [as 别名]
def test_by_token_after_username(self):
"""
MimicCore.session_for_token should retrieve the same session that was
created by MimicCore.session_for_username_password.
"""
core = MimicCore(Clock(), [])
a = core.session_for_username_password("username", "testpswd")
b = core.session_for_token(a.token)
self.assertIdentical(a, b)
c = core.session_for_api_key("apiuser", "testkey")
d = core.session_for_token(c.token)
self.assertIdentical(c, d)
示例2: test_auth_accepts_tenant_name
# 需要导入模块: from mimic.core import MimicCore [as 别名]
# 或者: from mimic.core.MimicCore import session_for_token [as 别名]
def test_auth_accepts_tenant_name(self):
"""
If "tenantName" is passed, the tenant specified is used instead of a
generated tenant ID.
"""
core = MimicCore(Clock(), [])
root = MimicRoot(core).app.resource()
(response, json_body) = self.successResultOf(json_request(
self, root, "POST", "/identity/v2.0/tokens",
{
"auth": {
"passwordCredentials": {
"username": "demoauthor",
"password": "theUsersPassword"
},
"tenantName": "turtlepower"
}
}
))
self.assertEqual(200, response.code)
self.assertEqual("turtlepower",
json_body['access']['token']['tenant']['id'])
token = json_body['access']['token']['id']
session = core.session_for_token(token)
self.assertEqual(token, session.token)
self.assertEqual("turtlepower", session.tenant_id)
示例3: test_response_has_auth_token
# 需要导入模块: from mimic.core import MimicCore [as 别名]
# 或者: from mimic.core.MimicCore import session_for_token [as 别名]
def test_response_has_auth_token(self):
"""
The JSON response has a access.token.id key corresponding to its
MimicCore session, and therefore access.token.tenant.id should match
that session's tenant_id.
"""
core = MimicCore(Clock(), [])
root = MimicRoot(core).app.resource()
(response, json_body) = self.successResultOf(json_request(
self, root, "POST", "/identity/v2.0/tokens",
{
"auth": {
"passwordCredentials": {
"username": "demoauthor",
"password": "theUsersPassword"
}
}
}
))
self.assertEqual(200, response.code)
token = json_body['access']['token']['id']
tenant_id = json_body['access']['token']['tenant']['id']
session = core.session_for_token(token)
self.assertEqual(token, session.token)
self.assertEqual(tenant_id, session.tenant_id)
示例4: test_by_username_after_token
# 需要导入模块: from mimic.core import MimicCore [as 别名]
# 或者: from mimic.core.MimicCore import session_for_token [as 别名]
def test_by_username_after_token(self):
"""
MimicCore.session_for_username_password should retrieve the same
session that was created by MimicCore.session_for_token.
"""
core = MimicCore(Clock(), [])
a = core.session_for_token("testtoken")
b = core.session_for_username_password(a.username, "testpswd")
c = core.session_for_api_key(a.username, "testapikey")
self.assertIdentical(a, b)
self.assertIdentical(a, c)
示例5: test_session_created_for_token
# 需要导入模块: from mimic.core import MimicCore [as 别名]
# 或者: from mimic.core.MimicCore import session_for_token [as 别名]
def test_session_created_for_token(self):
"""
A session is created for the token provided
"""
core = MimicCore(Clock(), [])
root = MimicRoot(core).app.resource()
token = '1234567890'
request(
self, root, "GET",
"/identity/v2.0/tokens/{0}/endpoints".format(token)
)
session = core.session_for_token(token)
self.assertEqual(token, session.token)
示例6: test_impersonation
# 需要导入模块: from mimic.core import MimicCore [as 别名]
# 或者: from mimic.core.MimicCore import session_for_token [as 别名]
def test_impersonation(self):
"""
MimicCore.session_for_impersonation will return a session that can be
retrieved by token_id but not username.
"""
clock = Clock()
core = MimicCore(clock, [])
A_LITTLE = 1234
clock.advance(A_LITTLE)
A_LOT = 65432
a = core.session_for_impersonation("pretender", A_LOT)
a_prime = core.session_for_impersonation("pretender", A_LOT)
self.assertIdentical(a, a_prime)
b = core.session_for_token(a.token)
self.assertEqual(
a.expires, datetime.utcfromtimestamp(A_LITTLE + A_LOT))
self.assertIdentical(a, b)
c = core.session_for_username_password("pretender", "not a password")
self.assertNotIdentical(a, c)
self.assertEqual(a.username, c.username)
self.assertEqual(a.tenant_id, c.tenant_id)