2018-04-03 20:38:24 +00:00
|
|
|
import json
|
2021-11-05 13:17:30 +00:00
|
|
|
|
2018-04-03 20:38:24 +00:00
|
|
|
import moto.server as server
|
2024-01-07 12:03:33 +00:00
|
|
|
from moto import mock_aws
|
2018-04-03 20:38:24 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
"""
|
2018-04-03 20:38:24 +00:00
|
|
|
Test the different server responses
|
2019-10-31 15:44:26 +00:00
|
|
|
"""
|
2018-04-03 20:38:24 +00:00
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2018-04-03 20:38:24 +00:00
|
|
|
def test_create_identity_pool():
|
|
|
|
backend = server.create_backend_app("cognito-identity")
|
|
|
|
test_client = backend.test_client()
|
|
|
|
|
|
|
|
res = test_client.post(
|
|
|
|
"/",
|
|
|
|
data={"IdentityPoolName": "test", "AllowUnauthenticatedIdentities": True},
|
|
|
|
headers={
|
|
|
|
"X-Amz-Target": "com.amazonaws.cognito.identity.model.AWSCognitoIdentityService.CreateIdentityPool"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_data = json.loads(res.data.decode("utf-8"))
|
|
|
|
assert json_data["IdentityPoolName"] == "test"
|
2018-04-03 23:27:30 +00:00
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2018-04-03 23:27:30 +00:00
|
|
|
def test_get_id():
|
|
|
|
backend = server.create_backend_app("cognito-identity")
|
|
|
|
test_client = backend.test_client()
|
|
|
|
|
2021-11-05 13:17:30 +00:00
|
|
|
res = test_client.post(
|
|
|
|
"/",
|
|
|
|
data={"IdentityPoolName": "test", "AllowUnauthenticatedIdentities": True},
|
|
|
|
headers={
|
|
|
|
"X-Amz-Target": "com.amazonaws.cognito.identity.model.AWSCognitoIdentityService.CreateIdentityPool"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_data = json.loads(res.data.decode("utf-8"))
|
2018-04-03 23:27:30 +00:00
|
|
|
res = test_client.post(
|
|
|
|
"/",
|
|
|
|
data=json.dumps(
|
2019-10-31 15:44:26 +00:00
|
|
|
{
|
2018-04-03 23:27:30 +00:00
|
|
|
"AccountId": "someaccount",
|
2021-11-05 13:17:30 +00:00
|
|
|
"IdentityPoolId": json_data["IdentityPoolId"],
|
2018-04-03 23:27:30 +00:00
|
|
|
"Logins": {"someurl": "12345"},
|
2019-10-31 15:44:26 +00:00
|
|
|
}
|
2018-04-03 23:27:30 +00:00
|
|
|
),
|
|
|
|
headers={
|
|
|
|
"X-Amz-Target": "com.amazonaws.cognito.identity.model.AWSCognitoIdentityService.GetId"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_data = json.loads(res.data.decode("utf-8"))
|
|
|
|
assert ":" in json_data["IdentityId"]
|
2021-11-05 13:17:30 +00:00
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2021-11-05 13:17:30 +00:00
|
|
|
def test_list_identities():
|
|
|
|
backend = server.create_backend_app("cognito-identity")
|
|
|
|
test_client = backend.test_client()
|
|
|
|
|
|
|
|
res = test_client.post(
|
|
|
|
"/",
|
|
|
|
data={"IdentityPoolName": "test", "AllowUnauthenticatedIdentities": True},
|
|
|
|
headers={
|
|
|
|
"X-Amz-Target": "com.amazonaws.cognito.identity.model.AWSCognitoIdentityService.CreateIdentityPool"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_data = json.loads(res.data.decode("utf-8"))
|
|
|
|
identity_pool_id = json_data["IdentityPoolId"]
|
|
|
|
res = test_client.post(
|
|
|
|
"/",
|
|
|
|
data=json.dumps(
|
|
|
|
{
|
|
|
|
"AccountId": "someaccount",
|
|
|
|
"IdentityPoolId": identity_pool_id,
|
|
|
|
"Logins": {"someurl": "12345"},
|
|
|
|
}
|
|
|
|
),
|
|
|
|
headers={
|
|
|
|
"X-Amz-Target": "com.amazonaws.cognito.identity.model.AWSCognitoIdentityService.GetId"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_data = json.loads(res.data.decode("utf-8"))
|
|
|
|
identity_id = json_data["IdentityId"]
|
|
|
|
|
|
|
|
res = test_client.post(
|
|
|
|
"/",
|
|
|
|
data=json.dumps({"IdentityPoolId": identity_pool_id}),
|
|
|
|
headers={
|
|
|
|
"X-Amz-Target": "com.amazonaws.cognito.identity.model.AWSCognitoIdentityService.ListIdentities"
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_data = json.loads(res.data.decode("utf-8"))
|
|
|
|
assert "IdentityPoolId" in json_data and "Identities" in json_data
|
|
|
|
assert identity_id in [x["IdentityId"] for x in json_data["Identities"]]
|