2015-08-03 20:48:15 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
import moto.server as server
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
"""
|
2015-08-03 20:48:15 +00:00
|
|
|
Test the different server responses
|
2019-10-31 15:44:26 +00:00
|
|
|
"""
|
2015-08-03 20:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_iam_server_get():
|
|
|
|
backend = server.create_backend_app("iam")
|
|
|
|
test_client = backend.test_client()
|
|
|
|
|
2017-02-24 02:37:43 +00:00
|
|
|
group_data = test_client.action_data(
|
2019-10-31 15:44:26 +00:00
|
|
|
"CreateGroup", GroupName="test group", Path="/"
|
|
|
|
)
|
2015-08-03 20:48:15 +00:00
|
|
|
group_id = re.search("<GroupId>(.*)</GroupId>", group_data).groups()[0]
|
|
|
|
|
|
|
|
groups_data = test_client.action_data("ListGroups")
|
|
|
|
groups_ids = re.findall("<GroupId>(.*)</GroupId>", groups_data)
|
|
|
|
|
2017-02-24 02:37:43 +00:00
|
|
|
assert group_id in groups_ids
|