d9177f382e
* write boilerplate code * generate boilerplate code with scaffold script * create mediapackage channel * remove duplicate mediapackage reference * remove Channel key from mediapackage response * describe_channel endpoint added * create_origin_endpoint-added * keys changed to camel case to fix issue * minor changes to clean up * minor clean up again * implement & test delete_channel * delete origin endpoint created; WIP-tests failing * fix delete_origin_endpoint issue * refactor function call * delete origin endpoint completed; test_server tests added * implement and test describe_origin_endpoint * update origin endpoint added * remove print statements * implement test_list_origin_endpoint_succeeds * create test name changed * create test name changed * changes after flake8 and black run * url assertion added to decribe origin endpoint test * region dependent url enabled * initial commit; WIP * create container added, still WIP * create_container working * test_create_channel_succeeds * test_describe_container_succeeds * get_lifecycle_policy added; error tests added * changes to pass linting * added exception for container but no policy * linting * put_container_policy added * put_metric_policy added * list_containers added * resolved linting * test_describe_container_raises_error_if_container_does_not_exist * added __init__ file * __init__ added to mediapackage as well * Mediastore (#20) * initial commit; WIP * create container added, still WIP * create_container working * test_create_channel_succeeds * test_describe_container_succeeds * get_lifecycle_policy added; error tests added * changes to pass linting * added exception for container but no policy * linting * put_container_policy added * put_metric_policy added * list_containers added * resolved linting * test_describe_container_raises_error_if_container_does_not_exist * added __init__ file * __init__ added to mediapackage as well Co-authored-by: FranckNdame <franck.mpouli@yahoo.com> * test_server fixed; resolved rebasing mix ups on tests * [FIX] Ensures MediaConnect create_flow sets a valid sourceArn * code clean up Co-authored-by: Anya <anya.champaneria@capablue.com> Co-authored-by: AnyaChamp <71766808+AnyaChamp@users.noreply.github.com>
156 lines
5.7 KiB
Python
156 lines
5.7 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import boto3
|
|
import sure # noqa
|
|
from moto import mock_mediaconnect
|
|
|
|
|
|
region = "eu-west-1"
|
|
|
|
|
|
def _create_flow_config(name, **kwargs):
|
|
availability_zone = kwargs.get("availability_zone", "AZ1")
|
|
entitlements = kwargs.get(
|
|
"entitlements",
|
|
[
|
|
{
|
|
"DataTransferSubscriberFeePercent": 12,
|
|
"Description": "An entitlement",
|
|
"Encryption": {"Algorithm": "aes256", "RoleArn": "some:role"},
|
|
"EntitlementStatus": "ENABLED",
|
|
"Name": "Entitlement A",
|
|
"Subscribers": [],
|
|
}
|
|
],
|
|
)
|
|
outputs = kwargs.get("outputs", [{"Name": "Output 1", "Protocol": "zixi-push"}])
|
|
source = kwargs.get(
|
|
"source",
|
|
{
|
|
"Decryption": {"Algorithm": "aes256", "RoleArn": "some:role"},
|
|
"Description": "A source",
|
|
"Name": "Source A",
|
|
},
|
|
)
|
|
source_failover_config = kwargs.get("source_failover_config", {})
|
|
sources = kwargs.get("sources", [])
|
|
vpc_interfaces = kwargs.get("vpc_interfaces", [])
|
|
flow_config = dict(
|
|
AvailabilityZone=availability_zone,
|
|
Entitlements=entitlements,
|
|
Name=name,
|
|
Outputs=outputs,
|
|
Source=source,
|
|
SourceFailoverConfig=source_failover_config,
|
|
Sources=sources,
|
|
VpcInterfaces=vpc_interfaces,
|
|
)
|
|
return flow_config
|
|
|
|
|
|
@mock_mediaconnect
|
|
def test_create_flow_succeeds():
|
|
client = boto3.client("mediaconnect", region_name=region)
|
|
channel_config = _create_flow_config("test Flow 1")
|
|
|
|
response = client.create_flow(**channel_config)
|
|
|
|
response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
response["Flow"]["FlowArn"][:26].should.equal("arn:aws:mediaconnect:flow:")
|
|
response["Flow"]["Name"].should.equal("test Flow 1")
|
|
response["Flow"]["Status"].should.equal("STANDBY")
|
|
response["Flow"]["Sources"][0][
|
|
"SourceArn"
|
|
] == "arn:aws:mediaconnect:source:Source A"
|
|
|
|
|
|
@mock_mediaconnect
|
|
def test_list_flows_succeeds():
|
|
client = boto3.client("mediaconnect", region_name=region)
|
|
flow_1_config = _create_flow_config("test Flow 1")
|
|
flow_2_config = _create_flow_config("test Flow 2")
|
|
|
|
client.create_flow(**flow_1_config)
|
|
client.create_flow(**flow_2_config)
|
|
|
|
response = client.list_flows()
|
|
len(response["Flows"]).should.equal(2)
|
|
|
|
response["Flows"][0]["Name"].should.equal("test Flow 1")
|
|
response["Flows"][0]["AvailabilityZone"].should.equal("AZ1")
|
|
response["Flows"][0]["SourceType"].should.equal("OWNED")
|
|
response["Flows"][0]["Status"].should.equal("STANDBY")
|
|
|
|
response["Flows"][1]["Name"].should.equal("test Flow 2")
|
|
response["Flows"][1]["AvailabilityZone"].should.equal("AZ1")
|
|
response["Flows"][1]["SourceType"].should.equal("OWNED")
|
|
response["Flows"][1]["Status"].should.equal("STANDBY")
|
|
|
|
|
|
@mock_mediaconnect
|
|
def test_describe_flow_succeeds():
|
|
client = boto3.client("mediaconnect", region_name=region)
|
|
channel_config = _create_flow_config("test Flow 1")
|
|
|
|
create_response = client.create_flow(**channel_config)
|
|
create_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
flow_arn = create_response["Flow"]["FlowArn"]
|
|
describe_response = client.describe_flow(FlowArn=flow_arn)
|
|
describe_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
describe_response["Flow"]["Name"].should.equal("test Flow 1")
|
|
|
|
|
|
@mock_mediaconnect
|
|
def test_delete_flow_succeeds():
|
|
client = boto3.client("mediaconnect", region_name=region)
|
|
channel_config = _create_flow_config("test Flow 1")
|
|
|
|
create_response = client.create_flow(**channel_config)
|
|
create_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
flow_arn = create_response["Flow"]["FlowArn"]
|
|
delete_response = client.delete_flow(FlowArn=flow_arn)
|
|
delete_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
delete_response["FlowArn"].should.equal(flow_arn)
|
|
delete_response["Status"].should.equal("STANDBY")
|
|
|
|
|
|
@mock_mediaconnect
|
|
def test_start_stop_flow_succeeds():
|
|
client = boto3.client("mediaconnect", region_name=region)
|
|
channel_config = _create_flow_config("test Flow 1")
|
|
|
|
create_response = client.create_flow(**channel_config)
|
|
create_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
create_response["Flow"]["Status"].should.equal("STANDBY")
|
|
flow_arn = create_response["Flow"]["FlowArn"]
|
|
|
|
start_response = client.start_flow(FlowArn=flow_arn)
|
|
start_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
start_response["FlowArn"].should.equal(flow_arn)
|
|
start_response["Status"].should.equal("STARTING")
|
|
|
|
describe_response = client.describe_flow(FlowArn=flow_arn)
|
|
describe_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
describe_response["Flow"]["Status"].should.equal("ACTIVE")
|
|
|
|
stop_response = client.stop_flow(FlowArn=flow_arn)
|
|
stop_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
stop_response["FlowArn"].should.equal(flow_arn)
|
|
stop_response["Status"].should.equal("STOPPING")
|
|
|
|
describe_response = client.describe_flow(FlowArn=flow_arn)
|
|
describe_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
describe_response["Flow"]["Status"].should.equal("STANDBY")
|
|
|
|
|
|
@mock_mediaconnect
|
|
def test_tag_resource_succeeds():
|
|
client = boto3.client("mediaconnect", region_name=region)
|
|
|
|
tag_response = client.tag_resource(ResourceArn="some-arn", Tags={"Tag1": "Value1"})
|
|
tag_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
|
|
list_response = client.list_tags_for_resource(ResourceArn="some-arn")
|
|
list_response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
list_response["Tags"].should.equal({"Tag1": "Value1"})
|