moto/tests/test_cloudfront/test_server.py

16 lines
425 B
Python

import xmltodict
from moto import mock_cloudfront
import moto.server as server
@mock_cloudfront
def test_cloudfront_list():
backend = server.create_backend_app("cloudfront")
test_client = backend.test_client()
res = test_client.get("/2020-05-31/distribution")
data = xmltodict.parse(res.data, dict_constructor=dict)
assert "DistributionList" in data
assert "Items" not in data["DistributionList"]