kumogata-template 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (241) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +54 -0
  3. data/.travis.yml +8 -0
  4. data/Gemfile +4 -0
  5. data/Gemfile.lock +75 -0
  6. data/README.md +204 -0
  7. data/Rakefile +23 -0
  8. data/bin/kumogata-template +9 -0
  9. data/kumogata-template.gemspec +26 -0
  10. data/lib/kumogata/template.rb +17 -0
  11. data/lib/kumogata/template/autoscaling.rb +77 -0
  12. data/lib/kumogata/template/cloudwatch.rb +28 -0
  13. data/lib/kumogata/template/codedeploy.rb +85 -0
  14. data/lib/kumogata/template/const.rb +175 -0
  15. data/lib/kumogata/template/datapipeline.rb +90 -0
  16. data/lib/kumogata/template/dynamodb.rb +111 -0
  17. data/lib/kumogata/template/ec2.rb +165 -0
  18. data/lib/kumogata/template/ecs.rb +119 -0
  19. data/lib/kumogata/template/elasticbeanstalk.rb +33 -0
  20. data/lib/kumogata/template/elb.rb +132 -0
  21. data/lib/kumogata/template/emr.rb +166 -0
  22. data/lib/kumogata/template/events.rb +25 -0
  23. data/lib/kumogata/template/ext/argument_parser.rb +8 -0
  24. data/lib/kumogata/template/ext/kumogata.rb +103 -0
  25. data/lib/kumogata/template/helper.rb +211 -0
  26. data/lib/kumogata/template/iam.rb +96 -0
  27. data/lib/kumogata/template/lambda.rb +34 -0
  28. data/lib/kumogata/template/s3.rb +223 -0
  29. data/lib/kumogata/template/sns.rb +25 -0
  30. data/lib/kumogata/template/version.rb +1 -0
  31. data/template/_template.rb +25 -0
  32. data/template/autoscaling-group.rb +47 -0
  33. data/template/autoscaling-launch-configuration.rb +54 -0
  34. data/template/autoscaling-lifecycle-hook.rb +27 -0
  35. data/template/autoscaling-scaling-policy.rb +33 -0
  36. data/template/autoscaling-scheduled-action.rb +37 -0
  37. data/template/cloudtrail.rb +39 -0
  38. data/template/cloudwatch-alarm.rb +45 -0
  39. data/template/codedeploy-application.rb +15 -0
  40. data/template/codedeploy-deployment-config.rb +23 -0
  41. data/template/codedeploy-deployment-group.rb +35 -0
  42. data/template/datapipeline-pipeline.rb +28 -0
  43. data/template/dynamodb-table.rb +33 -0
  44. data/template/ec2-eip-association.rb +23 -0
  45. data/template/ec2-eip.rb +17 -0
  46. data/template/ec2-instance.rb +65 -0
  47. data/template/ec2-internet-gateway.rb +15 -0
  48. data/template/ec2-nat-gateway.rb +17 -0
  49. data/template/ec2-network-acl-entry.rb +30 -0
  50. data/template/ec2-network-acl.rb +17 -0
  51. data/template/ec2-route-table.rb +17 -0
  52. data/template/ec2-route.rb +27 -0
  53. data/template/ec2-security-group.rb +24 -0
  54. data/template/ec2-subnet-network-acl-association.rb +17 -0
  55. data/template/ec2-subnet-route-table-association.rb +17 -0
  56. data/template/ec2-subnet.rb +23 -0
  57. data/template/ec2-volume-attachment.rb +19 -0
  58. data/template/ec2-volume.rb +31 -0
  59. data/template/ec2-vpc-endpoint.rb +23 -0
  60. data/template/ec2-vpc-gateway-attachment.rb +19 -0
  61. data/template/ec2-vpc.rb +24 -0
  62. data/template/ecs-cluster.rb +11 -0
  63. data/template/ecs-service.rb +24 -0
  64. data/template/ecs-task-definition.rb +18 -0
  65. data/template/elasticache-cache-cluster.rb +63 -0
  66. data/template/elasticache-parameter-group.rb +20 -0
  67. data/template/elasticache-replication-group.rb +58 -0
  68. data/template/elasticache-subnet-group.rb +17 -0
  69. data/template/elasticbeanstalk-application-version.rb +24 -0
  70. data/template/elasticbeanstalk-application.rb +17 -0
  71. data/template/elasticbeanstalk-configuration-template.rb +31 -0
  72. data/template/elasticbeanstalk-environment.rb +44 -0
  73. data/template/elb-loadbalancer.rb +46 -0
  74. data/template/emr-cluster.rb +39 -0
  75. data/template/emr-instance-group-config.rb +33 -0
  76. data/template/emr-step.rb +22 -0
  77. data/template/events-rule.rb +28 -0
  78. data/template/iam-access-key.rb +19 -0
  79. data/template/iam-group.rb +20 -0
  80. data/template/iam-instance-profile.rb +17 -0
  81. data/template/iam-managed-policy.rb +28 -0
  82. data/template/iam-policy.rb +26 -0
  83. data/template/iam-role.rb +21 -0
  84. data/template/iam-user-to-group-addition.rb +17 -0
  85. data/template/iam-user.rb +24 -0
  86. data/template/lambda-alias.rb +21 -0
  87. data/template/lambda-event-source-mapping.rb +24 -0
  88. data/template/lambda-function.rb +34 -0
  89. data/template/lambda-permission.rb +26 -0
  90. data/template/lambda-version.rb +19 -0
  91. data/template/mappings-ec2.rb +85 -0
  92. data/template/output-access-key.rb +6 -0
  93. data/template/output-arn.rb +6 -0
  94. data/template/output-autoscaling.rb +6 -0
  95. data/template/output-az.rb +6 -0
  96. data/template/output-dynamodb.rb +6 -0
  97. data/template/output-ec2.rb +8 -0
  98. data/template/output-elasticache.rb +30 -0
  99. data/template/output-elb.rb +12 -0
  100. data/template/output-emr.rb +6 -0
  101. data/template/output-rds.rb +10 -0
  102. data/template/output-redshift.rb +10 -0
  103. data/template/output-s3.rb +8 -0
  104. data/template/output-security-group.rb +5 -0
  105. data/template/output-sqs.rb +5 -0
  106. data/template/output-topic.rb +6 -0
  107. data/template/output-vpc.rb +10 -0
  108. data/template/output.rb +29 -0
  109. data/template/parameter-ec2.rb +22 -0
  110. data/template/parameter-elasticache.rb +9 -0
  111. data/template/parameter-rds.rb +9 -0
  112. data/template/parameter-redshift.rb +9 -0
  113. data/template/parameter.rb +20 -0
  114. data/template/rds-db-cluster-parameter-group.rb +22 -0
  115. data/template/rds-db-cluster.rb +47 -0
  116. data/template/rds-db-instance.rb +82 -0
  117. data/template/rds-db-parameter-group.rb +21 -0
  118. data/template/rds-db-subnet-group.rb +19 -0
  119. data/template/rds-event-subscription.rb +42 -0
  120. data/template/rds-option-group.rb +23 -0
  121. data/template/redshift-cluster-parameter-group.rb +19 -0
  122. data/template/redshift-cluster-subnet-group.rb +17 -0
  123. data/template/redshift-cluster.rb +60 -0
  124. data/template/s3-bucket-policy.rb +20 -0
  125. data/template/s3-bucket.rb +42 -0
  126. data/template/sns-topic.rb +20 -0
  127. data/template/sqs-queue.rb +27 -0
  128. data/test/_template.rb +26 -0
  129. data/test/abstract_unit.rb +101 -0
  130. data/test/autoscaling_test.rb +109 -0
  131. data/test/codedeploy_test.rb +117 -0
  132. data/test/datapipeline_test.rb +142 -0
  133. data/test/dynamodb_test.rb +184 -0
  134. data/test/ec2_test.rb +286 -0
  135. data/test/ecs_test.rb +135 -0
  136. data/test/elasticbeanstalk_test.rb +56 -0
  137. data/test/elb_test.rb +147 -0
  138. data/test/emr_test.rb +193 -0
  139. data/test/events_test.rb +22 -0
  140. data/test/helper_test.rb +547 -0
  141. data/test/iam_test.rb +93 -0
  142. data/test/lambda_test.rb +41 -0
  143. data/test/s3_test.rb +195 -0
  144. data/test/sns_test.rb +27 -0
  145. data/test/template/autoscaling-group_test.rb +177 -0
  146. data/test/template/autoscaling-launch-configuration_test.rb +117 -0
  147. data/test/template/autoscaling-lifecycle-hook_test.rb +33 -0
  148. data/test/template/autoscaling-scaling-policy_test.rb +26 -0
  149. data/test/template/autoscaling-scheduled-action_test.rb +26 -0
  150. data/test/template/cloudtrail_test.rb +55 -0
  151. data/test/template/cloudwatch-alarm_test.rb +38 -0
  152. data/test/template/codedeploy-application_test.rb +21 -0
  153. data/test/template/codedeploy-deployment-config_test.rb +26 -0
  154. data/test/template/codedeploy-deployment-group_test.rb +48 -0
  155. data/test/template/datapipeline-pipeline_test.rb +358 -0
  156. data/test/template/dynamodb-table_test.rb +94 -0
  157. data/test/template/ec2-eip-association_test.rb +22 -0
  158. data/test/template/ec2-eip_test.rb +21 -0
  159. data/test/template/ec2-instance_test.rb +95 -0
  160. data/test/template/ec2-internet-gateway_test.rb +48 -0
  161. data/test/template/ec2-nat-gateway_test.rb +22 -0
  162. data/test/template/ec2-network-acl-entry_test.rb +61 -0
  163. data/test/template/ec2-network-acl_test.rb +51 -0
  164. data/test/template/ec2-route-table_test.rb +49 -0
  165. data/test/template/ec2-route_test.rb +21 -0
  166. data/test/template/ec2-security-group_test.rb +50 -0
  167. data/test/template/ec2-subnet-netwokr-acl-association_test.rb +26 -0
  168. data/test/template/ec2-subnet-route-table-association_test.rb +22 -0
  169. data/test/template/ec2-subnet_test.rb +51 -0
  170. data/test/template/ec2-volume-attachment_test.rb +24 -0
  171. data/test/template/ec2-volume_test.rb +52 -0
  172. data/test/template/ec2-vpc-gateway-attachment_test.rb +23 -0
  173. data/test/template/ec2-vpc_test.rb +102 -0
  174. data/test/template/ecs-cluster_test.rb +18 -0
  175. data/test/template/ecs-service_test.rb +29 -0
  176. data/test/template/ecs-task-definition_test.rb +143 -0
  177. data/test/template/elasticache-cache-cluster_test.rb +77 -0
  178. data/test/template/elasticache-parameter-group_test.rb +25 -0
  179. data/test/template/elasticache-replication-group_test.rb +45 -0
  180. data/test/template/elasticache-subnet-group_test.rb +26 -0
  181. data/test/template/elasticbeanstalk-application-version_test.rb +27 -0
  182. data/test/template/elasticbeanstalk-application_test.rb +21 -0
  183. data/test/template/elasticbeanstalk-configuration-template_test.rb +23 -0
  184. data/test/template/elasticbeanstalk-environment_test.rb +56 -0
  185. data/test/template/elasticbeanstalk-template_test.rb +33 -0
  186. data/test/template/elb-loadbalancer_test.rb +94 -0
  187. data/test/template/emr-cluster_test.rb +147 -0
  188. data/test/template/emr-instance-group-config_test.rb +65 -0
  189. data/test/template/emr-step_test.rb +82 -0
  190. data/test/template/events-rule_test.rb +34 -0
  191. data/test/template/iam-access-key_test.rb +22 -0
  192. data/test/template/iam-group_test.rb +21 -0
  193. data/test/template/iam-instance-profile_test.rb +24 -0
  194. data/test/template/iam-managed-policy_test.rb +35 -0
  195. data/test/template/iam-policy_test.rb +52 -0
  196. data/test/template/iam-role_test.rb +37 -0
  197. data/test/template/iam-user-to-group-addition_test.rb +24 -0
  198. data/test/template/iam-user_test.rb +21 -0
  199. data/test/template/lambda-alias_test.rb +46 -0
  200. data/test/template/lambda-event-source-mapping_test.rb +36 -0
  201. data/test/template/lambda-function_test.rb +34 -0
  202. data/test/template/lambda-permission_test.rb +32 -0
  203. data/test/template/lambda-version_test.rb +27 -0
  204. data/test/template/mappings-ec2_test.rb +92 -0
  205. data/test/template/output-access-key_test.rb +30 -0
  206. data/test/template/output-arn_test.rb +30 -0
  207. data/test/template/output-autoscaling_test.rb +27 -0
  208. data/test/template/output-az_test.rb +31 -0
  209. data/test/template/output-dynamodb_test.rb +21 -0
  210. data/test/template/output-ec2_test.rb +82 -0
  211. data/test/template/output-elasticache_test.rb +107 -0
  212. data/test/template/output-elb_test.rb +48 -0
  213. data/test/template/output-emr_test.rb +30 -0
  214. data/test/template/output-rds_test.rb +39 -0
  215. data/test/template/output-redshift_test.rb +39 -0
  216. data/test/template/output-s3_test.rb +52 -0
  217. data/test/template/output-security-group_test.rb +21 -0
  218. data/test/template/output-sqs_test.rb +21 -0
  219. data/test/template/output-topic_test.rb +30 -0
  220. data/test/template/output-vpc_test.rb +48 -0
  221. data/test/template/output_test.rb +87 -0
  222. data/test/template/parameter-ec2_test.rb +44 -0
  223. data/test/template/parameter-elasticache_test.rb +30 -0
  224. data/test/template/parameter-rds_test.rb +30 -0
  225. data/test/template/parameter-redshift_test.rb +30 -0
  226. data/test/template/parameter_test.rb +40 -0
  227. data/test/template/rds-db-cluster-parameter-group_test.rb +53 -0
  228. data/test/template/rds-db-cluster_test.rb +84 -0
  229. data/test/template/rds-db-instance_test.rb +93 -0
  230. data/test/template/rds-db-parameter-group_test.rb +53 -0
  231. data/test/template/rds-db-subnet-group.rb +54 -0
  232. data/test/template/rds-event-subscription_test.rb +48 -0
  233. data/test/template/rds-option-group_test.rb +56 -0
  234. data/test/template/redshift-cluster-parameter-group_test.rb +28 -0
  235. data/test/template/redshift-cluster-subnet-group_test.rb +26 -0
  236. data/test/template/redshift-cluster_test.rb +47 -0
  237. data/test/template/s3-bucket-policy_test.rb +40 -0
  238. data/test/template/s3-bucket_test.rb +127 -0
  239. data/test/template/sns-topic_test.rb +42 -0
  240. data/test/template/sqs-queue_test.rb +25 -0
  241. metadata +468 -0
@@ -0,0 +1,21 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2RouteTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_route "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestRoute": {
12
+ "Type": "AWS::EC2::Route",
13
+ "Properties": {
14
+ "DestinationCidrBlock": "0.0.0.0/0"
15
+ }
16
+ }
17
+ }
18
+ EOS
19
+ assert_equal exp_template.chomp, act_template
20
+ end
21
+ end
@@ -0,0 +1,50 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2SecurityGroupTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_security_group "test", vpc: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestSecurityGroup": {
12
+ "Type": "AWS::EC2::SecurityGroup",
13
+ "Properties": {
14
+ "GroupDescription": "test security group description",
15
+ "Tags": [
16
+ {
17
+ "Key": "Name",
18
+ "Value": {
19
+ "Fn::Join": [
20
+ "-",
21
+ [
22
+ {
23
+ "Ref": "Service"
24
+ },
25
+ "test"
26
+ ]
27
+ ]
28
+ }
29
+ },
30
+ {
31
+ "Key": "Service",
32
+ "Value": {
33
+ "Ref": "Service"
34
+ }
35
+ },
36
+ {
37
+ "Key": "Version",
38
+ "Value": {
39
+ "Ref": "Version"
40
+ }
41
+ }
42
+ ],
43
+ "VpcId": "test"
44
+ }
45
+ }
46
+ }
47
+ EOS
48
+ assert_equal exp_template.chomp, act_template
49
+ end
50
+ end
@@ -0,0 +1,26 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2SubnetNetworkAclAssociationTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_subnet_network_acl_association "test", ref_subnet: "test", ref_network_acl: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestSubnetNetworkAclAssociation": {
12
+ "Type": "AWS::EC2::SubnetNetworkAclAssociation",
13
+ "Properties": {
14
+ "SubnetId": {
15
+ "Ref": "TestSubnet"
16
+ },
17
+ "NetworkAclId": {
18
+ "Ref": "TestNetworkAcl"
19
+ }
20
+ }
21
+ }
22
+ }
23
+ EOS
24
+ assert_equal exp_template.chomp, act_template
25
+ end
26
+ end
@@ -0,0 +1,22 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2SubnetRouteTableAssociationTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_subnet_route_table_association "test", route_table: "test", subnet: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestSubnetRouteTableAssociation": {
12
+ "Type": "AWS::EC2::SubnetRouteTableAssociation",
13
+ "Properties": {
14
+ "RouteTableId": "test",
15
+ "SubnetId": "test"
16
+ }
17
+ }
18
+ }
19
+ EOS
20
+ assert_equal exp_template.chomp, act_template
21
+ end
22
+ end
@@ -0,0 +1,51 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2SubnetTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_subnet "test", vpc: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestSubnet": {
12
+ "Type": "AWS::EC2::Subnet",
13
+ "Properties": {
14
+ "CidrBlock": "10.1.0.0/24",
15
+ "MapPublicIpOnLaunch": "true",
16
+ "Tags": [
17
+ {
18
+ "Key": "Name",
19
+ "Value": {
20
+ "Fn::Join": [
21
+ "-",
22
+ [
23
+ {
24
+ "Ref": "Service"
25
+ },
26
+ "test"
27
+ ]
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "Key": "Service",
33
+ "Value": {
34
+ "Ref": "Service"
35
+ }
36
+ },
37
+ {
38
+ "Key": "Version",
39
+ "Value": {
40
+ "Ref": "Version"
41
+ }
42
+ }
43
+ ],
44
+ "VpcId": "test"
45
+ }
46
+ }
47
+ }
48
+ EOS
49
+ assert_equal exp_template.chomp, act_template
50
+ end
51
+ end
@@ -0,0 +1,24 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2VolumeAttachmentTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_volume_attachment "test", instance: "test", volume: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestVolumeAttachment": {
12
+ "Type": "AWS::EC2::VolumeAttachment",
13
+ "Properties": {
14
+ "Device": "/dev/sdb",
15
+ "InstanceId": "test",
16
+ "VolumeId": "test"
17
+ }
18
+ }
19
+ }
20
+ EOS
21
+ assert_equal exp_template.chomp, act_template
22
+ end
23
+ end
24
+
@@ -0,0 +1,52 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2VolumeTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_volume "test", az: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestVolume": {
12
+ "Type": "AWS::EC2::Volume",
13
+ "Properties": {
14
+ "AutoEnableIO": "false",
15
+ "AvailabilityZone": "test",
16
+ "Size": "10",
17
+ "Tags": [
18
+ {
19
+ "Key": "Name",
20
+ "Value": {
21
+ "Fn::Join": [
22
+ "-",
23
+ [
24
+ {
25
+ "Ref": "Service"
26
+ },
27
+ "test"
28
+ ]
29
+ ]
30
+ }
31
+ },
32
+ {
33
+ "Key": "Service",
34
+ "Value": {
35
+ "Ref": "Service"
36
+ }
37
+ },
38
+ {
39
+ "Key": "Version",
40
+ "Value": {
41
+ "Ref": "Version"
42
+ }
43
+ }
44
+ ],
45
+ "VolumeType": "gp2"
46
+ }
47
+ }
48
+ }
49
+ EOS
50
+ assert_equal exp_template.chomp, act_template
51
+ end
52
+ end
@@ -0,0 +1,23 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2VpcGatewayAttachmentTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_vpc_gateway_attachment "test", vpc: "test", internet_gateway: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestVpcGatewayAttachment": {
12
+ "Type": "AWS::EC2::VPCGatewayAttachment",
13
+ "Properties": {
14
+ "InternetGatewayId": "test",
15
+ "VpcId": "test"
16
+ }
17
+ }
18
+ }
19
+ EOS
20
+ assert_equal exp_template.chomp, act_template
21
+ end
22
+ end
23
+
@@ -0,0 +1,102 @@
1
+ require 'abstract_unit'
2
+
3
+ class Ec2VpcTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ec2_vpc "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestVpc": {
12
+ "Type": "AWS::EC2::VPC",
13
+ "Properties": {
14
+ "CidrBlock": "191.168.1.0/16",
15
+ "EnableDnsSupport": "true",
16
+ "EnableDnsHostnames": "true",
17
+ "InstanceTenancy": "default",
18
+ "Tags": [
19
+ {
20
+ "Key": "Name",
21
+ "Value": {
22
+ "Fn::Join": [
23
+ "-",
24
+ [
25
+ {
26
+ "Ref": "Service"
27
+ },
28
+ "test"
29
+ ]
30
+ ]
31
+ }
32
+ },
33
+ {
34
+ "Key": "Service",
35
+ "Value": {
36
+ "Ref": "Service"
37
+ }
38
+ },
39
+ {
40
+ "Key": "Version",
41
+ "Value": {
42
+ "Ref": "Version"
43
+ }
44
+ }
45
+ ]
46
+ }
47
+ }
48
+ }
49
+ EOS
50
+ assert_equal exp_template.chomp, act_template
51
+ end
52
+
53
+ def test_aws
54
+ template = <<-EOS
55
+ _ec2_vpc "test"
56
+ EOS
57
+ act_template = run_client_as_json(template)
58
+ exp_template = <<-EOS
59
+ {
60
+ "TestVpc": {
61
+ "Type": "AWS::EC2::VPC",
62
+ "Properties": {
63
+ "CidrBlock": "191.168.1.0/16",
64
+ "EnableDnsSupport": "true",
65
+ "EnableDnsHostnames": "true",
66
+ "InstanceTenancy": "default",
67
+ "Tags": [
68
+ {
69
+ "Key": "Name",
70
+ "Value": {
71
+ "Fn::Join": [
72
+ "-",
73
+ [
74
+ {
75
+ "Ref": "Service"
76
+ },
77
+ "test"
78
+ ]
79
+ ]
80
+ }
81
+ },
82
+ {
83
+ "Key": "Service",
84
+ "Value": {
85
+ "Ref": "Service"
86
+ }
87
+ },
88
+ {
89
+ "Key": "Version",
90
+ "Value": {
91
+ "Ref": "Version"
92
+ }
93
+ }
94
+ ]
95
+ }
96
+ }
97
+ }
98
+ EOS
99
+ assert_equal exp_template.chomp, act_template
100
+ end
101
+ end
102
+
@@ -0,0 +1,18 @@
1
+ require 'abstract_unit'
2
+
3
+ class EcsClusterTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ecs_cluster "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestEcsCluster": {
12
+ "Type": "AWS::ECS::Cluster"
13
+ }
14
+ }
15
+ EOS
16
+ assert_equal exp_template.chomp, act_template
17
+ end
18
+ end
@@ -0,0 +1,29 @@
1
+ require 'abstract_unit'
2
+
3
+ class EcsServiceTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ecs_service "test", ref_cluster: "test", ref_desired_count: "test", ref_task: "test"
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestEcsService": {
12
+ "Type": "AWS::ECS::Service",
13
+ "Properties": {
14
+ "Cluster": {
15
+ "Ref": "TestEcsCluster"
16
+ },
17
+ "DesiredCount": {
18
+ "Ref": "TestEcsDesiredCount"
19
+ },
20
+ "TaskDefinition": {
21
+ "Ref": "TestEcsTaskDefinition"
22
+ }
23
+ }
24
+ }
25
+ }
26
+ EOS
27
+ assert_equal exp_template.chomp, act_template
28
+ end
29
+ end
@@ -0,0 +1,143 @@
1
+ require 'abstract_unit'
2
+
3
+ class EcsTaskDefinitionTest < Minitest::Test
4
+ def test_normal
5
+ template = <<-EOS
6
+ _ecs_task_definition "test", container_definitions: [ { name: "test", image: "test" } ], volumes: [ { name: "test" } ]
7
+ EOS
8
+ act_template = run_client_as_json(template)
9
+ exp_template = <<-EOS
10
+ {
11
+ "TestEcsTaskDefinition": {
12
+ "Type": "AWS::ECS::TaskDefinition",
13
+ "Properties": {
14
+ "ContainerDefinitions": [
15
+ {
16
+ "Cpu": "10",
17
+ "Essential": "true",
18
+ "Image": "test",
19
+ "Memory": "300",
20
+ "Name": "test",
21
+ "PortMappings": [
22
+ {
23
+ "ContainerPort": "80"
24
+ }
25
+ ]
26
+ }
27
+ ],
28
+ "Volumes": [
29
+ {
30
+ "Name": "test"
31
+ }
32
+ ]
33
+ }
34
+ }
35
+ }
36
+ EOS
37
+ assert_equal exp_template.chomp, act_template
38
+ end
39
+
40
+ def test_aws
41
+ template = <<-EOS
42
+ container1 = {
43
+ ref_name: "app",
44
+ entry_point: [ "/usr/sbin/apache2", "-D", "FOREGROUND" ],
45
+ image: "amazon/amazon-ecs-sample",
46
+ memory: 500,
47
+ mount_points: [ { source_volume: "my-vol", container_path: "/var/www/my-vol" } ],
48
+ port_mappings: [ { ref_container_port: "app", ref_host_port: "app" } ],
49
+ }
50
+ container2 = {
51
+ name: "busybox",
52
+ command: [ "/bin/sh -c \\"while true; do /bin/date > /var/www/my-vol/date; sleep 1; done\\"" ],
53
+ cpu: 10,
54
+ entry_point: [ "sh", "-c" ],
55
+ essential: false,
56
+ image: "busybox",
57
+ memory: 500,
58
+ port_mappings: nil,
59
+ volumes_from: [
60
+ { ref_source: "app" }
61
+ ],
62
+ }
63
+ volumes = [
64
+ { name: "my-vol", host: { source_path: "/var/lib/docker/vfs/dir/" } },
65
+ ]
66
+ _ecs_task_definition "test", container_definitions: [ container1, container2 ], volumes: volumes
67
+ EOS
68
+ act_template = run_client_as_json(template)
69
+ exp_template = <<-EOS
70
+ {
71
+ "TestEcsTaskDefinition": {
72
+ "Type": "AWS::ECS::TaskDefinition",
73
+ "Properties": {
74
+ "ContainerDefinitions": [
75
+ {
76
+ "Cpu": "10",
77
+ "EntryPoint": [
78
+ "/usr/sbin/apache2",
79
+ "-D",
80
+ "FOREGROUND"
81
+ ],
82
+ "Essential": "true",
83
+ "Image": "amazon/amazon-ecs-sample",
84
+ "Memory": "500",
85
+ "MountPoints": [
86
+ {
87
+ "ContainerPath": "/var/www/my-vol",
88
+ "SourceVolume": "my-vol",
89
+ "ReadOnly": "false"
90
+ }
91
+ ],
92
+ "Name": {
93
+ "Ref": "App"
94
+ },
95
+ "PortMappings": [
96
+ {
97
+ "ContainerPort": {
98
+ "Ref": "AppContainerPort"
99
+ },
100
+ "HostPort": {
101
+ "Ref": "AppHostPort"
102
+ }
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "Command": [
108
+ "/bin/sh -c \\"while true; do /bin/date > /var/www/my-vol/date; sleep 1; done\\""
109
+ ],
110
+ "Cpu": "10",
111
+ "EntryPoint": [
112
+ "sh",
113
+ "-c"
114
+ ],
115
+ "Essential": "false",
116
+ "Image": "busybox",
117
+ "Memory": "500",
118
+ "Name": "busybox",
119
+ "VolumesFrom": [
120
+ {
121
+ "SourceContainer": {
122
+ "Ref": "App"
123
+ },
124
+ "ReadOnly": "false"
125
+ }
126
+ ]
127
+ }
128
+ ],
129
+ "Volumes": [
130
+ {
131
+ "Name": "my-vol",
132
+ "Host": {
133
+ "SourcePath": "/var/lib/docker/vfs/dir/"
134
+ }
135
+ }
136
+ ]
137
+ }
138
+ }
139
+ }
140
+ EOS
141
+ assert_equal exp_template.chomp, act_template
142
+ end
143
+ end