2021-10-18 19:44:29 +00:00
|
|
|
import sure # noqa # pylint: disable=unused-import
|
2021-01-19 16:11:39 +00:00
|
|
|
|
|
|
|
import moto.server as server
|
|
|
|
from moto import mock_medialive
|
|
|
|
|
|
|
|
"""
|
|
|
|
Test the different server responses
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
@mock_medialive
|
|
|
|
def test_medialive_list_channels():
|
|
|
|
backend = server.create_backend_app("medialive")
|
|
|
|
test_client = backend.test_client()
|
|
|
|
|
|
|
|
res = test_client.get("/prod/channels")
|
|
|
|
result = res.data.decode("utf-8")
|
|
|
|
result.should.contain('"channels": []')
|
|
|
|
|
|
|
|
|
|
|
|
@mock_medialive
|
|
|
|
def test_medialive_list_inputs():
|
|
|
|
backend = server.create_backend_app("medialive")
|
|
|
|
test_client = backend.test_client()
|
|
|
|
|
|
|
|
res = test_client.get("/prod/inputs")
|
|
|
|
|
|
|
|
result = res.data.decode("utf-8")
|
|
|
|
result.should.contain('"inputs": []')
|