moto/tests/test_iam/test_server.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
542 B
Python
Raw Normal View History

import re
import moto.server as server
2019-10-31 15:44:26 +00:00
"""
Test the different server responses
2019-10-31 15:44:26 +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(
"CreateGroup", GroupName="test group", Path="/"
)
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