kumogata-template 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +54 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +75 -0
- data/README.md +204 -0
- data/Rakefile +23 -0
- data/bin/kumogata-template +9 -0
- data/kumogata-template.gemspec +26 -0
- data/lib/kumogata/template.rb +17 -0
- data/lib/kumogata/template/autoscaling.rb +77 -0
- data/lib/kumogata/template/cloudwatch.rb +28 -0
- data/lib/kumogata/template/codedeploy.rb +85 -0
- data/lib/kumogata/template/const.rb +175 -0
- data/lib/kumogata/template/datapipeline.rb +90 -0
- data/lib/kumogata/template/dynamodb.rb +111 -0
- data/lib/kumogata/template/ec2.rb +165 -0
- data/lib/kumogata/template/ecs.rb +119 -0
- data/lib/kumogata/template/elasticbeanstalk.rb +33 -0
- data/lib/kumogata/template/elb.rb +132 -0
- data/lib/kumogata/template/emr.rb +166 -0
- data/lib/kumogata/template/events.rb +25 -0
- data/lib/kumogata/template/ext/argument_parser.rb +8 -0
- data/lib/kumogata/template/ext/kumogata.rb +103 -0
- data/lib/kumogata/template/helper.rb +211 -0
- data/lib/kumogata/template/iam.rb +96 -0
- data/lib/kumogata/template/lambda.rb +34 -0
- data/lib/kumogata/template/s3.rb +223 -0
- data/lib/kumogata/template/sns.rb +25 -0
- data/lib/kumogata/template/version.rb +1 -0
- data/template/_template.rb +25 -0
- data/template/autoscaling-group.rb +47 -0
- data/template/autoscaling-launch-configuration.rb +54 -0
- data/template/autoscaling-lifecycle-hook.rb +27 -0
- data/template/autoscaling-scaling-policy.rb +33 -0
- data/template/autoscaling-scheduled-action.rb +37 -0
- data/template/cloudtrail.rb +39 -0
- data/template/cloudwatch-alarm.rb +45 -0
- data/template/codedeploy-application.rb +15 -0
- data/template/codedeploy-deployment-config.rb +23 -0
- data/template/codedeploy-deployment-group.rb +35 -0
- data/template/datapipeline-pipeline.rb +28 -0
- data/template/dynamodb-table.rb +33 -0
- data/template/ec2-eip-association.rb +23 -0
- data/template/ec2-eip.rb +17 -0
- data/template/ec2-instance.rb +65 -0
- data/template/ec2-internet-gateway.rb +15 -0
- data/template/ec2-nat-gateway.rb +17 -0
- data/template/ec2-network-acl-entry.rb +30 -0
- data/template/ec2-network-acl.rb +17 -0
- data/template/ec2-route-table.rb +17 -0
- data/template/ec2-route.rb +27 -0
- data/template/ec2-security-group.rb +24 -0
- data/template/ec2-subnet-network-acl-association.rb +17 -0
- data/template/ec2-subnet-route-table-association.rb +17 -0
- data/template/ec2-subnet.rb +23 -0
- data/template/ec2-volume-attachment.rb +19 -0
- data/template/ec2-volume.rb +31 -0
- data/template/ec2-vpc-endpoint.rb +23 -0
- data/template/ec2-vpc-gateway-attachment.rb +19 -0
- data/template/ec2-vpc.rb +24 -0
- data/template/ecs-cluster.rb +11 -0
- data/template/ecs-service.rb +24 -0
- data/template/ecs-task-definition.rb +18 -0
- data/template/elasticache-cache-cluster.rb +63 -0
- data/template/elasticache-parameter-group.rb +20 -0
- data/template/elasticache-replication-group.rb +58 -0
- data/template/elasticache-subnet-group.rb +17 -0
- data/template/elasticbeanstalk-application-version.rb +24 -0
- data/template/elasticbeanstalk-application.rb +17 -0
- data/template/elasticbeanstalk-configuration-template.rb +31 -0
- data/template/elasticbeanstalk-environment.rb +44 -0
- data/template/elb-loadbalancer.rb +46 -0
- data/template/emr-cluster.rb +39 -0
- data/template/emr-instance-group-config.rb +33 -0
- data/template/emr-step.rb +22 -0
- data/template/events-rule.rb +28 -0
- data/template/iam-access-key.rb +19 -0
- data/template/iam-group.rb +20 -0
- data/template/iam-instance-profile.rb +17 -0
- data/template/iam-managed-policy.rb +28 -0
- data/template/iam-policy.rb +26 -0
- data/template/iam-role.rb +21 -0
- data/template/iam-user-to-group-addition.rb +17 -0
- data/template/iam-user.rb +24 -0
- data/template/lambda-alias.rb +21 -0
- data/template/lambda-event-source-mapping.rb +24 -0
- data/template/lambda-function.rb +34 -0
- data/template/lambda-permission.rb +26 -0
- data/template/lambda-version.rb +19 -0
- data/template/mappings-ec2.rb +85 -0
- data/template/output-access-key.rb +6 -0
- data/template/output-arn.rb +6 -0
- data/template/output-autoscaling.rb +6 -0
- data/template/output-az.rb +6 -0
- data/template/output-dynamodb.rb +6 -0
- data/template/output-ec2.rb +8 -0
- data/template/output-elasticache.rb +30 -0
- data/template/output-elb.rb +12 -0
- data/template/output-emr.rb +6 -0
- data/template/output-rds.rb +10 -0
- data/template/output-redshift.rb +10 -0
- data/template/output-s3.rb +8 -0
- data/template/output-security-group.rb +5 -0
- data/template/output-sqs.rb +5 -0
- data/template/output-topic.rb +6 -0
- data/template/output-vpc.rb +10 -0
- data/template/output.rb +29 -0
- data/template/parameter-ec2.rb +22 -0
- data/template/parameter-elasticache.rb +9 -0
- data/template/parameter-rds.rb +9 -0
- data/template/parameter-redshift.rb +9 -0
- data/template/parameter.rb +20 -0
- data/template/rds-db-cluster-parameter-group.rb +22 -0
- data/template/rds-db-cluster.rb +47 -0
- data/template/rds-db-instance.rb +82 -0
- data/template/rds-db-parameter-group.rb +21 -0
- data/template/rds-db-subnet-group.rb +19 -0
- data/template/rds-event-subscription.rb +42 -0
- data/template/rds-option-group.rb +23 -0
- data/template/redshift-cluster-parameter-group.rb +19 -0
- data/template/redshift-cluster-subnet-group.rb +17 -0
- data/template/redshift-cluster.rb +60 -0
- data/template/s3-bucket-policy.rb +20 -0
- data/template/s3-bucket.rb +42 -0
- data/template/sns-topic.rb +20 -0
- data/template/sqs-queue.rb +27 -0
- data/test/_template.rb +26 -0
- data/test/abstract_unit.rb +101 -0
- data/test/autoscaling_test.rb +109 -0
- data/test/codedeploy_test.rb +117 -0
- data/test/datapipeline_test.rb +142 -0
- data/test/dynamodb_test.rb +184 -0
- data/test/ec2_test.rb +286 -0
- data/test/ecs_test.rb +135 -0
- data/test/elasticbeanstalk_test.rb +56 -0
- data/test/elb_test.rb +147 -0
- data/test/emr_test.rb +193 -0
- data/test/events_test.rb +22 -0
- data/test/helper_test.rb +547 -0
- data/test/iam_test.rb +93 -0
- data/test/lambda_test.rb +41 -0
- data/test/s3_test.rb +195 -0
- data/test/sns_test.rb +27 -0
- data/test/template/autoscaling-group_test.rb +177 -0
- data/test/template/autoscaling-launch-configuration_test.rb +117 -0
- data/test/template/autoscaling-lifecycle-hook_test.rb +33 -0
- data/test/template/autoscaling-scaling-policy_test.rb +26 -0
- data/test/template/autoscaling-scheduled-action_test.rb +26 -0
- data/test/template/cloudtrail_test.rb +55 -0
- data/test/template/cloudwatch-alarm_test.rb +38 -0
- data/test/template/codedeploy-application_test.rb +21 -0
- data/test/template/codedeploy-deployment-config_test.rb +26 -0
- data/test/template/codedeploy-deployment-group_test.rb +48 -0
- data/test/template/datapipeline-pipeline_test.rb +358 -0
- data/test/template/dynamodb-table_test.rb +94 -0
- data/test/template/ec2-eip-association_test.rb +22 -0
- data/test/template/ec2-eip_test.rb +21 -0
- data/test/template/ec2-instance_test.rb +95 -0
- data/test/template/ec2-internet-gateway_test.rb +48 -0
- data/test/template/ec2-nat-gateway_test.rb +22 -0
- data/test/template/ec2-network-acl-entry_test.rb +61 -0
- data/test/template/ec2-network-acl_test.rb +51 -0
- data/test/template/ec2-route-table_test.rb +49 -0
- data/test/template/ec2-route_test.rb +21 -0
- data/test/template/ec2-security-group_test.rb +50 -0
- data/test/template/ec2-subnet-netwokr-acl-association_test.rb +26 -0
- data/test/template/ec2-subnet-route-table-association_test.rb +22 -0
- data/test/template/ec2-subnet_test.rb +51 -0
- data/test/template/ec2-volume-attachment_test.rb +24 -0
- data/test/template/ec2-volume_test.rb +52 -0
- data/test/template/ec2-vpc-gateway-attachment_test.rb +23 -0
- data/test/template/ec2-vpc_test.rb +102 -0
- data/test/template/ecs-cluster_test.rb +18 -0
- data/test/template/ecs-service_test.rb +29 -0
- data/test/template/ecs-task-definition_test.rb +143 -0
- data/test/template/elasticache-cache-cluster_test.rb +77 -0
- data/test/template/elasticache-parameter-group_test.rb +25 -0
- data/test/template/elasticache-replication-group_test.rb +45 -0
- data/test/template/elasticache-subnet-group_test.rb +26 -0
- data/test/template/elasticbeanstalk-application-version_test.rb +27 -0
- data/test/template/elasticbeanstalk-application_test.rb +21 -0
- data/test/template/elasticbeanstalk-configuration-template_test.rb +23 -0
- data/test/template/elasticbeanstalk-environment_test.rb +56 -0
- data/test/template/elasticbeanstalk-template_test.rb +33 -0
- data/test/template/elb-loadbalancer_test.rb +94 -0
- data/test/template/emr-cluster_test.rb +147 -0
- data/test/template/emr-instance-group-config_test.rb +65 -0
- data/test/template/emr-step_test.rb +82 -0
- data/test/template/events-rule_test.rb +34 -0
- data/test/template/iam-access-key_test.rb +22 -0
- data/test/template/iam-group_test.rb +21 -0
- data/test/template/iam-instance-profile_test.rb +24 -0
- data/test/template/iam-managed-policy_test.rb +35 -0
- data/test/template/iam-policy_test.rb +52 -0
- data/test/template/iam-role_test.rb +37 -0
- data/test/template/iam-user-to-group-addition_test.rb +24 -0
- data/test/template/iam-user_test.rb +21 -0
- data/test/template/lambda-alias_test.rb +46 -0
- data/test/template/lambda-event-source-mapping_test.rb +36 -0
- data/test/template/lambda-function_test.rb +34 -0
- data/test/template/lambda-permission_test.rb +32 -0
- data/test/template/lambda-version_test.rb +27 -0
- data/test/template/mappings-ec2_test.rb +92 -0
- data/test/template/output-access-key_test.rb +30 -0
- data/test/template/output-arn_test.rb +30 -0
- data/test/template/output-autoscaling_test.rb +27 -0
- data/test/template/output-az_test.rb +31 -0
- data/test/template/output-dynamodb_test.rb +21 -0
- data/test/template/output-ec2_test.rb +82 -0
- data/test/template/output-elasticache_test.rb +107 -0
- data/test/template/output-elb_test.rb +48 -0
- data/test/template/output-emr_test.rb +30 -0
- data/test/template/output-rds_test.rb +39 -0
- data/test/template/output-redshift_test.rb +39 -0
- data/test/template/output-s3_test.rb +52 -0
- data/test/template/output-security-group_test.rb +21 -0
- data/test/template/output-sqs_test.rb +21 -0
- data/test/template/output-topic_test.rb +30 -0
- data/test/template/output-vpc_test.rb +48 -0
- data/test/template/output_test.rb +87 -0
- data/test/template/parameter-ec2_test.rb +44 -0
- data/test/template/parameter-elasticache_test.rb +30 -0
- data/test/template/parameter-rds_test.rb +30 -0
- data/test/template/parameter-redshift_test.rb +30 -0
- data/test/template/parameter_test.rb +40 -0
- data/test/template/rds-db-cluster-parameter-group_test.rb +53 -0
- data/test/template/rds-db-cluster_test.rb +84 -0
- data/test/template/rds-db-instance_test.rb +93 -0
- data/test/template/rds-db-parameter-group_test.rb +53 -0
- data/test/template/rds-db-subnet-group.rb +54 -0
- data/test/template/rds-event-subscription_test.rb +48 -0
- data/test/template/rds-option-group_test.rb +56 -0
- data/test/template/redshift-cluster-parameter-group_test.rb +28 -0
- data/test/template/redshift-cluster-subnet-group_test.rb +26 -0
- data/test/template/redshift-cluster_test.rb +47 -0
- data/test/template/s3-bucket-policy_test.rb +40 -0
- data/test/template/s3-bucket_test.rb +127 -0
- data/test/template/sns-topic_test.rb +42 -0
- data/test/template/sqs-queue_test.rb +25 -0
- metadata +468 -0
data/test/iam_test.rb
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
require 'kumogata/template/iam'
|
3
|
+
|
4
|
+
class IamTest < Minitest::Test
|
5
|
+
def test_iam_policies
|
6
|
+
template = <<-EOS
|
7
|
+
Policies _iam_policies "test", test: [ { document: [ { service: "s3" } ] } ]
|
8
|
+
EOS
|
9
|
+
act_template = run_client_as_json(template)
|
10
|
+
exp_template = <<-EOS
|
11
|
+
{
|
12
|
+
"Policies": [
|
13
|
+
{
|
14
|
+
"PolicyDocument": [
|
15
|
+
{
|
16
|
+
"Effect": "Allow",
|
17
|
+
"Action": [
|
18
|
+
"s3:*"
|
19
|
+
],
|
20
|
+
"Resource": [
|
21
|
+
"*"
|
22
|
+
]
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"PolicyName": "Policy0"
|
26
|
+
}
|
27
|
+
]
|
28
|
+
}
|
29
|
+
EOS
|
30
|
+
assert_equal exp_template.chomp, act_template
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_iam_policy_document
|
34
|
+
template = <<-EOS
|
35
|
+
PolicyDocument _iam_policy_document "test", test: [ { service: "s3" } ]
|
36
|
+
EOS
|
37
|
+
act_template = run_client_as_json(template)
|
38
|
+
exp_template = <<-EOS
|
39
|
+
{
|
40
|
+
"PolicyDocument": [
|
41
|
+
{
|
42
|
+
"Effect": "Allow",
|
43
|
+
"Action": [
|
44
|
+
"s3:*"
|
45
|
+
],
|
46
|
+
"Resource": [
|
47
|
+
"*"
|
48
|
+
]
|
49
|
+
}
|
50
|
+
]
|
51
|
+
}
|
52
|
+
EOS
|
53
|
+
assert_equal exp_template.chomp, act_template
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_iam_assume_role_policy_document
|
57
|
+
template = <<-EOS
|
58
|
+
Statement _iam_assume_role_policy_document("ec2")
|
59
|
+
EOS
|
60
|
+
act_template = run_client_as_json(template)
|
61
|
+
exp_template = <<-EOS
|
62
|
+
{
|
63
|
+
"Statement": [
|
64
|
+
{
|
65
|
+
"Effect": "Allow",
|
66
|
+
"Principal": {
|
67
|
+
"Service": [
|
68
|
+
"ec2.amazonaws.com"
|
69
|
+
]
|
70
|
+
},
|
71
|
+
"Action": [
|
72
|
+
"sts:AssumeRole"
|
73
|
+
]
|
74
|
+
}
|
75
|
+
]
|
76
|
+
}
|
77
|
+
EOS
|
78
|
+
assert_equal exp_template.chomp, act_template
|
79
|
+
end
|
80
|
+
|
81
|
+
def test_iam_arn
|
82
|
+
template = <<-EOS
|
83
|
+
arn _iam_arn("s3", "test")
|
84
|
+
EOS
|
85
|
+
act_template = run_client_as_json(template)
|
86
|
+
exp_template = <<-EOS
|
87
|
+
{
|
88
|
+
"arn": "arn:aws:s3:::test"
|
89
|
+
}
|
90
|
+
EOS
|
91
|
+
assert_equal exp_template.chomp, act_template
|
92
|
+
end
|
93
|
+
end
|
data/test/lambda_test.rb
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
require 'kumogata/template/lambda'
|
3
|
+
|
4
|
+
class LambdaTest < Minitest::Test
|
5
|
+
def test_lambda_function_code
|
6
|
+
template = <<-EOS
|
7
|
+
Test _lambda_function_code(code: { s3_bucket: "test", s3_key: "test" })
|
8
|
+
EOS
|
9
|
+
act_template = run_client_as_json(template)
|
10
|
+
exp_template = <<-EOS
|
11
|
+
{
|
12
|
+
"Test": {
|
13
|
+
"S3Bucket": "test",
|
14
|
+
"S3Key": "test"
|
15
|
+
}
|
16
|
+
}
|
17
|
+
EOS
|
18
|
+
assert_equal exp_template.chomp, act_template
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_lambda_vpc_config
|
22
|
+
template = <<-EOS
|
23
|
+
Test _lambda_vpc_config(vpc: { security_groups: [ "test" ], subnets: [ "test" ] })
|
24
|
+
EOS
|
25
|
+
act_template = run_client_as_json(template)
|
26
|
+
exp_template = <<-EOS
|
27
|
+
{
|
28
|
+
"Test": {
|
29
|
+
"SecurityGroupIds": [
|
30
|
+
"test"
|
31
|
+
],
|
32
|
+
"SubnetIds": [
|
33
|
+
"test"
|
34
|
+
]
|
35
|
+
}
|
36
|
+
}
|
37
|
+
EOS
|
38
|
+
assert_equal exp_template.chomp, act_template
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
data/test/s3_test.rb
ADDED
@@ -0,0 +1,195 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
require 'kumogata/template/s3'
|
3
|
+
|
4
|
+
class S3Test < Minitest::Test
|
5
|
+
def test_s3_cors
|
6
|
+
template = <<-EOS
|
7
|
+
Test _s3_cors(cors: [ { headers: "test", methods: "test", origins: "test", exposed_headers: "test", id: "test", max_age: "test" } ])
|
8
|
+
EOS
|
9
|
+
act_template = run_client_as_json(template)
|
10
|
+
exp_template = <<-EOS
|
11
|
+
{
|
12
|
+
"Test": {
|
13
|
+
"CorsRules": [
|
14
|
+
{
|
15
|
+
"AllowedHeaders": [
|
16
|
+
"test"
|
17
|
+
],
|
18
|
+
"AllowedMethods": [
|
19
|
+
"test"
|
20
|
+
],
|
21
|
+
"AllowedOrigins": [
|
22
|
+
"test"
|
23
|
+
],
|
24
|
+
"ExposedHeaders": [
|
25
|
+
"test"
|
26
|
+
],
|
27
|
+
"Id": "test",
|
28
|
+
"MaxAge": "test"
|
29
|
+
}
|
30
|
+
]
|
31
|
+
}
|
32
|
+
}
|
33
|
+
EOS
|
34
|
+
assert_equal exp_template.chomp, act_template
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_s3_lifecycle
|
38
|
+
template = <<-EOS
|
39
|
+
Test _s3_lifecycle(lifecycle: [ { expiration_date: "ExpirationDate", expiration_in_days: "test", id: "test", noncurrent_version_transitions: [ { storage: "test", transition: "test" } ], non_expiration_in_days: "test" } ])
|
40
|
+
EOS
|
41
|
+
act_template = run_client_as_json(template)
|
42
|
+
exp_template = <<-EOS
|
43
|
+
{
|
44
|
+
"Test": {
|
45
|
+
"Rules": [
|
46
|
+
{
|
47
|
+
"ExpirationDate": "ExpirationDate",
|
48
|
+
"ExpirationInDays": "test",
|
49
|
+
"Id": "test",
|
50
|
+
"NoncurrentVersionExpirationInDays": "test",
|
51
|
+
"NoncurrentVersionTransitions": [
|
52
|
+
{
|
53
|
+
"StorageClass": "test",
|
54
|
+
"TransitionInDays": "test"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"Status": "Enabled"
|
58
|
+
}
|
59
|
+
]
|
60
|
+
}
|
61
|
+
}
|
62
|
+
EOS
|
63
|
+
assert_equal exp_template.chomp, act_template
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_s3_logging
|
67
|
+
template = <<-EOS
|
68
|
+
Test _s3_logging({ logging: { destination: "test", prefix: "test" } })
|
69
|
+
EOS
|
70
|
+
act_template = run_client_as_json(template)
|
71
|
+
exp_template = <<-EOS
|
72
|
+
{
|
73
|
+
"Test": {
|
74
|
+
"DestinationBucketName": "test",
|
75
|
+
"LogFilePrefix": "test"
|
76
|
+
}
|
77
|
+
}
|
78
|
+
EOS
|
79
|
+
assert_equal exp_template.chomp, act_template
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_s3_notification
|
83
|
+
template = <<-EOS
|
84
|
+
Test _s3_notification(notification: { lambda: [ { event: "test", filter: "test", function: "test" }],
|
85
|
+
queue: [ { event: "test", filter: "test", queue: "test" }],
|
86
|
+
topic: [ { event: "test", filter: "test", topic: "test" }], })
|
87
|
+
EOS
|
88
|
+
act_template = run_client_as_json(template)
|
89
|
+
exp_template = <<-EOS
|
90
|
+
{
|
91
|
+
"Test": {
|
92
|
+
"LambdaConfigurations": [
|
93
|
+
{
|
94
|
+
"Event": "test",
|
95
|
+
"Filter": {
|
96
|
+
"S3Key": "test"
|
97
|
+
},
|
98
|
+
"Function": "test"
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"QueueConfigurations": [
|
102
|
+
{
|
103
|
+
"Event": "test",
|
104
|
+
"Filter": {
|
105
|
+
"S3Key": "test"
|
106
|
+
},
|
107
|
+
"Queue": "test"
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"TopicConfigurations": [
|
111
|
+
{
|
112
|
+
"Event": "test",
|
113
|
+
"Filter": {
|
114
|
+
"S3Key": "test"
|
115
|
+
},
|
116
|
+
"Topic": "test"
|
117
|
+
}
|
118
|
+
]
|
119
|
+
}
|
120
|
+
}
|
121
|
+
EOS
|
122
|
+
assert_equal exp_template.chomp, act_template
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_s3_replication
|
126
|
+
template = <<-EOS
|
127
|
+
Test _s3_replication(replication: { role: "test" , rules: [ { destination: { bucket: "test", storage: "test" }, id: "test", prefix: "test", status: "test" } ] })
|
128
|
+
EOS
|
129
|
+
act_template = run_client_as_json(template)
|
130
|
+
exp_template = <<-EOS
|
131
|
+
{
|
132
|
+
"Test": {
|
133
|
+
"Role": "test",
|
134
|
+
"Rules": [
|
135
|
+
{
|
136
|
+
"Destination": {
|
137
|
+
"Bucket": "test",
|
138
|
+
"StorageClass": "test"
|
139
|
+
},
|
140
|
+
"Id": "test",
|
141
|
+
"Prefix": "test",
|
142
|
+
"Status": "test"
|
143
|
+
}
|
144
|
+
]
|
145
|
+
}
|
146
|
+
}
|
147
|
+
EOS
|
148
|
+
assert_equal exp_template.chomp, act_template
|
149
|
+
end
|
150
|
+
|
151
|
+
def test_s3_versioning
|
152
|
+
template = <<-EOS
|
153
|
+
Test _s3_versioning(versioning: { status: "test" })
|
154
|
+
EOS
|
155
|
+
act_template = run_client_as_json(template)
|
156
|
+
exp_template = <<-EOS
|
157
|
+
{
|
158
|
+
"Test": {
|
159
|
+
"Status": "Enabled"
|
160
|
+
}
|
161
|
+
}
|
162
|
+
EOS
|
163
|
+
assert_equal exp_template.chomp, act_template
|
164
|
+
end
|
165
|
+
|
166
|
+
def test_s3_website
|
167
|
+
template = <<-EOS
|
168
|
+
Test _s3_website(website: { error: "test", index: "test", redirect: { hostname: "test" }, routing: [ { redirect: {}, routing: { http: "test", key_prefix: "test" } } ] })
|
169
|
+
EOS
|
170
|
+
act_template = run_client_as_json(template)
|
171
|
+
exp_template = <<-EOS
|
172
|
+
{
|
173
|
+
"Test": {
|
174
|
+
"ErrorDocument": "test",
|
175
|
+
"IndexDocument": "test",
|
176
|
+
"RedirectAllRequestsTo": {
|
177
|
+
"HostName": "test",
|
178
|
+
"Protocol": "http"
|
179
|
+
},
|
180
|
+
"RoutingRules": [
|
181
|
+
{
|
182
|
+
"RedirectRule": {
|
183
|
+
},
|
184
|
+
"RoutingRuleCondition": {
|
185
|
+
"HttpErrorCodeReturnedEquals": "test",
|
186
|
+
"KeyPrefixEquals": "test"
|
187
|
+
}
|
188
|
+
}
|
189
|
+
]
|
190
|
+
}
|
191
|
+
}
|
192
|
+
EOS
|
193
|
+
assert_equal exp_template.chomp, act_template
|
194
|
+
end
|
195
|
+
end
|
data/test/sns_test.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
require 'kumogata/template/sns'
|
3
|
+
|
4
|
+
class SnsTest < Minitest::Test
|
5
|
+
def test_sns_subscription
|
6
|
+
template = <<-EOS
|
7
|
+
Test _sns_subscription(subscription: [ { protocol: "lambda", endpoint: "test" } ])
|
8
|
+
EOS
|
9
|
+
act_template = run_client_as_json(template)
|
10
|
+
exp_template = <<-EOS
|
11
|
+
{
|
12
|
+
"Test": [
|
13
|
+
{
|
14
|
+
"Endpoint": {
|
15
|
+
"Fn::GetAtt": [
|
16
|
+
"Test",
|
17
|
+
"Arn"
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"Protocol": "lambda"
|
21
|
+
}
|
22
|
+
]
|
23
|
+
}
|
24
|
+
EOS
|
25
|
+
assert_equal exp_template.chomp, act_template
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,177 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
|
3
|
+
class AutoscalingGroupTest < Minitest::Test
|
4
|
+
def test_normal
|
5
|
+
template = <<-EOS
|
6
|
+
_autoscaling_group "test", ref_launch: "test", ref_vpc_zones: %w( test ), notifications: [ ref_topic_arn: "test" ]
|
7
|
+
EOS
|
8
|
+
act_template = run_client_as_json(template)
|
9
|
+
exp_template = <<-EOS
|
10
|
+
{
|
11
|
+
"TestAutoscalingGroup": {
|
12
|
+
"Type": "AWS::AutoScaling::AutoScalingGroup",
|
13
|
+
"Properties": {
|
14
|
+
"HealthCheckType": "EC2",
|
15
|
+
"LaunchConfigurationName": {
|
16
|
+
"Ref": "TestAutoscalingLaunchConfiguration"
|
17
|
+
},
|
18
|
+
"MaxSize": "1",
|
19
|
+
"MetricsCollection": [
|
20
|
+
{
|
21
|
+
"Granularity": "1Minute",
|
22
|
+
"Metrics": [
|
23
|
+
"GroupMinSize",
|
24
|
+
"GroupMaxSize",
|
25
|
+
"GroupDesiredCapacity",
|
26
|
+
"GroupInServiceInstances",
|
27
|
+
"GroupPendingInstances",
|
28
|
+
"GroupStandbyInstances",
|
29
|
+
"GroupTerminatingInstances",
|
30
|
+
"GroupTotalInstances"
|
31
|
+
]
|
32
|
+
}
|
33
|
+
],
|
34
|
+
"MinSize": "0",
|
35
|
+
"NotificationConfigurations": [
|
36
|
+
{
|
37
|
+
"NotificationTypes": [
|
38
|
+
"autoscaling:EC2_INSTANCE_LAUNCH",
|
39
|
+
"autoscaling:EC2_INSTANCE_LAUNCH_ERROR",
|
40
|
+
"autoscaling:EC2_INSTANCE_TERMINATE",
|
41
|
+
"autoscaling:EC2_INSTANCE_TERMINATE_ERROR",
|
42
|
+
"autoscaling:TEST_NOTIFICATION"
|
43
|
+
],
|
44
|
+
"TopicARN": {
|
45
|
+
"Ref": "Test"
|
46
|
+
}
|
47
|
+
}
|
48
|
+
],
|
49
|
+
"Tags": [
|
50
|
+
{
|
51
|
+
"Key": "Name",
|
52
|
+
"Value": {
|
53
|
+
"Fn::Join": [
|
54
|
+
"-",
|
55
|
+
[
|
56
|
+
{
|
57
|
+
"Ref": "Service"
|
58
|
+
},
|
59
|
+
"test"
|
60
|
+
]
|
61
|
+
]
|
62
|
+
},
|
63
|
+
"PropagateAtLaunch": "true"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"Key": "Service",
|
67
|
+
"Value": {
|
68
|
+
"Ref": "Service"
|
69
|
+
},
|
70
|
+
"PropagateAtLaunch": "true"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"Key": "Version",
|
74
|
+
"Value": {
|
75
|
+
"Ref": "Version"
|
76
|
+
},
|
77
|
+
"PropagateAtLaunch": "true"
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"VPCZoneIdentifier": [
|
81
|
+
{
|
82
|
+
"Ref": "TestSubnet"
|
83
|
+
}
|
84
|
+
]
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
EOS
|
89
|
+
assert_equal exp_template.chomp, act_template
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_aws
|
93
|
+
template = <<-EOS
|
94
|
+
_autoscaling_group "test", ref_launch: "test", ref_azs: %w( test ), notifications: [ topic: "test" ], max: 2, min: 2
|
95
|
+
EOS
|
96
|
+
act_template = run_client_as_json(template)
|
97
|
+
exp_template = <<-EOS
|
98
|
+
{
|
99
|
+
"TestAutoscalingGroup": {
|
100
|
+
"Type": "AWS::AutoScaling::AutoScalingGroup",
|
101
|
+
"Properties": {
|
102
|
+
"AvailabilityZones": [
|
103
|
+
{
|
104
|
+
"Ref": "TestZone"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"HealthCheckType": "EC2",
|
108
|
+
"LaunchConfigurationName": {
|
109
|
+
"Ref": "TestAutoscalingLaunchConfiguration"
|
110
|
+
},
|
111
|
+
"MaxSize": "2",
|
112
|
+
"MetricsCollection": [
|
113
|
+
{
|
114
|
+
"Granularity": "1Minute",
|
115
|
+
"Metrics": [
|
116
|
+
"GroupMinSize",
|
117
|
+
"GroupMaxSize",
|
118
|
+
"GroupDesiredCapacity",
|
119
|
+
"GroupInServiceInstances",
|
120
|
+
"GroupPendingInstances",
|
121
|
+
"GroupStandbyInstances",
|
122
|
+
"GroupTerminatingInstances",
|
123
|
+
"GroupTotalInstances"
|
124
|
+
]
|
125
|
+
}
|
126
|
+
],
|
127
|
+
"MinSize": "2",
|
128
|
+
"NotificationConfigurations": [
|
129
|
+
{
|
130
|
+
"NotificationTypes": [
|
131
|
+
"autoscaling:EC2_INSTANCE_LAUNCH",
|
132
|
+
"autoscaling:EC2_INSTANCE_LAUNCH_ERROR",
|
133
|
+
"autoscaling:EC2_INSTANCE_TERMINATE",
|
134
|
+
"autoscaling:EC2_INSTANCE_TERMINATE_ERROR",
|
135
|
+
"autoscaling:TEST_NOTIFICATION"
|
136
|
+
],
|
137
|
+
"TopicARN": "test"
|
138
|
+
}
|
139
|
+
],
|
140
|
+
"Tags": [
|
141
|
+
{
|
142
|
+
"Key": "Name",
|
143
|
+
"Value": {
|
144
|
+
"Fn::Join": [
|
145
|
+
"-",
|
146
|
+
[
|
147
|
+
{
|
148
|
+
"Ref": "Service"
|
149
|
+
},
|
150
|
+
"test"
|
151
|
+
]
|
152
|
+
]
|
153
|
+
},
|
154
|
+
"PropagateAtLaunch": "true"
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"Key": "Service",
|
158
|
+
"Value": {
|
159
|
+
"Ref": "Service"
|
160
|
+
},
|
161
|
+
"PropagateAtLaunch": "true"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"Key": "Version",
|
165
|
+
"Value": {
|
166
|
+
"Ref": "Version"
|
167
|
+
},
|
168
|
+
"PropagateAtLaunch": "true"
|
169
|
+
}
|
170
|
+
]
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
EOS
|
175
|
+
assert_equal exp_template.chomp, act_template
|
176
|
+
end
|
177
|
+
end
|