ey-core 3.6.4 → 3.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (543) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +26 -23
  3. data/.ruby-gemset +1 -1
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +23 -23
  6. data/CHANGELOG.md +189 -189
  7. data/Gemfile +26 -20
  8. data/Guardfile +15 -15
  9. data/LICENSE.txt +19 -19
  10. data/README.md +135 -135
  11. data/Rakefile +18 -18
  12. data/bin/console +4 -0
  13. data/bin/ey-core +4 -4
  14. data/docs/development.md +6 -0
  15. data/examples/add_instance.rb +74 -74
  16. data/examples/boot_env.rb +60 -60
  17. data/examples/console/README.md +14 -14
  18. data/examples/console/address.md +51 -51
  19. data/examples/stop_env.rb +51 -51
  20. data/examples/terminate_instance.rb +62 -62
  21. data/ey-core.gemspec +52 -52
  22. data/features/accounts.feature +13 -13
  23. data/features/applications.feature +29 -29
  24. data/features/current_user.feature +14 -14
  25. data/features/docker_registry_credentials.feature +21 -21
  26. data/features/environment_variables.feature +54 -54
  27. data/features/environments.feature +30 -30
  28. data/features/init.feature +6 -6
  29. data/features/login.feature +6 -6
  30. data/features/scp.feature +6 -6
  31. data/features/step_definitions/accounts_steps.rb +37 -37
  32. data/features/step_definitions/applications_steps.rb +39 -39
  33. data/features/step_definitions/current_user_steps.rb +11 -11
  34. data/features/step_definitions/deprecated_command_steps.rb +3 -3
  35. data/features/step_definitions/docker_registry_credentials_steps.rb +3 -3
  36. data/features/step_definitions/environment_variables_steps.rb +51 -51
  37. data/features/step_definitions/environments_steps.rb +52 -52
  38. data/features/step_definitions/version_steps.rb +3 -3
  39. data/features/support/account_helpers.rb +89 -89
  40. data/features/support/app_helpers.rb +19 -19
  41. data/features/support/aruba.rb +1 -1
  42. data/features/support/boilerplate.rb +1 -1
  43. data/features/support/client_helpers.rb +36 -36
  44. data/features/support/config_file_helpers.rb +42 -42
  45. data/features/support/core.rb +19 -19
  46. data/features/support/deployment_helpers.rb +19 -19
  47. data/features/support/env.rb +40 -40
  48. data/features/support/environment_helpers.rb +23 -23
  49. data/features/support/environment_variable_helpers.rb +20 -20
  50. data/features/support/fake_kernel.rb +23 -23
  51. data/features/support/io.rb +5 -5
  52. data/features/support/mock_api.rb +20 -20
  53. data/features/support/output_helpers.rb +7 -7
  54. data/features/support/resource_helpers.rb +201 -201
  55. data/features/support/server_helpers.rb +27 -27
  56. data/features/version.feature +8 -8
  57. data/features/whoami.feature +14 -14
  58. data/lib/ey-core/associations.rb +155 -155
  59. data/lib/ey-core/cli/accounts.rb +17 -17
  60. data/lib/ey-core/cli/applications.rb +36 -36
  61. data/lib/ey-core/cli/console.rb +28 -28
  62. data/lib/ey-core/cli/current_user.rb +16 -16
  63. data/lib/ey-core/cli/deploy.rb +126 -126
  64. data/lib/ey-core/cli/docker_registry_login.rb +29 -29
  65. data/lib/ey-core/cli/environment_variables.rb +71 -71
  66. data/lib/ey-core/cli/environments.rb +39 -39
  67. data/lib/ey-core/cli/errors.rb +11 -11
  68. data/lib/ey-core/cli/help.rb +30 -30
  69. data/lib/ey-core/cli/helpers/archive.rb +70 -70
  70. data/lib/ey-core/cli/helpers/chef.rb +51 -51
  71. data/lib/ey-core/cli/helpers/core.rb +225 -225
  72. data/lib/ey-core/cli/helpers/deprecated.rb +39 -39
  73. data/lib/ey-core/cli/helpers/log_streaming.rb +41 -41
  74. data/lib/ey-core/cli/helpers/server_sieve.rb +83 -83
  75. data/lib/ey-core/cli/helpers/stream_printer.rb +42 -42
  76. data/lib/ey-core/cli/init.rb +14 -14
  77. data/lib/ey-core/cli/login.rb +38 -38
  78. data/lib/ey-core/cli/logout.rb +22 -22
  79. data/lib/ey-core/cli/logs.rb +70 -70
  80. data/lib/ey-core/cli/main.rb +66 -66
  81. data/lib/ey-core/cli/recipes/apply.rb +65 -65
  82. data/lib/ey-core/cli/recipes/download.rb +52 -52
  83. data/lib/ey-core/cli/recipes/main.rb +21 -21
  84. data/lib/ey-core/cli/recipes/upload.rb +78 -78
  85. data/lib/ey-core/cli/recipes.rb +10 -10
  86. data/lib/ey-core/cli/scp.rb +14 -14
  87. data/lib/ey-core/cli/servers.rb +59 -59
  88. data/lib/ey-core/cli/ssh.rb +156 -156
  89. data/lib/ey-core/cli/status.rb +60 -60
  90. data/lib/ey-core/cli/subcommand.rb +53 -53
  91. data/lib/ey-core/cli/timeout_deploy.rb +58 -58
  92. data/lib/ey-core/cli/version.rb +16 -16
  93. data/lib/ey-core/cli/web/disable.rb +49 -49
  94. data/lib/ey-core/cli/web/enable.rb +46 -46
  95. data/lib/ey-core/cli/web/main.rb +21 -21
  96. data/lib/ey-core/cli/web/restart.rb +42 -42
  97. data/lib/ey-core/cli/web.rb +10 -10
  98. data/lib/ey-core/cli/whoami.rb +12 -12
  99. data/lib/ey-core/cli.rb +8 -8
  100. data/lib/ey-core/client/mock.rb +306 -306
  101. data/lib/ey-core/client/real.rb +93 -93
  102. data/lib/ey-core/client.rb +469 -469
  103. data/lib/ey-core/collection.rb +131 -131
  104. data/lib/ey-core/collections/account_cancellations.rb +6 -6
  105. data/lib/ey-core/collections/account_referrals.rb +10 -10
  106. data/lib/ey-core/collections/accounts.rb +8 -8
  107. data/lib/ey-core/collections/addons.rb +16 -16
  108. data/lib/ey-core/collections/addresses.rb +9 -9
  109. data/lib/ey-core/collections/alerts.rb +9 -9
  110. data/lib/ey-core/collections/application_archives.rb +9 -9
  111. data/lib/ey-core/collections/application_deployments.rb +9 -9
  112. data/lib/ey-core/collections/applications.rb +9 -9
  113. data/lib/ey-core/collections/auto_scaling_alarms.rb +8 -8
  114. data/lib/ey-core/collections/auto_scaling_groups.rb +8 -8
  115. data/lib/ey-core/collections/auto_scaling_policies.rb +33 -33
  116. data/lib/ey-core/collections/backup_files.rb +9 -9
  117. data/lib/ey-core/collections/blueprints.rb +9 -9
  118. data/lib/ey-core/collections/components.rb +9 -9
  119. data/lib/ey-core/collections/contacts.rb +9 -9
  120. data/lib/ey-core/collections/container_clusters.rb +9 -9
  121. data/lib/ey-core/collections/container_service_deployments.rb +17 -17
  122. data/lib/ey-core/collections/costs.rb +8 -8
  123. data/lib/ey-core/collections/database_plan_usages.rb +7 -7
  124. data/lib/ey-core/collections/database_server_revisions.rb +7 -7
  125. data/lib/ey-core/collections/database_server_snapshots.rb +17 -17
  126. data/lib/ey-core/collections/database_server_usages.rb +7 -7
  127. data/lib/ey-core/collections/database_servers.rb +9 -9
  128. data/lib/ey-core/collections/database_services.rb +9 -9
  129. data/lib/ey-core/collections/deployments.rb +8 -8
  130. data/lib/ey-core/collections/environment_plan_usages.rb +7 -7
  131. data/lib/ey-core/collections/environment_variables.rb +8 -8
  132. data/lib/ey-core/collections/environments.rb +15 -15
  133. data/lib/ey-core/collections/features.rb +9 -9
  134. data/lib/ey-core/collections/firewall_rules.rb +9 -9
  135. data/lib/ey-core/collections/firewalls.rb +9 -9
  136. data/lib/ey-core/collections/gems.rb +6 -6
  137. data/lib/ey-core/collections/keypair_deployments.rb +9 -9
  138. data/lib/ey-core/collections/keypairs.rb +9 -9
  139. data/lib/ey-core/collections/legacy_alerts.rb +9 -9
  140. data/lib/ey-core/collections/load_balancer_nodes.rb +9 -9
  141. data/lib/ey-core/collections/load_balancer_services.rb +9 -9
  142. data/lib/ey-core/collections/load_balancers.rb +16 -16
  143. data/lib/ey-core/collections/logical_databases.rb +16 -16
  144. data/lib/ey-core/collections/logs.rb +9 -9
  145. data/lib/ey-core/collections/memberships.rb +9 -9
  146. data/lib/ey-core/collections/messages.rb +9 -9
  147. data/lib/ey-core/collections/plan_usages.rb +7 -7
  148. data/lib/ey-core/collections/provider_locations.rb +13 -13
  149. data/lib/ey-core/collections/providers.rb +15 -15
  150. data/lib/ey-core/collections/requests.rb +10 -10
  151. data/lib/ey-core/collections/server_events.rb +9 -9
  152. data/lib/ey-core/collections/server_usages.rb +7 -7
  153. data/lib/ey-core/collections/servers.rb +13 -13
  154. data/lib/ey-core/collections/services.rb +14 -14
  155. data/lib/ey-core/collections/ssl_certificates.rb +9 -9
  156. data/lib/ey-core/collections/storage_users.rb +10 -10
  157. data/lib/ey-core/collections/storages.rb +9 -9
  158. data/lib/ey-core/collections/tasks.rb +9 -9
  159. data/lib/ey-core/collections/tokens.rb +9 -9
  160. data/lib/ey-core/collections/untracked_addresses.rb +4 -4
  161. data/lib/ey-core/collections/untracked_servers.rb +9 -9
  162. data/lib/ey-core/collections/users.rb +12 -12
  163. data/lib/ey-core/collections/volumes.rb +9 -9
  164. data/lib/ey-core/logger.rb +31 -31
  165. data/lib/ey-core/memory_cache.rb +17 -17
  166. data/lib/ey-core/mock/helper.rb +104 -104
  167. data/lib/ey-core/mock/params.rb +31 -31
  168. data/lib/ey-core/mock/resources.rb +92 -92
  169. data/lib/ey-core/mock/searching.rb +115 -115
  170. data/lib/ey-core/mock/util.rb +23 -23
  171. data/lib/ey-core/model.rb +44 -44
  172. data/lib/ey-core/models/account.rb +80 -80
  173. data/lib/ey-core/models/account_cancellation.rb +6 -6
  174. data/lib/ey-core/models/account_referral.rb +8 -8
  175. data/lib/ey-core/models/account_trial.rb +15 -15
  176. data/lib/ey-core/models/addon.rb +37 -37
  177. data/lib/ey-core/models/address.rb +59 -59
  178. data/lib/ey-core/models/alert.rb +100 -99
  179. data/lib/ey-core/models/application.rb +33 -33
  180. data/lib/ey-core/models/application_archive.rb +67 -67
  181. data/lib/ey-core/models/application_deployment.rb +18 -18
  182. data/lib/ey-core/models/auto_scaling_alarm.rb +54 -54
  183. data/lib/ey-core/models/auto_scaling_group.rb +75 -75
  184. data/lib/ey-core/models/backup_file.rb +52 -52
  185. data/lib/ey-core/models/base_auto_scaling_policy.rb +61 -61
  186. data/lib/ey-core/models/billing.rb +27 -27
  187. data/lib/ey-core/models/blueprint.rb +30 -30
  188. data/lib/ey-core/models/component.rb +11 -11
  189. data/lib/ey-core/models/contact.rb +14 -14
  190. data/lib/ey-core/models/container_service_deployment.rb +17 -17
  191. data/lib/ey-core/models/cost.rb +16 -16
  192. data/lib/ey-core/models/database_plan_usage.rb +10 -10
  193. data/lib/ey-core/models/database_server.rb +56 -56
  194. data/lib/ey-core/models/database_server_revision.rb +10 -10
  195. data/lib/ey-core/models/database_server_snapshot.rb +43 -43
  196. data/lib/ey-core/models/database_server_usage.rb +15 -15
  197. data/lib/ey-core/models/database_service.rb +52 -52
  198. data/lib/ey-core/models/deployment.rb +31 -31
  199. data/lib/ey-core/models/environment.rb +248 -248
  200. data/lib/ey-core/models/environment_plan_usage.rb +10 -10
  201. data/lib/ey-core/models/environment_variable.rb +29 -29
  202. data/lib/ey-core/models/feature.rb +33 -33
  203. data/lib/ey-core/models/firewall.rb +46 -46
  204. data/lib/ey-core/models/firewall_rule.rb +41 -41
  205. data/lib/ey-core/models/gem.rb +5 -5
  206. data/lib/ey-core/models/keypair.rb +38 -38
  207. data/lib/ey-core/models/keypair_deployment.rb +26 -26
  208. data/lib/ey-core/models/legacy_alert.rb +12 -12
  209. data/lib/ey-core/models/load_balancer.rb +43 -43
  210. data/lib/ey-core/models/load_balancer_node.rb +17 -17
  211. data/lib/ey-core/models/load_balancer_service.rb +22 -22
  212. data/lib/ey-core/models/log.rb +44 -44
  213. data/lib/ey-core/models/logical_database.rb +40 -40
  214. data/lib/ey-core/models/membership.rb +49 -49
  215. data/lib/ey-core/models/message.rb +27 -27
  216. data/lib/ey-core/models/plan_usage.rb +14 -14
  217. data/lib/ey-core/models/provider.rb +59 -59
  218. data/lib/ey-core/models/provider_location.rb +24 -24
  219. data/lib/ey-core/models/request.rb +109 -109
  220. data/lib/ey-core/models/server.rb +151 -151
  221. data/lib/ey-core/models/server_event.rb +11 -11
  222. data/lib/ey-core/models/server_usage.rb +15 -15
  223. data/lib/ey-core/models/service.rb +10 -10
  224. data/lib/ey-core/models/simple_auto_scaling_policy.rb +24 -24
  225. data/lib/ey-core/models/ssl_certificate.rb +44 -44
  226. data/lib/ey-core/models/step_auto_scaling_policy.rb +24 -24
  227. data/lib/ey-core/models/storage.rb +38 -38
  228. data/lib/ey-core/models/storage_user.rb +44 -44
  229. data/lib/ey-core/models/support_trial.rb +10 -10
  230. data/lib/ey-core/models/target_auto_scaling_policy.rb +24 -24
  231. data/lib/ey-core/models/task.rb +35 -35
  232. data/lib/ey-core/models/token.rb +24 -24
  233. data/lib/ey-core/models/untracked_address.rb +24 -24
  234. data/lib/ey-core/models/untracked_server.rb +45 -45
  235. data/lib/ey-core/models/user.rb +39 -39
  236. data/lib/ey-core/models/volume.rb +20 -20
  237. data/lib/ey-core/request.rb +21 -21
  238. data/lib/ey-core/request_failure.rb +11 -11
  239. data/lib/ey-core/requests/acknowledge_alert.rb +29 -29
  240. data/lib/ey-core/requests/apply_environment_updates.rb +54 -54
  241. data/lib/ey-core/requests/apply_server_updates.rb +52 -52
  242. data/lib/ey-core/requests/attach_address.rb +53 -53
  243. data/lib/ey-core/requests/authorized_channel.rb +22 -22
  244. data/lib/ey-core/requests/blueprint_environment.rb +72 -72
  245. data/lib/ey-core/requests/boot_environment.rb +187 -187
  246. data/lib/ey-core/requests/bootstrap_logical_database.rb +80 -80
  247. data/lib/ey-core/requests/cancel_account.rb +33 -33
  248. data/lib/ey-core/requests/change_environment_maintenance.rb +38 -38
  249. data/lib/ey-core/requests/create_account.rb +38 -38
  250. data/lib/ey-core/requests/create_addon.rb +35 -35
  251. data/lib/ey-core/requests/create_address.rb +54 -54
  252. data/lib/ey-core/requests/create_alert.rb +63 -63
  253. data/lib/ey-core/requests/create_application.rb +73 -73
  254. data/lib/ey-core/requests/create_application_archive.rb +44 -44
  255. data/lib/ey-core/requests/create_auto_scaling_alarm.rb +69 -69
  256. data/lib/ey-core/requests/create_auto_scaling_group.rb +62 -62
  257. data/lib/ey-core/requests/create_auto_scaling_policy.rb +68 -68
  258. data/lib/ey-core/requests/create_backup_file.rb +52 -52
  259. data/lib/ey-core/requests/create_database_server.rb +72 -72
  260. data/lib/ey-core/requests/create_database_service.rb +57 -57
  261. data/lib/ey-core/requests/create_database_service_snapshot.rb +69 -69
  262. data/lib/ey-core/requests/create_environment.rb +77 -77
  263. data/lib/ey-core/requests/create_environment_variable.rb +39 -39
  264. data/lib/ey-core/requests/create_firewall.rb +62 -62
  265. data/lib/ey-core/requests/create_firewall_rule.rb +60 -60
  266. data/lib/ey-core/requests/create_keypair.rb +42 -42
  267. data/lib/ey-core/requests/create_keypair_deployment.rb +36 -36
  268. data/lib/ey-core/requests/create_load_balancer.rb +62 -62
  269. data/lib/ey-core/requests/create_log.rb +53 -53
  270. data/lib/ey-core/requests/create_logical_database.rb +56 -56
  271. data/lib/ey-core/requests/create_membership.rb +47 -47
  272. data/lib/ey-core/requests/create_message.rb +35 -35
  273. data/lib/ey-core/requests/create_password_reset.rb +38 -38
  274. data/lib/ey-core/requests/create_provider.rb +90 -90
  275. data/lib/ey-core/requests/create_server.rb +121 -121
  276. data/lib/ey-core/requests/create_ssl_certificate.rb +83 -83
  277. data/lib/ey-core/requests/create_storage.rb +64 -64
  278. data/lib/ey-core/requests/create_storage_user.rb +64 -64
  279. data/lib/ey-core/requests/create_task.rb +55 -55
  280. data/lib/ey-core/requests/create_token.rb +24 -24
  281. data/lib/ey-core/requests/create_untracked_address.rb +50 -50
  282. data/lib/ey-core/requests/create_untracked_server.rb +39 -39
  283. data/lib/ey-core/requests/create_user.rb +54 -54
  284. data/lib/ey-core/requests/deploy_environment_application.rb +61 -61
  285. data/lib/ey-core/requests/deprovision_environment.rb +17 -17
  286. data/lib/ey-core/requests/destroy_addon.rb +24 -24
  287. data/lib/ey-core/requests/destroy_auto_scaling_alarm.rb +49 -49
  288. data/lib/ey-core/requests/destroy_auto_scaling_group.rb +44 -44
  289. data/lib/ey-core/requests/destroy_auto_scaling_policy.rb +49 -49
  290. data/lib/ey-core/requests/destroy_blueprint.rb +22 -22
  291. data/lib/ey-core/requests/destroy_database_server.rb +41 -41
  292. data/lib/ey-core/requests/destroy_database_server_snapshot.rb +42 -42
  293. data/lib/ey-core/requests/destroy_database_service.rb +57 -57
  294. data/lib/ey-core/requests/destroy_environment.rb +43 -43
  295. data/lib/ey-core/requests/destroy_firewall.rb +41 -41
  296. data/lib/ey-core/requests/destroy_firewall_rule.rb +41 -41
  297. data/lib/ey-core/requests/destroy_load_balancer.rb +30 -30
  298. data/lib/ey-core/requests/destroy_logical_database.rb +41 -41
  299. data/lib/ey-core/requests/destroy_provider.rb +34 -34
  300. data/lib/ey-core/requests/destroy_server.rb +48 -48
  301. data/lib/ey-core/requests/destroy_ssl_certificate.rb +28 -28
  302. data/lib/ey-core/requests/destroy_storage.rb +33 -33
  303. data/lib/ey-core/requests/destroy_storage_user.rb +38 -38
  304. data/lib/ey-core/requests/destroy_user.rb +29 -29
  305. data/lib/ey-core/requests/detach_address.rb +48 -48
  306. data/lib/ey-core/requests/disable_feature.rb +30 -30
  307. data/lib/ey-core/requests/discover_container_service_deployments.rb +71 -71
  308. data/lib/ey-core/requests/discover_database_server.rb +66 -66
  309. data/lib/ey-core/requests/discover_database_server_snapshots.rb +69 -69
  310. data/lib/ey-core/requests/discover_provider_location.rb +57 -57
  311. data/lib/ey-core/requests/discover_server.rb +60 -60
  312. data/lib/ey-core/requests/download_file.rb +25 -25
  313. data/lib/ey-core/requests/enable_feature.rb +35 -35
  314. data/lib/ey-core/requests/get_account.rb +29 -29
  315. data/lib/ey-core/requests/get_account_cancellation.rb +21 -21
  316. data/lib/ey-core/requests/get_account_referrals.rb +28 -28
  317. data/lib/ey-core/requests/get_account_trial.rb +32 -32
  318. data/lib/ey-core/requests/get_accounts.rb +42 -42
  319. data/lib/ey-core/requests/get_addon.rb +25 -25
  320. data/lib/ey-core/requests/get_addons.rb +24 -24
  321. data/lib/ey-core/requests/get_address.rb +25 -25
  322. data/lib/ey-core/requests/get_addresses.rb +27 -27
  323. data/lib/ey-core/requests/get_alert.rb +21 -21
  324. data/lib/ey-core/requests/get_alerting_environments.rb +41 -41
  325. data/lib/ey-core/requests/get_alerts.rb +44 -44
  326. data/lib/ey-core/requests/get_api_token.rb +19 -19
  327. data/lib/ey-core/requests/get_application.rb +21 -21
  328. data/lib/ey-core/requests/get_application_archive.rb +32 -32
  329. data/lib/ey-core/requests/get_application_archives.rb +29 -29
  330. data/lib/ey-core/requests/get_application_deployment.rb +21 -21
  331. data/lib/ey-core/requests/get_application_deployments.rb +28 -28
  332. data/lib/ey-core/requests/get_applications.rb +28 -28
  333. data/lib/ey-core/requests/get_auto_scaling_alarm.rb +27 -27
  334. data/lib/ey-core/requests/get_auto_scaling_alarms.rb +34 -34
  335. data/lib/ey-core/requests/get_auto_scaling_group.rb +21 -21
  336. data/lib/ey-core/requests/get_auto_scaling_groups.rb +29 -29
  337. data/lib/ey-core/requests/get_auto_scaling_policies.rb +46 -46
  338. data/lib/ey-core/requests/get_auto_scaling_policy.rb +27 -27
  339. data/lib/ey-core/requests/get_backup_file.rb +21 -21
  340. data/lib/ey-core/requests/get_backup_files.rb +28 -28
  341. data/lib/ey-core/requests/get_billing.rb +24 -24
  342. data/lib/ey-core/requests/get_blueprint.rb +21 -21
  343. data/lib/ey-core/requests/get_blueprints.rb +29 -29
  344. data/lib/ey-core/requests/get_component.rb +21 -21
  345. data/lib/ey-core/requests/get_components.rb +29 -29
  346. data/lib/ey-core/requests/get_contacts.rb +34 -34
  347. data/lib/ey-core/requests/get_costs.rb +25 -25
  348. data/lib/ey-core/requests/get_current_user.rb +19 -19
  349. data/lib/ey-core/requests/get_database_plan_usages.rb +24 -24
  350. data/lib/ey-core/requests/get_database_server.rb +21 -21
  351. data/lib/ey-core/requests/get_database_server_revisions.rb +27 -27
  352. data/lib/ey-core/requests/get_database_server_snapshot.rb +20 -20
  353. data/lib/ey-core/requests/get_database_server_snapshots.rb +39 -39
  354. data/lib/ey-core/requests/get_database_server_usages.rb +24 -24
  355. data/lib/ey-core/requests/get_database_servers.rb +30 -30
  356. data/lib/ey-core/requests/get_database_servers_firewalls.rb +30 -30
  357. data/lib/ey-core/requests/get_database_service.rb +20 -20
  358. data/lib/ey-core/requests/get_database_services.rb +55 -55
  359. data/lib/ey-core/requests/get_deployment.rb +19 -19
  360. data/lib/ey-core/requests/get_deployments.rb +29 -29
  361. data/lib/ey-core/requests/get_environment.rb +21 -21
  362. data/lib/ey-core/requests/get_environment_database_services.rb +21 -21
  363. data/lib/ey-core/requests/get_environment_logical_databases.rb +20 -20
  364. data/lib/ey-core/requests/get_environment_plan_usages.rb +24 -24
  365. data/lib/ey-core/requests/get_environment_variable.rb +19 -19
  366. data/lib/ey-core/requests/get_environment_variables.rb +29 -29
  367. data/lib/ey-core/requests/get_environments.rb +29 -29
  368. data/lib/ey-core/requests/get_feature.rb +21 -21
  369. data/lib/ey-core/requests/get_features.rb +28 -28
  370. data/lib/ey-core/requests/get_firewall.rb +21 -21
  371. data/lib/ey-core/requests/get_firewall_rule.rb +21 -21
  372. data/lib/ey-core/requests/get_firewall_rules.rb +29 -29
  373. data/lib/ey-core/requests/get_firewalls.rb +45 -45
  374. data/lib/ey-core/requests/get_gem.rb +24 -24
  375. data/lib/ey-core/requests/get_keypair.rb +21 -21
  376. data/lib/ey-core/requests/get_keypair_deployment.rb +21 -21
  377. data/lib/ey-core/requests/get_keypair_deployments.rb +29 -29
  378. data/lib/ey-core/requests/get_keypairs.rb +34 -34
  379. data/lib/ey-core/requests/get_legacy_alert.rb +21 -21
  380. data/lib/ey-core/requests/get_legacy_alerts.rb +29 -29
  381. data/lib/ey-core/requests/get_load_balancer.rb +21 -21
  382. data/lib/ey-core/requests/get_load_balancer_node.rb +21 -21
  383. data/lib/ey-core/requests/get_load_balancer_nodes.rb +30 -30
  384. data/lib/ey-core/requests/get_load_balancer_service.rb +21 -21
  385. data/lib/ey-core/requests/get_load_balancer_services.rb +30 -30
  386. data/lib/ey-core/requests/get_load_balancers.rb +29 -29
  387. data/lib/ey-core/requests/get_log.rb +21 -21
  388. data/lib/ey-core/requests/get_logical_database.rb +23 -23
  389. data/lib/ey-core/requests/get_logical_databases.rb +36 -36
  390. data/lib/ey-core/requests/get_logs.rb +37 -37
  391. data/lib/ey-core/requests/get_membership.rb +21 -21
  392. data/lib/ey-core/requests/get_memberships.rb +29 -29
  393. data/lib/ey-core/requests/get_message.rb +28 -28
  394. data/lib/ey-core/requests/get_messages.rb +27 -27
  395. data/lib/ey-core/requests/get_metadata.rb +22 -22
  396. data/lib/ey-core/requests/get_operational_contact.rb +21 -21
  397. data/lib/ey-core/requests/get_operational_contacts.rb +20 -20
  398. data/lib/ey-core/requests/get_plan_usages.rb +24 -24
  399. data/lib/ey-core/requests/get_possible_provider_locations.rb +19 -19
  400. data/lib/ey-core/requests/get_provider.rb +21 -21
  401. data/lib/ey-core/requests/get_provider_location.rb +29 -29
  402. data/lib/ey-core/requests/get_provider_locations.rb +28 -28
  403. data/lib/ey-core/requests/get_providers.rb +28 -28
  404. data/lib/ey-core/requests/get_request.rb +71 -71
  405. data/lib/ey-core/requests/get_requests.rb +29 -29
  406. data/lib/ey-core/requests/get_server.rb +34 -34
  407. data/lib/ey-core/requests/get_server_event.rb +20 -20
  408. data/lib/ey-core/requests/get_server_events.rb +28 -28
  409. data/lib/ey-core/requests/get_server_usages.rb +24 -24
  410. data/lib/ey-core/requests/get_servers.rb +25 -25
  411. data/lib/ey-core/requests/get_ssl_certificate.rb +23 -23
  412. data/lib/ey-core/requests/get_ssl_certificates.rb +28 -28
  413. data/lib/ey-core/requests/get_storage.rb +21 -21
  414. data/lib/ey-core/requests/get_storage_user.rb +21 -21
  415. data/lib/ey-core/requests/get_storage_users.rb +28 -28
  416. data/lib/ey-core/requests/get_storages.rb +28 -28
  417. data/lib/ey-core/requests/get_support_trial.rb +51 -51
  418. data/lib/ey-core/requests/get_task.rb +21 -21
  419. data/lib/ey-core/requests/get_tasks.rb +28 -28
  420. data/lib/ey-core/requests/get_token.rb +21 -21
  421. data/lib/ey-core/requests/get_token_by_login.rb +30 -30
  422. data/lib/ey-core/requests/get_tokens.rb +32 -32
  423. data/lib/ey-core/requests/get_untracked_server.rb +18 -18
  424. data/lib/ey-core/requests/get_untracked_servers.rb +24 -24
  425. data/lib/ey-core/requests/get_user.rb +21 -21
  426. data/lib/ey-core/requests/get_users.rb +42 -42
  427. data/lib/ey-core/requests/get_volume.rb +21 -21
  428. data/lib/ey-core/requests/get_volumes.rb +28 -28
  429. data/lib/ey-core/requests/reboot_server.rb +39 -39
  430. data/lib/ey-core/requests/reconcile_server.rb +39 -39
  431. data/lib/ey-core/requests/request_callback.rb +26 -26
  432. data/lib/ey-core/requests/reset_password.rb +31 -31
  433. data/lib/ey-core/requests/reset_server_state.rb +32 -32
  434. data/lib/ey-core/requests/restart_environment_app_servers.rb +38 -38
  435. data/lib/ey-core/requests/retrieve_docker_registry_credentials.rb +24 -24
  436. data/lib/ey-core/requests/run_cluster_application_action.rb +28 -28
  437. data/lib/ey-core/requests/run_environment_application_action.rb +29 -29
  438. data/lib/ey-core/requests/signup.rb +56 -56
  439. data/lib/ey-core/requests/start_server.rb +39 -39
  440. data/lib/ey-core/requests/stop_server.rb +39 -39
  441. data/lib/ey-core/requests/timeout_deployment.rb +27 -27
  442. data/lib/ey-core/requests/unassign_environment.rb +31 -31
  443. data/lib/ey-core/requests/update_addon.rb +28 -28
  444. data/lib/ey-core/requests/update_address.rb +29 -29
  445. data/lib/ey-core/requests/update_alert.rb +32 -32
  446. data/lib/ey-core/requests/update_application_archive.rb +23 -23
  447. data/lib/ey-core/requests/update_auto_scaling_alarm.rb +45 -45
  448. data/lib/ey-core/requests/update_auto_scaling_group.rb +45 -45
  449. data/lib/ey-core/requests/update_auto_scaling_policy.rb +46 -46
  450. data/lib/ey-core/requests/update_billing.rb +26 -26
  451. data/lib/ey-core/requests/update_blueprint.rb +29 -29
  452. data/lib/ey-core/requests/update_connector.rb +32 -32
  453. data/lib/ey-core/requests/update_environment.rb +17 -17
  454. data/lib/ey-core/requests/update_environment_variable.rb +25 -25
  455. data/lib/ey-core/requests/update_membership.rb +29 -29
  456. data/lib/ey-core/requests/update_provider_location.rb +29 -29
  457. data/lib/ey-core/requests/update_server.rb +29 -29
  458. data/lib/ey-core/requests/update_ssl_certificate.rb +25 -25
  459. data/lib/ey-core/requests/update_untracked_server.rb +24 -24
  460. data/lib/ey-core/requests/upload_file.rb +44 -44
  461. data/lib/ey-core/requests/upload_recipes_for_environment.rb +28 -28
  462. data/lib/ey-core/response.rb +59 -59
  463. data/lib/ey-core/response_cache.rb +29 -29
  464. data/lib/ey-core/subscribable.rb +60 -60
  465. data/lib/ey-core/test_helpers/account_helpers.rb +73 -73
  466. data/lib/ey-core/test_helpers/alert_helpers.rb +16 -16
  467. data/lib/ey-core/test_helpers/auto_scaling_helpers.rb +35 -35
  468. data/lib/ey-core/test_helpers/client_helpers.rb +40 -40
  469. data/lib/ey-core/test_helpers/cucumber.rb +3 -3
  470. data/lib/ey-core/test_helpers/resource_helpers.rb +196 -196
  471. data/lib/ey-core/test_helpers/rspec.rb +5 -5
  472. data/lib/ey-core/test_helpers.rb +17 -17
  473. data/lib/ey-core/token_authentication.rb +13 -13
  474. data/lib/ey-core/version.rb +5 -5
  475. data/lib/ey-core.rb +59 -59
  476. data/spec/account_spec.rb +65 -65
  477. data/spec/account_trial_spec.rb +17 -17
  478. data/spec/accounts_referrals_spec.rb +20 -20
  479. data/spec/accounts_spec.rb +113 -113
  480. data/spec/addons_and_vars_spec.rb +62 -62
  481. data/spec/addresses_spec.rb +57 -57
  482. data/spec/alerts_spec.rb +155 -155
  483. data/spec/application_archives_spec.rb +39 -39
  484. data/spec/applications_spec.rb +65 -65
  485. data/spec/auto_scaling_alarms_spec.rb +40 -40
  486. data/spec/auto_scaling_groups_spec.rb +28 -28
  487. data/spec/auto_scaling_policies_spec.rb +94 -94
  488. data/spec/billing_spec.rb +31 -31
  489. data/spec/blueprints_spec.rb +47 -47
  490. data/spec/client_spec.rb +16 -16
  491. data/spec/collection_spec.rb +43 -43
  492. data/spec/costs_spec.rb +22 -22
  493. data/spec/database_plan_usage_spec.rb +39 -39
  494. data/spec/database_server_snapshots_spec.rb +41 -41
  495. data/spec/database_server_usage_spec.rb +49 -49
  496. data/spec/database_servers_spec.rb +61 -61
  497. data/spec/database_services_spec.rb +76 -76
  498. data/spec/deployments_spec.rb +24 -24
  499. data/spec/docker_registry_credentials_spec.rb +16 -16
  500. data/spec/environment_plan_usage_spec.rb +38 -38
  501. data/spec/environments_spec.rb +212 -212
  502. data/spec/ey-core/cli/accounts_spec.rb +20 -20
  503. data/spec/ey-core/cli/helpers/server_sieve_spec.rb +226 -226
  504. data/spec/ey-core/cli/recipes/apply_spec.rb +34 -34
  505. data/spec/ey-core/cli/recipes/download_spec.rb +93 -93
  506. data/spec/ey-core/cli/recipes/upload_spec.rb +80 -80
  507. data/spec/features_spec.rb +79 -79
  508. data/spec/firewalls_spec.rb +84 -84
  509. data/spec/gems_spec.rb +11 -11
  510. data/spec/keypair_deployments_spec.rb +33 -33
  511. data/spec/keypairs_spec.rb +51 -51
  512. data/spec/legacy_alerts_spec.rb +44 -44
  513. data/spec/load_balancers_spec.rb +31 -31
  514. data/spec/logical_databases_spec.rb +38 -38
  515. data/spec/logs_spec.rb +44 -44
  516. data/spec/memberships_spec.rb +73 -73
  517. data/spec/messages_spec.rb +27 -27
  518. data/spec/metadata_spec.rb +11 -11
  519. data/spec/plan_usage_spec.rb +65 -65
  520. data/spec/provider_locations_spec.rb +85 -85
  521. data/spec/providers_spec.rb +105 -105
  522. data/spec/requests/upload_file_spec.rb +25 -25
  523. data/spec/requests_spec.rb +23 -23
  524. data/spec/reset_password_spec.rb +22 -22
  525. data/spec/server_events_spec.rb +31 -31
  526. data/spec/server_usage_spec.rb +70 -70
  527. data/spec/servers_spec.rb +202 -202
  528. data/spec/services_spec.rb +9 -9
  529. data/spec/signups_spec.rb +45 -45
  530. data/spec/spec_helper.rb +27 -27
  531. data/spec/ssl_certificates_spec.rb +94 -94
  532. data/spec/storages_spec.rb +57 -57
  533. data/spec/support/cli_helpers.rb +47 -47
  534. data/spec/support/core.rb +21 -21
  535. data/spec/support/coverage.rb +43 -43
  536. data/spec/support/fake_kernel.rb +21 -21
  537. data/spec/support/helpers.rb +1 -1
  538. data/spec/support/timecop.rb +8 -8
  539. data/spec/support_trial_spec.rb +33 -33
  540. data/spec/tokens_spec.rb +59 -59
  541. data/spec/untracked_servers_spec.rb +59 -59
  542. data/spec/users_spec.rb +108 -108
  543. metadata +7 -4
@@ -1,54 +1,54 @@
1
- Feature: Environment Variables
2
- In order to know current values of environment variables assigned to my Engine Yard environments
3
- As a User
4
- I want to be able to list the environment variables for environments which I'm associated
5
-
6
- Background:
7
- Given I'm an Engine Yard user
8
- And ey-core is configured with my cloud token
9
- And I have the following accounts:
10
- | Account Name |
11
- | one |
12
- | two |
13
- | three |
14
- And I have the following applications:
15
- | Account Name | Application Name |
16
- | one | blog_app |
17
- | two | todo_app |
18
- And I have the following environments:
19
- | Application Name | Environment Name |
20
- | blog_app | staging |
21
- | blog_app | production |
22
- | todo_app | staging |
23
- And I have the following environment variables:
24
- | Name | Value | Application Name | Environment Name | Sensitive |
25
- | SECRET_BASE | abc= | blog_app | staging | false |
26
- | DB_PASSWORD | 123qweasd!! | blog_app | staging | true |
27
- | SECRET_BASE | qwe= | blog_app | production | false |
28
- | DB_PASSWORD | 987qweasd!! | blog_app | production | true |
29
- | DB_PASSWORD | my_secure_password | todo_app | staging | true |
30
-
31
- Scenario: Listing all of my environment variables
32
- When I run `ey-core environment_variables`
33
- Then I see the name and value for all of my environments as well as name of associated environment and application
34
-
35
- Scenario Outline: Listing environment variables for a specific environment
36
- When I run `ey-core environment_variables <Environment Flag> staging`
37
- Then I see the environment variables associated with `staging` environment
38
- But I do not see environment variables associated with any other environments different from `staging`
39
-
40
- Examples:
41
- | Environment Flag |
42
- | -e |
43
- | --environment |
44
-
45
- Scenario Outline: Listing environment variables for a specific application
46
- When I run `ey-core environment_variables <Application Flag> blog_app`
47
- Then I see the environment variables associated with `blog_app` application
48
- But I do not see environment variables associated with any other applications different from `blog_app`
49
-
50
- Examples:
51
- | Application Flag |
52
- | -a |
53
- | --application |
54
-
1
+ Feature: Environment Variables
2
+ In order to know current values of environment variables assigned to my Engine Yard environments
3
+ As a User
4
+ I want to be able to list the environment variables for environments which I'm associated
5
+
6
+ Background:
7
+ Given I'm an Engine Yard user
8
+ And ey-core is configured with my cloud token
9
+ And I have the following accounts:
10
+ | Account Name |
11
+ | one |
12
+ | two |
13
+ | three |
14
+ And I have the following applications:
15
+ | Account Name | Application Name |
16
+ | one | blog_app |
17
+ | two | todo_app |
18
+ And I have the following environments:
19
+ | Application Name | Environment Name |
20
+ | blog_app | staging |
21
+ | blog_app | production |
22
+ | todo_app | staging |
23
+ And I have the following environment variables:
24
+ | Name | Value | Application Name | Environment Name | Sensitive |
25
+ | SECRET_BASE | abc= | blog_app | staging | false |
26
+ | DB_PASSWORD | 123qweasd!! | blog_app | staging | true |
27
+ | SECRET_BASE | qwe= | blog_app | production | false |
28
+ | DB_PASSWORD | 987qweasd!! | blog_app | production | true |
29
+ | DB_PASSWORD | my_secure_password | todo_app | staging | true |
30
+
31
+ Scenario: Listing all of my environment variables
32
+ When I run `ey-core environment_variables`
33
+ Then I see the name and value for all of my environments as well as name of associated environment and application
34
+
35
+ Scenario Outline: Listing environment variables for a specific environment
36
+ When I run `ey-core environment_variables <Environment Flag> staging`
37
+ Then I see the environment variables associated with `staging` environment
38
+ But I do not see environment variables associated with any other environments different from `staging`
39
+
40
+ Examples:
41
+ | Environment Flag |
42
+ | -e |
43
+ | --environment |
44
+
45
+ Scenario Outline: Listing environment variables for a specific application
46
+ When I run `ey-core environment_variables <Application Flag> blog_app`
47
+ Then I see the environment variables associated with `blog_app` application
48
+ But I do not see environment variables associated with any other applications different from `blog_app`
49
+
50
+ Examples:
51
+ | Application Flag |
52
+ | -a |
53
+ | --application |
54
+
@@ -1,30 +1,30 @@
1
- Feature: Environments
2
- In order to know what Engine Yard environments I can access
3
- As a User
4
- I want to be able to list the environments with which I'm associated
5
-
6
- Background:
7
- Given I'm an Engine Yard user
8
- And ey-core is configured with my cloud token
9
- And I have the following accounts:
10
- | Account Name |
11
- | one |
12
- | two |
13
- | three |
14
- And each of my accounts has several applications
15
- And each of my applications has an environment
16
-
17
- Scenario: Listing all of my environments
18
- When I run `ey-core environments`
19
- Then I see the name and ID for all of my environments
20
-
21
- Scenario Outline: Listing environments for a specific account
22
- When I run `ey-core environments <Account Flag> one`
23
- Then I see the environments in the one account
24
- But I do not see environments from other accounts
25
-
26
- Examples:
27
- | Account Flag |
28
- | -a |
29
- | --account |
30
-
1
+ Feature: Environments
2
+ In order to know what Engine Yard environments I can access
3
+ As a User
4
+ I want to be able to list the environments with which I'm associated
5
+
6
+ Background:
7
+ Given I'm an Engine Yard user
8
+ And ey-core is configured with my cloud token
9
+ And I have the following accounts:
10
+ | Account Name |
11
+ | one |
12
+ | two |
13
+ | three |
14
+ And each of my accounts has several applications
15
+ And each of my applications has an environment
16
+
17
+ Scenario: Listing all of my environments
18
+ When I run `ey-core environments`
19
+ Then I see the name and ID for all of my environments
20
+
21
+ Scenario Outline: Listing environments for a specific account
22
+ When I run `ey-core environments <Account Flag> one`
23
+ Then I see the environments in the one account
24
+ But I do not see environments from other accounts
25
+
26
+ Examples:
27
+ | Account Flag |
28
+ | -a |
29
+ | --account |
30
+
@@ -1,6 +1,6 @@
1
- Feature: Init
2
- This command is deprecated
3
-
4
- Scenario: Running init
5
- When I run `ey-core init`
6
- Then I am advised that this command has been deprecated
1
+ Feature: Init
2
+ This command is deprecated
3
+
4
+ Scenario: Running init
5
+ When I run `ey-core init`
6
+ Then I am advised that this command has been deprecated
@@ -1,6 +1,6 @@
1
- Feature: Login
2
- In order to interact with Engine Yard Cloud
3
- As a User
4
- I want to be able to log into the Cloud API
5
-
6
-
1
+ Feature: Login
2
+ In order to interact with Engine Yard Cloud
3
+ As a User
4
+ I want to be able to log into the Cloud API
5
+
6
+
data/features/scp.feature CHANGED
@@ -1,6 +1,6 @@
1
- Feature: Scp
2
- This command is deprecated
3
-
4
- Scenario: Running init
5
- When I run `ey-core init`
6
- Then I am advised that this command has been deprecated
1
+ Feature: Scp
2
+ This command is deprecated
3
+
4
+ Scenario: Running init
5
+ When I run `ey-core init`
6
+ Then I am advised that this command has been deprecated
@@ -1,37 +1,37 @@
1
- Given %(I'm an Engine Yard user) do
2
- memorize_fact(:me, create_user(client: client))
3
- true
4
- end
5
-
6
- Given %(ey-core is configured with my cloud token) do
7
- add_config_option(
8
- 'https://api.engineyard.com/' => current_user_hash['token']
9
- )
10
- end
11
-
12
- Given %(I'm associated with several accounts) do
13
- account1 = create_account(client: client, owner: current_user)
14
- account2 = create_account(client: client, owner: current_user)
15
- memorize_fact(:accounts, [account1, account2])
16
- end
17
-
18
- Given %r(^I have the following accounts:$) do |account_names|
19
- account_names.hashes.each do |account_hash|
20
- known_accounts.push(
21
- create_account(
22
- client: client,
23
- owner: current_user,
24
- account: {
25
- name: account_hash['Account Name']
26
- }
27
- )
28
- )
29
- end
30
- end
31
-
32
- Then %(I see the name and ID of each of my accounts) do
33
- recall_fact(:accounts).each do |account|
34
- expect(output_text).to include(account.id)
35
- expect(output_text).to include(account.name)
36
- end
37
- end
1
+ Given %(I'm an Engine Yard user) do
2
+ memorize_fact(:me, create_user(client: client))
3
+ true
4
+ end
5
+
6
+ Given %(ey-core is configured with my cloud token) do
7
+ add_config_option(
8
+ 'https://api.engineyard.com/' => current_user_hash['token']
9
+ )
10
+ end
11
+
12
+ Given %(I'm associated with several accounts) do
13
+ account1 = create_account(client: client, owner: current_user)
14
+ account2 = create_account(client: client, owner: current_user)
15
+ memorize_fact(:accounts, [account1, account2])
16
+ end
17
+
18
+ Given %r(^I have the following accounts:$) do |account_names|
19
+ account_names.hashes.each do |account_hash|
20
+ known_accounts.push(
21
+ create_account(
22
+ client: client,
23
+ owner: current_user,
24
+ account: {
25
+ name: account_hash['Account Name']
26
+ }
27
+ )
28
+ )
29
+ end
30
+ end
31
+
32
+ Then %(I see the name and ID of each of my accounts) do
33
+ recall_fact(:accounts).each do |account|
34
+ expect(output_text).to include(account.id)
35
+ expect(output_text).to include(account.name)
36
+ end
37
+ end
@@ -1,39 +1,39 @@
1
- Given %(each of my accounts has several applications) do
2
- known_accounts.each do |account|
3
- known_apps.push(
4
- create_application(account: account, name: "#{account.name}_1")
5
- )
6
-
7
- known_apps.push(
8
- create_application(account: account, name: "#{account.name}_2")
9
- )
10
- end
11
- end
12
-
13
- Given(/^I have the following applications:$/) do |applications|
14
- applications.hashes.each do |application_hash|
15
- account = known_accounts.find { |acc| acc.name == application_hash['Account Name'] }
16
- known_apps.push(create_application(account: account, name: application_hash['Application Name']))
17
- end
18
- end
19
-
20
- Then %(I see the name and ID for all of my applications) do
21
- known_apps.each do |app|
22
- expect(output_text).to match(/#{Regexp.escape(app.id.to_s)}\s+\|\s+#{Regexp.escape(app.name)}/)
23
- end
24
- end
25
-
26
- Then %(I see the applications in the one account) do
27
- account_named('one').applications.all.each do |app|
28
- expect(output_text).to match(/#{Regexp.escape(app.id.to_s)}\s+\|\s+#{Regexp.escape(app.name)}/)
29
- end
30
- end
31
-
32
- Then %(I do not see applications from other accounts) do
33
- two = account_named('two').applications.all.to_a
34
- three = account_named('three').applications.all.to_a
35
-
36
- (two + three).each do |app|
37
- expect(output_text).not_to match(/#{Regexp.escape(app.id.to_s)}\s+\|\s+#{Regexp.escape(app.name)}/)
38
- end
39
- end
1
+ Given %(each of my accounts has several applications) do
2
+ known_accounts.each do |account|
3
+ known_apps.push(
4
+ create_application(account: account, name: "#{account.name}_1")
5
+ )
6
+
7
+ known_apps.push(
8
+ create_application(account: account, name: "#{account.name}_2")
9
+ )
10
+ end
11
+ end
12
+
13
+ Given(/^I have the following applications:$/) do |applications|
14
+ applications.hashes.each do |application_hash|
15
+ account = known_accounts.find { |acc| acc.name == application_hash['Account Name'] }
16
+ known_apps.push(create_application(account: account, name: application_hash['Application Name']))
17
+ end
18
+ end
19
+
20
+ Then %(I see the name and ID for all of my applications) do
21
+ known_apps.each do |app|
22
+ expect(output_text).to match(/#{Regexp.escape(app.id.to_s)}\s+\|\s+#{Regexp.escape(app.name)}/)
23
+ end
24
+ end
25
+
26
+ Then %(I see the applications in the one account) do
27
+ account_named('one').applications.all.each do |app|
28
+ expect(output_text).to match(/#{Regexp.escape(app.id.to_s)}\s+\|\s+#{Regexp.escape(app.name)}/)
29
+ end
30
+ end
31
+
32
+ Then %(I do not see applications from other accounts) do
33
+ two = account_named('two').applications.all.to_a
34
+ three = account_named('three').applications.all.to_a
35
+
36
+ (two + three).each do |app|
37
+ expect(output_text).not_to match(/#{Regexp.escape(app.id.to_s)}\s+\|\s+#{Regexp.escape(app.name)}/)
38
+ end
39
+ end
@@ -1,11 +1,11 @@
1
- Then %(I should see my user ID) do
2
- expect(output_text).to match(/#{Regexp.escape(current_user.id)}/)
3
- end
4
-
5
- Then %(I should see my email address) do
6
- expect(output_text).to match(/#{Regexp.escape(current_user.email)}/)
7
- end
8
-
9
- Then %(I should see my name) do
10
- expect(output_text).to match(/#{Regexp.escape(current_user.name)}/)
11
- end
1
+ Then %(I should see my user ID) do
2
+ expect(output_text).to match(/#{Regexp.escape(current_user.id)}/)
3
+ end
4
+
5
+ Then %(I should see my email address) do
6
+ expect(output_text).to match(/#{Regexp.escape(current_user.email)}/)
7
+ end
8
+
9
+ Then %(I should see my name) do
10
+ expect(output_text).to match(/#{Regexp.escape(current_user.name)}/)
11
+ end
@@ -1,3 +1,3 @@
1
- Then %(I am advised that this command has been deprecated) do
2
- expect(output_text).to match(/.*This command is deprecated.*/)
3
- end
1
+ Then %(I am advised that this command has been deprecated) do
2
+ expect(output_text).to match(/.*This command is deprecated.*/)
3
+ end
@@ -1,3 +1,3 @@
1
- Then %(I see the docker login command) do
2
- expect(output_text).to match("docker login -u foo -p bar https://012345678901.dkr.ecr.us-east-1.amazonaws.com")
3
- end
1
+ Then %(I see the docker login command) do
2
+ expect(output_text).to match("docker login -u foo -p bar https://012345678901.dkr.ecr.us-east-1.amazonaws.com")
3
+ end
@@ -1,51 +1,51 @@
1
- Given(/^I have the following environment variables:$/) do |variables|
2
- variables.hashes.each do |variable_hash|
3
- application = known_apps.find { |app| app.name == variable_hash['Application Name'] }
4
- environment = known_environments.find { |env| env.name == variable_hash['Environment Name'] }
5
- known_environment_variables.push(
6
- create_environment_variable(
7
- application: application,
8
- environment: environment,
9
- environment_variable: {
10
- name: variable_hash['Name'],
11
- value: variable_hash['Value'],
12
- sensitive: variable_hash['Sensitive']
13
- }
14
- )
15
- )
16
- end
17
- end
18
-
19
- Then(/^I see the name and value for all of my environments as well as name of associated environment and application$/) do
20
- known_environment_variables.each do |environment_variable|
21
- expect(output_text).to match(match_environment_variable_regexp(environment_variable))
22
- end
23
- end
24
-
25
- Then(/^I see the environment variables associated with `(\w+)` environment$/) do |environment_name|
26
- known_environment_variables.each do |environment_variable|
27
- next unless environment_variable.environment_name == environment_name
28
- expect(output_text).to match(match_environment_variable_regexp(environment_variable))
29
- end
30
- end
31
-
32
- Then(/^I do not see environment variables associated with any other environments different from `(\w+)`$/) do |environment_name|
33
- known_environment_variables.each do |environment_variable|
34
- next if environment_variable.environment_name == environment_name
35
- expect(output_text).not_to match(match_environment_variable_regexp(environment_variable))
36
- end
37
- end
38
-
39
- Then(/^I see the environment variables associated with `(\w+)` application$/) do |application_name|
40
- known_environment_variables.each do |environment_variable|
41
- next unless environment_variable.application_name == application_name
42
- expect(output_text).to match(match_environment_variable_regexp(environment_variable))
43
- end
44
- end
45
-
46
- Then(/^I do not see environment variables associated with any other applications different from `(\w+)`$/) do |application_name|
47
- known_environment_variables.each do |environment_variable|
48
- next if environment_variable.application_name == application_name
49
- expect(output_text).not_to match(match_environment_variable_regexp(environment_variable))
50
- end
51
- end
1
+ Given(/^I have the following environment variables:$/) do |variables|
2
+ variables.hashes.each do |variable_hash|
3
+ application = known_apps.find { |app| app.name == variable_hash['Application Name'] }
4
+ environment = known_environments.find { |env| env.name == variable_hash['Environment Name'] }
5
+ known_environment_variables.push(
6
+ create_environment_variable(
7
+ application: application,
8
+ environment: environment,
9
+ environment_variable: {
10
+ name: variable_hash['Name'],
11
+ value: variable_hash['Value'],
12
+ sensitive: variable_hash['Sensitive']
13
+ }
14
+ )
15
+ )
16
+ end
17
+ end
18
+
19
+ Then(/^I see the name and value for all of my environments as well as name of associated environment and application$/) do
20
+ known_environment_variables.each do |environment_variable|
21
+ expect(output_text).to match(match_environment_variable_regexp(environment_variable))
22
+ end
23
+ end
24
+
25
+ Then(/^I see the environment variables associated with `(\w+)` environment$/) do |environment_name|
26
+ known_environment_variables.each do |environment_variable|
27
+ next unless environment_variable.environment_name == environment_name
28
+ expect(output_text).to match(match_environment_variable_regexp(environment_variable))
29
+ end
30
+ end
31
+
32
+ Then(/^I do not see environment variables associated with any other environments different from `(\w+)`$/) do |environment_name|
33
+ known_environment_variables.each do |environment_variable|
34
+ next if environment_variable.environment_name == environment_name
35
+ expect(output_text).not_to match(match_environment_variable_regexp(environment_variable))
36
+ end
37
+ end
38
+
39
+ Then(/^I see the environment variables associated with `(\w+)` application$/) do |application_name|
40
+ known_environment_variables.each do |environment_variable|
41
+ next unless environment_variable.application_name == application_name
42
+ expect(output_text).to match(match_environment_variable_regexp(environment_variable))
43
+ end
44
+ end
45
+
46
+ Then(/^I do not see environment variables associated with any other applications different from `(\w+)`$/) do |application_name|
47
+ known_environment_variables.each do |environment_variable|
48
+ next if environment_variable.application_name == application_name
49
+ expect(output_text).not_to match(match_environment_variable_regexp(environment_variable))
50
+ end
51
+ end
@@ -1,52 +1,52 @@
1
- Given %(each of my applications has an environment) do
2
- known_accounts.each do |account|
3
- account.applications.each do |app|
4
- known_environments.push(
5
- create_environment(
6
- account: account,
7
- application: app,
8
- environment: {
9
- name: "#{app.name}_env"
10
- }
11
- )
12
- )
13
- end
14
- end
15
- end
16
-
17
- Given(/^I have the following environments:$/) do |environments|
18
- environments.hashes.each do |environment_hash|
19
- application = known_apps.find { |app| app.name == environment_hash['Application Name'] }
20
- known_environments.push(
21
- create_environment(
22
- account: application.account,
23
- application: application,
24
- environment: {
25
- name: environment_hash['Environment Name']
26
- }
27
- )
28
- )
29
- end
30
- end
31
-
32
- Then %(I see the name and ID for all of my environments) do
33
- known_environments.each do |environment|
34
- expect(output_text).to match(/#{Regexp.escape(environment.id.to_s)}\s+\|\s+#{Regexp.escape(environment.name)}/)
35
- end
36
- end
37
-
38
- Then %(I see the environments in the one account) do
39
- account_named('one').environments.all.each do |environment|
40
- expect(output_text).to match(/#{Regexp.escape(environment.id.to_s)}\s+\|\s+#{Regexp.escape(environment.name)}/)
41
- end
42
- end
43
-
44
- Then %(I do not see environments from other accounts) do
45
- two = account_named('two').environments.all.to_a
46
- three = account_named('three').environments.all.to_a
47
-
48
- (two + three).each do |environment|
49
- expect(output_text).not_to match(/#{Regexp.escape(environment.id.to_s)}\s+\|\s+#{Regexp.escape(environment.name)}/)
50
- end
51
-
52
- end
1
+ Given %(each of my applications has an environment) do
2
+ known_accounts.each do |account|
3
+ account.applications.each do |app|
4
+ known_environments.push(
5
+ create_environment(
6
+ account: account,
7
+ application: app,
8
+ environment: {
9
+ name: "#{app.name}_env"
10
+ }
11
+ )
12
+ )
13
+ end
14
+ end
15
+ end
16
+
17
+ Given(/^I have the following environments:$/) do |environments|
18
+ environments.hashes.each do |environment_hash|
19
+ application = known_apps.find { |app| app.name == environment_hash['Application Name'] }
20
+ known_environments.push(
21
+ create_environment(
22
+ account: application.account,
23
+ application: application,
24
+ environment: {
25
+ name: environment_hash['Environment Name']
26
+ }
27
+ )
28
+ )
29
+ end
30
+ end
31
+
32
+ Then %(I see the name and ID for all of my environments) do
33
+ known_environments.each do |environment|
34
+ expect(output_text).to match(/#{Regexp.escape(environment.id.to_s)}\s+\|\s+#{Regexp.escape(environment.name)}/)
35
+ end
36
+ end
37
+
38
+ Then %(I see the environments in the one account) do
39
+ account_named('one').environments.all.each do |environment|
40
+ expect(output_text).to match(/#{Regexp.escape(environment.id.to_s)}\s+\|\s+#{Regexp.escape(environment.name)}/)
41
+ end
42
+ end
43
+
44
+ Then %(I do not see environments from other accounts) do
45
+ two = account_named('two').environments.all.to_a
46
+ three = account_named('three').environments.all.to_a
47
+
48
+ (two + three).each do |environment|
49
+ expect(output_text).not_to match(/#{Regexp.escape(environment.id.to_s)}\s+\|\s+#{Regexp.escape(environment.name)}/)
50
+ end
51
+
52
+ end
@@ -1,3 +1,3 @@
1
- Then %(I see the current ey-core version) do
2
- expect(output_text).to include(Ey::Core::VERSION)
3
- end
1
+ Then %(I see the current ey-core version) do
2
+ expect(output_text).to include(Ey::Core::VERSION)
3
+ end