2021-10-18 19:44:29 +00:00
|
|
|
import sure # noqa # pylint: disable=unused-import
|
2016-09-22 03:59:19 +00:00
|
|
|
|
2021-08-04 16:24:26 +00:00
|
|
|
from collections import OrderedDict
|
2021-07-16 07:01:14 +00:00
|
|
|
|
2019-05-25 17:34:47 +00:00
|
|
|
from botocore.awsrequest import AWSPreparedRequest
|
|
|
|
|
|
|
|
from moto.core.responses import AWSServiceSpec, BaseResponse
|
2016-09-22 03:59:19 +00:00
|
|
|
from moto.core.responses import flatten_json_request_body
|
|
|
|
|
|
|
|
|
|
|
|
def test_flatten_json_request_body():
|
2019-10-31 15:44:26 +00:00
|
|
|
spec = AWSServiceSpec("data/emr/2009-03-31/service-2.json").input_spec("RunJobFlow")
|
2016-09-22 03:59:19 +00:00
|
|
|
|
|
|
|
body = {
|
2019-10-31 15:44:26 +00:00
|
|
|
"Name": "cluster",
|
|
|
|
"Instances": {
|
|
|
|
"Ec2KeyName": "ec2key",
|
|
|
|
"InstanceGroups": [
|
|
|
|
{"InstanceRole": "MASTER", "InstanceType": "m1.small"},
|
|
|
|
{"InstanceRole": "CORE", "InstanceType": "m1.medium"},
|
2016-09-22 03:59:19 +00:00
|
|
|
],
|
2019-10-31 15:44:26 +00:00
|
|
|
"Placement": {"AvailabilityZone": "us-east-1"},
|
2016-09-22 03:59:19 +00:00
|
|
|
},
|
2019-10-31 15:44:26 +00:00
|
|
|
"Steps": [
|
|
|
|
{
|
|
|
|
"HadoopJarStep": {
|
|
|
|
"Properties": [
|
|
|
|
{"Key": "k1", "Value": "v1"},
|
|
|
|
{"Key": "k2", "Value": "v2"},
|
|
|
|
],
|
|
|
|
"Args": ["arg1", "arg2"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Configurations": [
|
|
|
|
{
|
|
|
|
"Classification": "class",
|
|
|
|
"Properties": {"propkey1": "propkey1", "propkey2": "propkey2"},
|
|
|
|
},
|
|
|
|
{"Classification": "anotherclass", "Properties": {"propkey3": "propkey3"}},
|
2016-09-22 03:59:19 +00:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
flat = flatten_json_request_body("", body, spec)
|
|
|
|
flat["Name"].should.equal(body["Name"])
|
|
|
|
flat["Instances.Ec2KeyName"].should.equal(body["Instances"]["Ec2KeyName"])
|
2016-09-22 03:59:19 +00:00
|
|
|
for idx in range(2):
|
2019-10-31 15:44:26 +00:00
|
|
|
flat[
|
|
|
|
"Instances.InstanceGroups.member." + str(idx + 1) + ".InstanceRole"
|
|
|
|
].should.equal(body["Instances"]["InstanceGroups"][idx]["InstanceRole"])
|
|
|
|
flat[
|
|
|
|
"Instances.InstanceGroups.member." + str(idx + 1) + ".InstanceType"
|
|
|
|
].should.equal(body["Instances"]["InstanceGroups"][idx]["InstanceType"])
|
|
|
|
flat["Instances.Placement.AvailabilityZone"].should.equal(
|
|
|
|
body["Instances"]["Placement"]["AvailabilityZone"]
|
|
|
|
)
|
2016-09-22 03:59:19 +00:00
|
|
|
|
|
|
|
for idx in range(1):
|
2019-10-31 15:44:26 +00:00
|
|
|
prefix = "Steps.member." + str(idx + 1) + ".HadoopJarStep"
|
|
|
|
step = body["Steps"][idx]["HadoopJarStep"]
|
2016-09-22 03:59:19 +00:00
|
|
|
i = 0
|
2019-10-31 15:44:26 +00:00
|
|
|
while prefix + ".Properties.member." + str(i + 1) + ".Key" in flat:
|
|
|
|
flat[prefix + ".Properties.member." + str(i + 1) + ".Key"].should.equal(
|
|
|
|
step["Properties"][i]["Key"]
|
|
|
|
)
|
|
|
|
flat[prefix + ".Properties.member." + str(i + 1) + ".Value"].should.equal(
|
|
|
|
step["Properties"][i]["Value"]
|
|
|
|
)
|
2016-09-22 03:59:19 +00:00
|
|
|
i += 1
|
|
|
|
i = 0
|
2019-10-31 15:44:26 +00:00
|
|
|
while prefix + ".Args.member." + str(i + 1) in flat:
|
|
|
|
flat[prefix + ".Args.member." + str(i + 1)].should.equal(step["Args"][i])
|
2016-09-22 03:59:19 +00:00
|
|
|
i += 1
|
|
|
|
|
|
|
|
for idx in range(2):
|
2019-10-31 15:44:26 +00:00
|
|
|
flat["Configurations.member." + str(idx + 1) + ".Classification"].should.equal(
|
|
|
|
body["Configurations"][idx]["Classification"]
|
|
|
|
)
|
2016-09-22 03:59:19 +00:00
|
|
|
|
|
|
|
props = {}
|
|
|
|
i = 1
|
2019-10-31 15:44:26 +00:00
|
|
|
keyfmt = "Configurations.member.{0}.Properties.entry.{1}"
|
2016-09-22 03:59:19 +00:00
|
|
|
key = keyfmt.format(idx + 1, i)
|
2019-10-31 15:44:26 +00:00
|
|
|
while key + ".key" in flat:
|
|
|
|
props[flat[key + ".key"]] = flat[key + ".value"]
|
2016-09-22 03:59:19 +00:00
|
|
|
i += 1
|
|
|
|
key = keyfmt.format(idx + 1, i)
|
2019-10-31 15:44:26 +00:00
|
|
|
props.should.equal(body["Configurations"][idx]["Properties"])
|
2019-05-25 17:34:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_parse_qs_unicode_decode_error():
|
|
|
|
body = b'{"key": "%D0"}, "C": "#0 = :0"}'
|
2019-10-31 15:44:26 +00:00
|
|
|
request = AWSPreparedRequest("GET", "http://request", {"foo": "bar"}, body, False)
|
2019-05-25 17:34:47 +00:00
|
|
|
BaseResponse().setup_class(request, request.url, request.headers)
|
2021-07-16 07:01:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_params():
|
|
|
|
subject = BaseResponse()
|
|
|
|
subject.querystring = OrderedDict(
|
|
|
|
[
|
|
|
|
("Action", ["CreateRule"]),
|
|
|
|
("Version", ["2015-12-01"]),
|
|
|
|
(
|
|
|
|
"ListenerArn",
|
|
|
|
[
|
|
|
|
"arn:aws:elasticloadbalancing:us-east-1:1:listener/my-lb/50dc6c495c0c9188/80139731473870416"
|
|
|
|
],
|
|
|
|
),
|
|
|
|
("Priority", ["100"]),
|
|
|
|
("Conditions.member.1.Field", ["http-header"]),
|
|
|
|
("Conditions.member.1.HttpHeaderConfig.HttpHeaderName", ["User-Agent"]),
|
|
|
|
("Conditions.member.1.HttpHeaderConfig.Values.member.2", ["curl"]),
|
|
|
|
("Conditions.member.1.HttpHeaderConfig.Values.member.1", ["Mozilla"]),
|
|
|
|
("Actions.member.1.FixedResponseConfig.StatusCode", ["200"]),
|
|
|
|
("Actions.member.1.FixedResponseConfig.ContentType", ["text/plain"]),
|
|
|
|
("Actions.member.1.Type", ["fixed-response"]),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
result = subject._get_params()
|
|
|
|
|
|
|
|
result.should.equal(
|
|
|
|
{
|
|
|
|
"Action": "CreateRule",
|
|
|
|
"Version": "2015-12-01",
|
|
|
|
"ListenerArn": "arn:aws:elasticloadbalancing:us-east-1:1:listener/my-lb/50dc6c495c0c9188/80139731473870416",
|
|
|
|
"Priority": "100",
|
|
|
|
"Conditions": [
|
|
|
|
{
|
|
|
|
"Field": "http-header",
|
|
|
|
"HttpHeaderConfig": {
|
|
|
|
"HttpHeaderName": "User-Agent",
|
|
|
|
"Values": ["Mozilla", "curl"],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Actions": [
|
|
|
|
{
|
|
|
|
"Type": "fixed-response",
|
|
|
|
"FixedResponseConfig": {
|
|
|
|
"StatusCode": "200",
|
|
|
|
"ContentType": "text/plain",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|
2021-07-30 05:19:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_dict_list_params():
|
|
|
|
subject = BaseResponse()
|
|
|
|
subject.querystring = OrderedDict(
|
|
|
|
[
|
|
|
|
("Action", ["CreateDBCluster"]),
|
|
|
|
("Version", ["2014-10-31"]),
|
|
|
|
("VpcSecurityGroupIds.VpcSecurityGroupId.1", ["sg-123"]),
|
|
|
|
("VpcSecurityGroupIds.VpcSecurityGroupId.2", ["sg-456"]),
|
|
|
|
("VpcSecurityGroupIds.VpcSecurityGroupId.3", ["sg-789"]),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
# TODO: extend test and logic such that we can call subject._get_params() directly here
|
|
|
|
result = subject._get_multi_param_dict("VpcSecurityGroupIds")
|
|
|
|
|
|
|
|
result.should.equal({"VpcSecurityGroupId": ["sg-123", "sg-456", "sg-789"]})
|