ey-core 3.6.4 → 3.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +23 -23
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +23 -23
- data/CHANGELOG.md +189 -189
- data/Gemfile +26 -20
- data/Guardfile +15 -15
- data/LICENSE.txt +19 -19
- data/README.md +135 -135
- data/Rakefile +18 -18
- data/bin/ey-core +4 -4
- data/docs/development.md +6 -0
- data/examples/add_instance.rb +74 -74
- data/examples/boot_env.rb +60 -60
- data/examples/console/README.md +14 -14
- data/examples/console/address.md +51 -51
- data/examples/stop_env.rb +51 -51
- data/examples/terminate_instance.rb +62 -62
- data/ey-core.gemspec +52 -52
- data/features/accounts.feature +13 -13
- data/features/applications.feature +29 -29
- data/features/current_user.feature +14 -14
- data/features/docker_registry_credentials.feature +21 -21
- data/features/environment_variables.feature +54 -54
- data/features/environments.feature +30 -30
- data/features/init.feature +6 -6
- data/features/login.feature +6 -6
- data/features/scp.feature +6 -6
- data/features/step_definitions/accounts_steps.rb +37 -37
- data/features/step_definitions/applications_steps.rb +39 -39
- data/features/step_definitions/current_user_steps.rb +11 -11
- data/features/step_definitions/deprecated_command_steps.rb +3 -3
- data/features/step_definitions/docker_registry_credentials_steps.rb +3 -3
- data/features/step_definitions/environment_variables_steps.rb +51 -51
- data/features/step_definitions/environments_steps.rb +52 -52
- data/features/step_definitions/version_steps.rb +3 -3
- data/features/support/account_helpers.rb +89 -89
- data/features/support/app_helpers.rb +19 -19
- data/features/support/aruba.rb +1 -1
- data/features/support/boilerplate.rb +1 -1
- data/features/support/client_helpers.rb +36 -36
- data/features/support/config_file_helpers.rb +42 -42
- data/features/support/core.rb +19 -19
- data/features/support/deployment_helpers.rb +19 -19
- data/features/support/env.rb +40 -40
- data/features/support/environment_helpers.rb +23 -23
- data/features/support/environment_variable_helpers.rb +20 -20
- data/features/support/fake_kernel.rb +23 -23
- data/features/support/io.rb +5 -5
- data/features/support/mock_api.rb +20 -20
- data/features/support/output_helpers.rb +7 -7
- data/features/support/resource_helpers.rb +201 -201
- data/features/support/server_helpers.rb +27 -27
- data/features/version.feature +8 -8
- data/features/whoami.feature +14 -14
- data/lib/ey-core/associations.rb +155 -155
- data/lib/ey-core/cli/accounts.rb +17 -17
- data/lib/ey-core/cli/applications.rb +36 -36
- data/lib/ey-core/cli/console.rb +28 -28
- data/lib/ey-core/cli/current_user.rb +16 -16
- data/lib/ey-core/cli/deploy.rb +126 -126
- data/lib/ey-core/cli/docker_registry_login.rb +29 -29
- data/lib/ey-core/cli/environment_variables.rb +71 -71
- data/lib/ey-core/cli/environments.rb +39 -39
- data/lib/ey-core/cli/errors.rb +11 -11
- data/lib/ey-core/cli/help.rb +30 -30
- data/lib/ey-core/cli/helpers/archive.rb +70 -70
- data/lib/ey-core/cli/helpers/chef.rb +51 -51
- data/lib/ey-core/cli/helpers/core.rb +225 -225
- data/lib/ey-core/cli/helpers/deprecated.rb +39 -39
- data/lib/ey-core/cli/helpers/log_streaming.rb +41 -41
- data/lib/ey-core/cli/helpers/server_sieve.rb +83 -83
- data/lib/ey-core/cli/helpers/stream_printer.rb +42 -42
- data/lib/ey-core/cli/init.rb +14 -14
- data/lib/ey-core/cli/login.rb +38 -38
- data/lib/ey-core/cli/logout.rb +22 -22
- data/lib/ey-core/cli/logs.rb +70 -70
- data/lib/ey-core/cli/main.rb +66 -66
- data/lib/ey-core/cli/recipes/apply.rb +65 -65
- data/lib/ey-core/cli/recipes/download.rb +52 -52
- data/lib/ey-core/cli/recipes/main.rb +21 -21
- data/lib/ey-core/cli/recipes/upload.rb +78 -78
- data/lib/ey-core/cli/recipes.rb +10 -10
- data/lib/ey-core/cli/scp.rb +14 -14
- data/lib/ey-core/cli/servers.rb +59 -59
- data/lib/ey-core/cli/ssh.rb +156 -156
- data/lib/ey-core/cli/status.rb +60 -60
- data/lib/ey-core/cli/subcommand.rb +53 -53
- data/lib/ey-core/cli/timeout_deploy.rb +58 -58
- data/lib/ey-core/cli/version.rb +16 -16
- data/lib/ey-core/cli/web/disable.rb +49 -49
- data/lib/ey-core/cli/web/enable.rb +46 -46
- data/lib/ey-core/cli/web/main.rb +21 -21
- data/lib/ey-core/cli/web/restart.rb +42 -42
- data/lib/ey-core/cli/web.rb +10 -10
- data/lib/ey-core/cli/whoami.rb +12 -12
- data/lib/ey-core/cli.rb +8 -8
- data/lib/ey-core/client/mock.rb +306 -306
- data/lib/ey-core/client/real.rb +93 -93
- data/lib/ey-core/client.rb +469 -469
- data/lib/ey-core/collection.rb +131 -131
- data/lib/ey-core/collections/account_cancellations.rb +6 -6
- data/lib/ey-core/collections/account_referrals.rb +10 -10
- data/lib/ey-core/collections/accounts.rb +8 -8
- data/lib/ey-core/collections/addons.rb +16 -16
- data/lib/ey-core/collections/addresses.rb +9 -9
- data/lib/ey-core/collections/alerts.rb +9 -9
- data/lib/ey-core/collections/application_archives.rb +9 -9
- data/lib/ey-core/collections/application_deployments.rb +9 -9
- data/lib/ey-core/collections/applications.rb +9 -9
- data/lib/ey-core/collections/auto_scaling_alarms.rb +8 -8
- data/lib/ey-core/collections/auto_scaling_groups.rb +8 -8
- data/lib/ey-core/collections/auto_scaling_policies.rb +33 -33
- data/lib/ey-core/collections/backup_files.rb +9 -9
- data/lib/ey-core/collections/blueprints.rb +9 -9
- data/lib/ey-core/collections/components.rb +9 -9
- data/lib/ey-core/collections/contacts.rb +9 -9
- data/lib/ey-core/collections/container_clusters.rb +9 -9
- data/lib/ey-core/collections/container_service_deployments.rb +17 -17
- data/lib/ey-core/collections/costs.rb +8 -8
- data/lib/ey-core/collections/database_plan_usages.rb +7 -7
- data/lib/ey-core/collections/database_server_revisions.rb +7 -7
- data/lib/ey-core/collections/database_server_snapshots.rb +17 -17
- data/lib/ey-core/collections/database_server_usages.rb +7 -7
- data/lib/ey-core/collections/database_servers.rb +9 -9
- data/lib/ey-core/collections/database_services.rb +9 -9
- data/lib/ey-core/collections/deployments.rb +8 -8
- data/lib/ey-core/collections/environment_plan_usages.rb +7 -7
- data/lib/ey-core/collections/environment_variables.rb +8 -8
- data/lib/ey-core/collections/environments.rb +15 -15
- data/lib/ey-core/collections/features.rb +9 -9
- data/lib/ey-core/collections/firewall_rules.rb +9 -9
- data/lib/ey-core/collections/firewalls.rb +9 -9
- data/lib/ey-core/collections/gems.rb +6 -6
- data/lib/ey-core/collections/keypair_deployments.rb +9 -9
- data/lib/ey-core/collections/keypairs.rb +9 -9
- data/lib/ey-core/collections/legacy_alerts.rb +9 -9
- data/lib/ey-core/collections/load_balancer_nodes.rb +9 -9
- data/lib/ey-core/collections/load_balancer_services.rb +9 -9
- data/lib/ey-core/collections/load_balancers.rb +16 -16
- data/lib/ey-core/collections/logical_databases.rb +16 -16
- data/lib/ey-core/collections/logs.rb +9 -9
- data/lib/ey-core/collections/memberships.rb +9 -9
- data/lib/ey-core/collections/messages.rb +9 -9
- data/lib/ey-core/collections/plan_usages.rb +7 -7
- data/lib/ey-core/collections/provider_locations.rb +13 -13
- data/lib/ey-core/collections/providers.rb +15 -15
- data/lib/ey-core/collections/requests.rb +10 -10
- data/lib/ey-core/collections/server_events.rb +9 -9
- data/lib/ey-core/collections/server_usages.rb +7 -7
- data/lib/ey-core/collections/servers.rb +13 -13
- data/lib/ey-core/collections/services.rb +14 -14
- data/lib/ey-core/collections/ssl_certificates.rb +9 -9
- data/lib/ey-core/collections/storage_users.rb +10 -10
- data/lib/ey-core/collections/storages.rb +9 -9
- data/lib/ey-core/collections/tasks.rb +9 -9
- data/lib/ey-core/collections/tokens.rb +9 -9
- data/lib/ey-core/collections/untracked_addresses.rb +4 -4
- data/lib/ey-core/collections/untracked_servers.rb +9 -9
- data/lib/ey-core/collections/users.rb +12 -12
- data/lib/ey-core/collections/volumes.rb +9 -9
- data/lib/ey-core/logger.rb +31 -31
- data/lib/ey-core/memory_cache.rb +17 -17
- data/lib/ey-core/mock/helper.rb +104 -104
- data/lib/ey-core/mock/params.rb +31 -31
- data/lib/ey-core/mock/resources.rb +92 -92
- data/lib/ey-core/mock/searching.rb +115 -115
- data/lib/ey-core/mock/util.rb +23 -23
- data/lib/ey-core/model.rb +44 -44
- data/lib/ey-core/models/account.rb +80 -80
- data/lib/ey-core/models/account_cancellation.rb +6 -6
- data/lib/ey-core/models/account_referral.rb +8 -8
- data/lib/ey-core/models/account_trial.rb +15 -15
- data/lib/ey-core/models/addon.rb +37 -37
- data/lib/ey-core/models/address.rb +59 -59
- data/lib/ey-core/models/alert.rb +99 -99
- data/lib/ey-core/models/application.rb +33 -33
- data/lib/ey-core/models/application_archive.rb +67 -67
- data/lib/ey-core/models/application_deployment.rb +18 -18
- data/lib/ey-core/models/auto_scaling_alarm.rb +54 -54
- data/lib/ey-core/models/auto_scaling_group.rb +75 -75
- data/lib/ey-core/models/backup_file.rb +52 -52
- data/lib/ey-core/models/base_auto_scaling_policy.rb +61 -61
- data/lib/ey-core/models/billing.rb +27 -27
- data/lib/ey-core/models/blueprint.rb +30 -30
- data/lib/ey-core/models/component.rb +11 -11
- data/lib/ey-core/models/contact.rb +14 -14
- data/lib/ey-core/models/container_service_deployment.rb +17 -17
- data/lib/ey-core/models/cost.rb +16 -16
- data/lib/ey-core/models/database_plan_usage.rb +10 -10
- data/lib/ey-core/models/database_server.rb +56 -56
- data/lib/ey-core/models/database_server_revision.rb +10 -10
- data/lib/ey-core/models/database_server_snapshot.rb +43 -43
- data/lib/ey-core/models/database_server_usage.rb +15 -15
- data/lib/ey-core/models/database_service.rb +52 -52
- data/lib/ey-core/models/deployment.rb +31 -31
- data/lib/ey-core/models/environment.rb +248 -248
- data/lib/ey-core/models/environment_plan_usage.rb +10 -10
- data/lib/ey-core/models/environment_variable.rb +29 -29
- data/lib/ey-core/models/feature.rb +33 -33
- data/lib/ey-core/models/firewall.rb +46 -46
- data/lib/ey-core/models/firewall_rule.rb +41 -41
- data/lib/ey-core/models/gem.rb +5 -5
- data/lib/ey-core/models/keypair.rb +38 -38
- data/lib/ey-core/models/keypair_deployment.rb +26 -26
- data/lib/ey-core/models/legacy_alert.rb +12 -12
- data/lib/ey-core/models/load_balancer.rb +43 -43
- data/lib/ey-core/models/load_balancer_node.rb +17 -17
- data/lib/ey-core/models/load_balancer_service.rb +22 -22
- data/lib/ey-core/models/log.rb +44 -44
- data/lib/ey-core/models/logical_database.rb +40 -40
- data/lib/ey-core/models/membership.rb +49 -49
- data/lib/ey-core/models/message.rb +27 -27
- data/lib/ey-core/models/plan_usage.rb +14 -14
- data/lib/ey-core/models/provider.rb +59 -59
- data/lib/ey-core/models/provider_location.rb +24 -24
- data/lib/ey-core/models/request.rb +109 -109
- data/lib/ey-core/models/server.rb +151 -151
- data/lib/ey-core/models/server_event.rb +11 -11
- data/lib/ey-core/models/server_usage.rb +15 -15
- data/lib/ey-core/models/service.rb +10 -10
- data/lib/ey-core/models/simple_auto_scaling_policy.rb +24 -24
- data/lib/ey-core/models/ssl_certificate.rb +44 -44
- data/lib/ey-core/models/step_auto_scaling_policy.rb +24 -24
- data/lib/ey-core/models/storage.rb +38 -38
- data/lib/ey-core/models/storage_user.rb +44 -44
- data/lib/ey-core/models/support_trial.rb +10 -10
- data/lib/ey-core/models/target_auto_scaling_policy.rb +24 -24
- data/lib/ey-core/models/task.rb +35 -35
- data/lib/ey-core/models/token.rb +24 -24
- data/lib/ey-core/models/untracked_address.rb +24 -24
- data/lib/ey-core/models/untracked_server.rb +45 -45
- data/lib/ey-core/models/user.rb +39 -39
- data/lib/ey-core/models/volume.rb +20 -20
- data/lib/ey-core/request.rb +21 -21
- data/lib/ey-core/request_failure.rb +11 -11
- data/lib/ey-core/requests/acknowledge_alert.rb +29 -29
- data/lib/ey-core/requests/apply_environment_updates.rb +54 -54
- data/lib/ey-core/requests/apply_server_updates.rb +52 -52
- data/lib/ey-core/requests/attach_address.rb +53 -53
- data/lib/ey-core/requests/authorized_channel.rb +22 -22
- data/lib/ey-core/requests/blueprint_environment.rb +72 -72
- data/lib/ey-core/requests/boot_environment.rb +187 -187
- data/lib/ey-core/requests/bootstrap_logical_database.rb +80 -80
- data/lib/ey-core/requests/cancel_account.rb +33 -33
- data/lib/ey-core/requests/change_environment_maintenance.rb +38 -38
- data/lib/ey-core/requests/create_account.rb +38 -38
- data/lib/ey-core/requests/create_addon.rb +35 -35
- data/lib/ey-core/requests/create_address.rb +54 -54
- data/lib/ey-core/requests/create_alert.rb +63 -63
- data/lib/ey-core/requests/create_application.rb +73 -73
- data/lib/ey-core/requests/create_application_archive.rb +44 -44
- data/lib/ey-core/requests/create_auto_scaling_alarm.rb +69 -69
- data/lib/ey-core/requests/create_auto_scaling_group.rb +62 -62
- data/lib/ey-core/requests/create_auto_scaling_policy.rb +68 -68
- data/lib/ey-core/requests/create_backup_file.rb +52 -52
- data/lib/ey-core/requests/create_database_server.rb +72 -72
- data/lib/ey-core/requests/create_database_service.rb +57 -57
- data/lib/ey-core/requests/create_database_service_snapshot.rb +69 -69
- data/lib/ey-core/requests/create_environment.rb +77 -77
- data/lib/ey-core/requests/create_environment_variable.rb +39 -39
- data/lib/ey-core/requests/create_firewall.rb +62 -62
- data/lib/ey-core/requests/create_firewall_rule.rb +60 -60
- data/lib/ey-core/requests/create_keypair.rb +42 -42
- data/lib/ey-core/requests/create_keypair_deployment.rb +36 -36
- data/lib/ey-core/requests/create_load_balancer.rb +62 -62
- data/lib/ey-core/requests/create_log.rb +53 -53
- data/lib/ey-core/requests/create_logical_database.rb +56 -56
- data/lib/ey-core/requests/create_membership.rb +47 -47
- data/lib/ey-core/requests/create_message.rb +35 -35
- data/lib/ey-core/requests/create_password_reset.rb +38 -38
- data/lib/ey-core/requests/create_provider.rb +90 -90
- data/lib/ey-core/requests/create_server.rb +121 -121
- data/lib/ey-core/requests/create_ssl_certificate.rb +83 -83
- data/lib/ey-core/requests/create_storage.rb +64 -64
- data/lib/ey-core/requests/create_storage_user.rb +64 -64
- data/lib/ey-core/requests/create_task.rb +55 -55
- data/lib/ey-core/requests/create_token.rb +24 -24
- data/lib/ey-core/requests/create_untracked_address.rb +50 -50
- data/lib/ey-core/requests/create_untracked_server.rb +39 -39
- data/lib/ey-core/requests/create_user.rb +54 -54
- data/lib/ey-core/requests/deploy_environment_application.rb +61 -61
- data/lib/ey-core/requests/deprovision_environment.rb +17 -17
- data/lib/ey-core/requests/destroy_addon.rb +24 -24
- data/lib/ey-core/requests/destroy_auto_scaling_alarm.rb +49 -49
- data/lib/ey-core/requests/destroy_auto_scaling_group.rb +44 -44
- data/lib/ey-core/requests/destroy_auto_scaling_policy.rb +49 -49
- data/lib/ey-core/requests/destroy_blueprint.rb +22 -22
- data/lib/ey-core/requests/destroy_database_server.rb +41 -41
- data/lib/ey-core/requests/destroy_database_server_snapshot.rb +42 -42
- data/lib/ey-core/requests/destroy_database_service.rb +57 -57
- data/lib/ey-core/requests/destroy_environment.rb +43 -43
- data/lib/ey-core/requests/destroy_firewall.rb +41 -41
- data/lib/ey-core/requests/destroy_firewall_rule.rb +41 -41
- data/lib/ey-core/requests/destroy_load_balancer.rb +30 -30
- data/lib/ey-core/requests/destroy_logical_database.rb +41 -41
- data/lib/ey-core/requests/destroy_provider.rb +34 -34
- data/lib/ey-core/requests/destroy_server.rb +48 -48
- data/lib/ey-core/requests/destroy_ssl_certificate.rb +28 -28
- data/lib/ey-core/requests/destroy_storage.rb +33 -33
- data/lib/ey-core/requests/destroy_storage_user.rb +38 -38
- data/lib/ey-core/requests/destroy_user.rb +29 -29
- data/lib/ey-core/requests/detach_address.rb +48 -48
- data/lib/ey-core/requests/disable_feature.rb +30 -30
- data/lib/ey-core/requests/discover_container_service_deployments.rb +71 -71
- data/lib/ey-core/requests/discover_database_server.rb +66 -66
- data/lib/ey-core/requests/discover_database_server_snapshots.rb +69 -69
- data/lib/ey-core/requests/discover_provider_location.rb +57 -57
- data/lib/ey-core/requests/discover_server.rb +60 -60
- data/lib/ey-core/requests/download_file.rb +25 -25
- data/lib/ey-core/requests/enable_feature.rb +35 -35
- data/lib/ey-core/requests/get_account.rb +29 -29
- data/lib/ey-core/requests/get_account_cancellation.rb +21 -21
- data/lib/ey-core/requests/get_account_referrals.rb +28 -28
- data/lib/ey-core/requests/get_account_trial.rb +32 -32
- data/lib/ey-core/requests/get_accounts.rb +42 -42
- data/lib/ey-core/requests/get_addon.rb +25 -25
- data/lib/ey-core/requests/get_addons.rb +24 -24
- data/lib/ey-core/requests/get_address.rb +25 -25
- data/lib/ey-core/requests/get_addresses.rb +27 -27
- data/lib/ey-core/requests/get_alert.rb +21 -21
- data/lib/ey-core/requests/get_alerting_environments.rb +41 -41
- data/lib/ey-core/requests/get_alerts.rb +44 -44
- data/lib/ey-core/requests/get_api_token.rb +19 -19
- data/lib/ey-core/requests/get_application.rb +21 -21
- data/lib/ey-core/requests/get_application_archive.rb +32 -32
- data/lib/ey-core/requests/get_application_archives.rb +29 -29
- data/lib/ey-core/requests/get_application_deployment.rb +21 -21
- data/lib/ey-core/requests/get_application_deployments.rb +28 -28
- data/lib/ey-core/requests/get_applications.rb +28 -28
- data/lib/ey-core/requests/get_auto_scaling_alarm.rb +27 -27
- data/lib/ey-core/requests/get_auto_scaling_alarms.rb +34 -34
- data/lib/ey-core/requests/get_auto_scaling_group.rb +21 -21
- data/lib/ey-core/requests/get_auto_scaling_groups.rb +29 -29
- data/lib/ey-core/requests/get_auto_scaling_policies.rb +46 -46
- data/lib/ey-core/requests/get_auto_scaling_policy.rb +27 -27
- data/lib/ey-core/requests/get_backup_file.rb +21 -21
- data/lib/ey-core/requests/get_backup_files.rb +28 -28
- data/lib/ey-core/requests/get_billing.rb +24 -24
- data/lib/ey-core/requests/get_blueprint.rb +21 -21
- data/lib/ey-core/requests/get_blueprints.rb +29 -29
- data/lib/ey-core/requests/get_component.rb +21 -21
- data/lib/ey-core/requests/get_components.rb +29 -29
- data/lib/ey-core/requests/get_contacts.rb +34 -34
- data/lib/ey-core/requests/get_costs.rb +25 -25
- data/lib/ey-core/requests/get_current_user.rb +19 -19
- data/lib/ey-core/requests/get_database_plan_usages.rb +24 -24
- data/lib/ey-core/requests/get_database_server.rb +21 -21
- data/lib/ey-core/requests/get_database_server_revisions.rb +27 -27
- data/lib/ey-core/requests/get_database_server_snapshot.rb +20 -20
- data/lib/ey-core/requests/get_database_server_snapshots.rb +39 -39
- data/lib/ey-core/requests/get_database_server_usages.rb +24 -24
- data/lib/ey-core/requests/get_database_servers.rb +30 -30
- data/lib/ey-core/requests/get_database_servers_firewalls.rb +30 -30
- data/lib/ey-core/requests/get_database_service.rb +20 -20
- data/lib/ey-core/requests/get_database_services.rb +55 -55
- data/lib/ey-core/requests/get_deployment.rb +19 -19
- data/lib/ey-core/requests/get_deployments.rb +29 -29
- data/lib/ey-core/requests/get_environment.rb +21 -21
- data/lib/ey-core/requests/get_environment_database_services.rb +21 -21
- data/lib/ey-core/requests/get_environment_logical_databases.rb +20 -20
- data/lib/ey-core/requests/get_environment_plan_usages.rb +24 -24
- data/lib/ey-core/requests/get_environment_variable.rb +19 -19
- data/lib/ey-core/requests/get_environment_variables.rb +29 -29
- data/lib/ey-core/requests/get_environments.rb +29 -29
- data/lib/ey-core/requests/get_feature.rb +21 -21
- data/lib/ey-core/requests/get_features.rb +28 -28
- data/lib/ey-core/requests/get_firewall.rb +21 -21
- data/lib/ey-core/requests/get_firewall_rule.rb +21 -21
- data/lib/ey-core/requests/get_firewall_rules.rb +29 -29
- data/lib/ey-core/requests/get_firewalls.rb +45 -45
- data/lib/ey-core/requests/get_gem.rb +24 -24
- data/lib/ey-core/requests/get_keypair.rb +21 -21
- data/lib/ey-core/requests/get_keypair_deployment.rb +21 -21
- data/lib/ey-core/requests/get_keypair_deployments.rb +29 -29
- data/lib/ey-core/requests/get_keypairs.rb +34 -34
- data/lib/ey-core/requests/get_legacy_alert.rb +21 -21
- data/lib/ey-core/requests/get_legacy_alerts.rb +29 -29
- data/lib/ey-core/requests/get_load_balancer.rb +21 -21
- data/lib/ey-core/requests/get_load_balancer_node.rb +21 -21
- data/lib/ey-core/requests/get_load_balancer_nodes.rb +30 -30
- data/lib/ey-core/requests/get_load_balancer_service.rb +21 -21
- data/lib/ey-core/requests/get_load_balancer_services.rb +30 -30
- data/lib/ey-core/requests/get_load_balancers.rb +29 -29
- data/lib/ey-core/requests/get_log.rb +21 -21
- data/lib/ey-core/requests/get_logical_database.rb +23 -23
- data/lib/ey-core/requests/get_logical_databases.rb +36 -36
- data/lib/ey-core/requests/get_logs.rb +37 -37
- data/lib/ey-core/requests/get_membership.rb +21 -21
- data/lib/ey-core/requests/get_memberships.rb +29 -29
- data/lib/ey-core/requests/get_message.rb +28 -28
- data/lib/ey-core/requests/get_messages.rb +27 -27
- data/lib/ey-core/requests/get_metadata.rb +22 -22
- data/lib/ey-core/requests/get_operational_contact.rb +21 -21
- data/lib/ey-core/requests/get_operational_contacts.rb +20 -20
- data/lib/ey-core/requests/get_plan_usages.rb +24 -24
- data/lib/ey-core/requests/get_possible_provider_locations.rb +19 -19
- data/lib/ey-core/requests/get_provider.rb +21 -21
- data/lib/ey-core/requests/get_provider_location.rb +29 -29
- data/lib/ey-core/requests/get_provider_locations.rb +28 -28
- data/lib/ey-core/requests/get_providers.rb +28 -28
- data/lib/ey-core/requests/get_request.rb +71 -71
- data/lib/ey-core/requests/get_requests.rb +29 -29
- data/lib/ey-core/requests/get_server.rb +34 -34
- data/lib/ey-core/requests/get_server_event.rb +20 -20
- data/lib/ey-core/requests/get_server_events.rb +28 -28
- data/lib/ey-core/requests/get_server_usages.rb +24 -24
- data/lib/ey-core/requests/get_servers.rb +25 -25
- data/lib/ey-core/requests/get_ssl_certificate.rb +23 -23
- data/lib/ey-core/requests/get_ssl_certificates.rb +28 -28
- data/lib/ey-core/requests/get_storage.rb +21 -21
- data/lib/ey-core/requests/get_storage_user.rb +21 -21
- data/lib/ey-core/requests/get_storage_users.rb +28 -28
- data/lib/ey-core/requests/get_storages.rb +28 -28
- data/lib/ey-core/requests/get_support_trial.rb +51 -51
- data/lib/ey-core/requests/get_task.rb +21 -21
- data/lib/ey-core/requests/get_tasks.rb +28 -28
- data/lib/ey-core/requests/get_token.rb +21 -21
- data/lib/ey-core/requests/get_token_by_login.rb +30 -30
- data/lib/ey-core/requests/get_tokens.rb +32 -32
- data/lib/ey-core/requests/get_untracked_server.rb +18 -18
- data/lib/ey-core/requests/get_untracked_servers.rb +24 -24
- data/lib/ey-core/requests/get_user.rb +21 -21
- data/lib/ey-core/requests/get_users.rb +42 -42
- data/lib/ey-core/requests/get_volume.rb +21 -21
- data/lib/ey-core/requests/get_volumes.rb +28 -28
- data/lib/ey-core/requests/reboot_server.rb +39 -39
- data/lib/ey-core/requests/reconcile_server.rb +39 -39
- data/lib/ey-core/requests/request_callback.rb +26 -26
- data/lib/ey-core/requests/reset_password.rb +31 -31
- data/lib/ey-core/requests/reset_server_state.rb +32 -32
- data/lib/ey-core/requests/restart_environment_app_servers.rb +38 -38
- data/lib/ey-core/requests/retrieve_docker_registry_credentials.rb +24 -24
- data/lib/ey-core/requests/run_cluster_application_action.rb +28 -28
- data/lib/ey-core/requests/run_environment_application_action.rb +29 -29
- data/lib/ey-core/requests/signup.rb +56 -56
- data/lib/ey-core/requests/start_server.rb +39 -39
- data/lib/ey-core/requests/stop_server.rb +39 -39
- data/lib/ey-core/requests/timeout_deployment.rb +27 -27
- data/lib/ey-core/requests/unassign_environment.rb +31 -31
- data/lib/ey-core/requests/update_addon.rb +28 -28
- data/lib/ey-core/requests/update_address.rb +29 -29
- data/lib/ey-core/requests/update_alert.rb +32 -32
- data/lib/ey-core/requests/update_application_archive.rb +23 -23
- data/lib/ey-core/requests/update_auto_scaling_alarm.rb +45 -45
- data/lib/ey-core/requests/update_auto_scaling_group.rb +45 -45
- data/lib/ey-core/requests/update_auto_scaling_policy.rb +46 -46
- data/lib/ey-core/requests/update_billing.rb +26 -26
- data/lib/ey-core/requests/update_blueprint.rb +29 -29
- data/lib/ey-core/requests/update_connector.rb +32 -32
- data/lib/ey-core/requests/update_environment.rb +17 -17
- data/lib/ey-core/requests/update_environment_variable.rb +25 -25
- data/lib/ey-core/requests/update_membership.rb +29 -29
- data/lib/ey-core/requests/update_provider_location.rb +29 -29
- data/lib/ey-core/requests/update_server.rb +29 -29
- data/lib/ey-core/requests/update_ssl_certificate.rb +25 -25
- data/lib/ey-core/requests/update_untracked_server.rb +24 -24
- data/lib/ey-core/requests/upload_file.rb +44 -44
- data/lib/ey-core/requests/upload_recipes_for_environment.rb +28 -28
- data/lib/ey-core/response.rb +59 -59
- data/lib/ey-core/response_cache.rb +29 -29
- data/lib/ey-core/subscribable.rb +60 -60
- data/lib/ey-core/test_helpers/account_helpers.rb +73 -73
- data/lib/ey-core/test_helpers/alert_helpers.rb +16 -16
- data/lib/ey-core/test_helpers/auto_scaling_helpers.rb +35 -35
- data/lib/ey-core/test_helpers/client_helpers.rb +40 -40
- data/lib/ey-core/test_helpers/cucumber.rb +3 -3
- data/lib/ey-core/test_helpers/resource_helpers.rb +196 -196
- data/lib/ey-core/test_helpers/rspec.rb +5 -5
- data/lib/ey-core/test_helpers.rb +17 -17
- data/lib/ey-core/token_authentication.rb +13 -13
- data/lib/ey-core/version.rb +5 -5
- data/lib/ey-core.rb +59 -59
- data/spec/account_spec.rb +65 -65
- data/spec/account_trial_spec.rb +17 -17
- data/spec/accounts_referrals_spec.rb +20 -20
- data/spec/accounts_spec.rb +113 -113
- data/spec/addons_and_vars_spec.rb +62 -62
- data/spec/addresses_spec.rb +57 -57
- data/spec/alerts_spec.rb +155 -155
- data/spec/application_archives_spec.rb +39 -39
- data/spec/applications_spec.rb +65 -65
- data/spec/auto_scaling_alarms_spec.rb +40 -40
- data/spec/auto_scaling_groups_spec.rb +28 -28
- data/spec/auto_scaling_policies_spec.rb +94 -94
- data/spec/billing_spec.rb +31 -31
- data/spec/blueprints_spec.rb +47 -47
- data/spec/client_spec.rb +16 -16
- data/spec/collection_spec.rb +43 -43
- data/spec/costs_spec.rb +22 -22
- data/spec/database_plan_usage_spec.rb +39 -39
- data/spec/database_server_snapshots_spec.rb +41 -41
- data/spec/database_server_usage_spec.rb +49 -49
- data/spec/database_servers_spec.rb +61 -61
- data/spec/database_services_spec.rb +76 -76
- data/spec/deployments_spec.rb +24 -24
- data/spec/docker_registry_credentials_spec.rb +16 -16
- data/spec/environment_plan_usage_spec.rb +38 -38
- data/spec/environments_spec.rb +212 -212
- data/spec/ey-core/cli/accounts_spec.rb +20 -20
- data/spec/ey-core/cli/helpers/server_sieve_spec.rb +226 -226
- data/spec/ey-core/cli/recipes/apply_spec.rb +34 -34
- data/spec/ey-core/cli/recipes/download_spec.rb +93 -93
- data/spec/ey-core/cli/recipes/upload_spec.rb +80 -80
- data/spec/features_spec.rb +79 -79
- data/spec/firewalls_spec.rb +84 -84
- data/spec/gems_spec.rb +11 -11
- data/spec/keypair_deployments_spec.rb +33 -33
- data/spec/keypairs_spec.rb +51 -51
- data/spec/legacy_alerts_spec.rb +44 -44
- data/spec/load_balancers_spec.rb +31 -31
- data/spec/logical_databases_spec.rb +38 -38
- data/spec/logs_spec.rb +44 -44
- data/spec/memberships_spec.rb +73 -73
- data/spec/messages_spec.rb +27 -27
- data/spec/metadata_spec.rb +11 -11
- data/spec/plan_usage_spec.rb +65 -65
- data/spec/provider_locations_spec.rb +85 -85
- data/spec/providers_spec.rb +105 -105
- data/spec/requests/upload_file_spec.rb +25 -25
- data/spec/requests_spec.rb +23 -23
- data/spec/reset_password_spec.rb +22 -22
- data/spec/server_events_spec.rb +31 -31
- data/spec/server_usage_spec.rb +70 -70
- data/spec/servers_spec.rb +202 -202
- data/spec/services_spec.rb +9 -9
- data/spec/signups_spec.rb +45 -45
- data/spec/spec_helper.rb +27 -27
- data/spec/ssl_certificates_spec.rb +94 -94
- data/spec/storages_spec.rb +57 -57
- data/spec/support/cli_helpers.rb +47 -47
- data/spec/support/core.rb +21 -21
- data/spec/support/coverage.rb +43 -43
- data/spec/support/fake_kernel.rb +21 -21
- data/spec/support/helpers.rb +1 -1
- data/spec/support/timecop.rb +8 -8
- data/spec/support_trial_spec.rb +33 -33
- data/spec/tokens_spec.rb +59 -59
- data/spec/untracked_servers_spec.rb +59 -59
- data/spec/users_spec.rb +108 -108
- metadata +4 -3
data/spec/addresses_spec.rb
CHANGED
@@ -1,57 +1,57 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe 'addresses' do
|
4
|
-
let(:client) { create_client }
|
5
|
-
let!(:account) { create_account(client: client) }
|
6
|
-
let!(:provider) { create_provider(account: account) }
|
7
|
-
|
8
|
-
it "creates an address" do
|
9
|
-
request = client.addresses.create!(provider: provider, location: "us-west-2", scope: "vpc")
|
10
|
-
address = request.resource!
|
11
|
-
expect(address.id).not_to be_nil
|
12
|
-
expect(address.ip_address).not_to be_nil
|
13
|
-
expect(address.provisioned_id).not_to be_nil
|
14
|
-
expect(address.provider).to eq(provider)
|
15
|
-
expect(address.scope).to eq("vpc")
|
16
|
-
end
|
17
|
-
|
18
|
-
context "with an address" do
|
19
|
-
let(:location) { "us-west-2" }
|
20
|
-
let!(:address) { client.addresses.all.find{|a| a.location.match(location) && a.server_id.nil?} || client.addresses.create!(provider: provider, location: location).resource! }
|
21
|
-
|
22
|
-
it "searches by provisioned_id" do
|
23
|
-
addresses = client.addresses.all(provisioned_id: address.provisioned_id)
|
24
|
-
expect(addresses.size).to eq(1)
|
25
|
-
expect(addresses.first).to eq(address)
|
26
|
-
end
|
27
|
-
|
28
|
-
it "searches by ip_address" do
|
29
|
-
addresses = client.addresses.all(ip_address: address.ip_address)
|
30
|
-
expect(addresses.size).to eq(1)
|
31
|
-
expect(addresses.first).to eq(address)
|
32
|
-
end
|
33
|
-
|
34
|
-
it "lists addresses" do
|
35
|
-
addresses = client.addresses.all
|
36
|
-
expect(addresses.to_a).to include(address)
|
37
|
-
end
|
38
|
-
|
39
|
-
context "with a server" do
|
40
|
-
let!(:environment) { create_environment(account: account, name: Faker::Name.first_name, configuration: {"type" => "cluster"}) }
|
41
|
-
|
42
|
-
it "attaches and detach an address from a server" do
|
43
|
-
server = environment.servers.first(role: "app_master")
|
44
|
-
|
45
|
-
expect(server).to be
|
46
|
-
|
47
|
-
address.attach(server).ready!
|
48
|
-
|
49
|
-
address = server.reload.address
|
50
|
-
address.detach.ready!
|
51
|
-
|
52
|
-
expect(server.reload.address).to be_nil
|
53
|
-
expect(address.reload.server).to be_nil
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'addresses' do
|
4
|
+
let(:client) { create_client }
|
5
|
+
let!(:account) { create_account(client: client) }
|
6
|
+
let!(:provider) { create_provider(account: account) }
|
7
|
+
|
8
|
+
it "creates an address" do
|
9
|
+
request = client.addresses.create!(provider: provider, location: "us-west-2", scope: "vpc")
|
10
|
+
address = request.resource!
|
11
|
+
expect(address.id).not_to be_nil
|
12
|
+
expect(address.ip_address).not_to be_nil
|
13
|
+
expect(address.provisioned_id).not_to be_nil
|
14
|
+
expect(address.provider).to eq(provider)
|
15
|
+
expect(address.scope).to eq("vpc")
|
16
|
+
end
|
17
|
+
|
18
|
+
context "with an address" do
|
19
|
+
let(:location) { "us-west-2" }
|
20
|
+
let!(:address) { client.addresses.all.find{|a| a.location.match(location) && a.server_id.nil?} || client.addresses.create!(provider: provider, location: location).resource! }
|
21
|
+
|
22
|
+
it "searches by provisioned_id" do
|
23
|
+
addresses = client.addresses.all(provisioned_id: address.provisioned_id)
|
24
|
+
expect(addresses.size).to eq(1)
|
25
|
+
expect(addresses.first).to eq(address)
|
26
|
+
end
|
27
|
+
|
28
|
+
it "searches by ip_address" do
|
29
|
+
addresses = client.addresses.all(ip_address: address.ip_address)
|
30
|
+
expect(addresses.size).to eq(1)
|
31
|
+
expect(addresses.first).to eq(address)
|
32
|
+
end
|
33
|
+
|
34
|
+
it "lists addresses" do
|
35
|
+
addresses = client.addresses.all
|
36
|
+
expect(addresses.to_a).to include(address)
|
37
|
+
end
|
38
|
+
|
39
|
+
context "with a server" do
|
40
|
+
let!(:environment) { create_environment(account: account, name: Faker::Name.first_name, configuration: {"type" => "cluster"}) }
|
41
|
+
|
42
|
+
it "attaches and detach an address from a server" do
|
43
|
+
server = environment.servers.first(role: "app_master")
|
44
|
+
|
45
|
+
expect(server).to be
|
46
|
+
|
47
|
+
address.attach(server).ready!
|
48
|
+
|
49
|
+
address = server.reload.address
|
50
|
+
address.detach.ready!
|
51
|
+
|
52
|
+
expect(server.reload.address).to be_nil
|
53
|
+
expect(address.reload.server).to be_nil
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
data/spec/alerts_spec.rb
CHANGED
@@ -1,155 +1,155 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe 'alerts' do
|
4
|
-
let(:client) { create_client }
|
5
|
-
let(:alert_params) { {
|
6
|
-
:message => Faker::Lorem.sentence(1),
|
7
|
-
:description => Faker::Hacker.verb,
|
8
|
-
:severity => "warning",
|
9
|
-
:name => Faker::Hacker.noun,
|
10
|
-
:external_id => SecureRandom.uuid,
|
11
|
-
} }
|
12
|
-
|
13
|
-
it 'should fail to create an alert with no resource' do
|
14
|
-
expect { client.alerts.create!(alert_params) }.to raise_error Ey::Core::Response::Unprocessable
|
15
|
-
end
|
16
|
-
|
17
|
-
context 'with a database server' do
|
18
|
-
let(:database_server) { create_database_service(client: client).servers.first }
|
19
|
-
|
20
|
-
it 'should create an alert' do
|
21
|
-
alert = nil
|
22
|
-
expect {
|
23
|
-
alert = database_server.alerts.create!(alert_params)
|
24
|
-
}.to change { client.alerts.size }.by(1).
|
25
|
-
and change { database_server.alerts.size }.by(1)
|
26
|
-
|
27
|
-
expect(alert.database_server).to eq(database_server)
|
28
|
-
expect(alert.resource).to eq(database_server)
|
29
|
-
|
30
|
-
expect(alert.description).to eq(alert_params[:description])
|
31
|
-
expect(alert.external_id).to eq(alert_params[:external_id])
|
32
|
-
expect(alert.finished_at).to eq(nil)
|
33
|
-
expect(alert.message).to eq(alert_params[:message])
|
34
|
-
expect(alert.name).to eq(alert_params[:name])
|
35
|
-
expect(alert.severity).to eq(alert_params[:severity])
|
36
|
-
|
37
|
-
alert.reload
|
38
|
-
|
39
|
-
expect(alert.database_server).to eq(database_server)
|
40
|
-
expect(alert.resource).to eq(database_server)
|
41
|
-
|
42
|
-
expect(alert.description).to eq(alert_params[:description])
|
43
|
-
expect(alert.external_id).to eq(alert_params[:external_id])
|
44
|
-
expect(alert.finished_at).to eq(nil)
|
45
|
-
expect(alert.message).to eq(alert_params[:message])
|
46
|
-
expect(alert.name).to eq(alert_params[:name])
|
47
|
-
expect(alert.severity).to eq(alert_params[:severity])
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context 'with a server' do
|
52
|
-
let!(:account) { create_account(client: client) }
|
53
|
-
let!(:provider) { create_provider(account: account) }
|
54
|
-
let!(:environment) { create_environment(account: account, name: Faker::Name.first_name) }
|
55
|
-
|
56
|
-
it 'should create an alert' do
|
57
|
-
server = client.servers.all.first
|
58
|
-
alert = nil
|
59
|
-
|
60
|
-
expect {
|
61
|
-
alert = server.alerts.create!(alert_params)
|
62
|
-
}.to change { client.alerts.size }.by(1).
|
63
|
-
and change { server.alerts.size }.by(1)
|
64
|
-
|
65
|
-
expect(alert.message).to eq(alert_params[:message])
|
66
|
-
expect(alert.description).to eq(alert_params[:description])
|
67
|
-
expect(alert.severity).to eq(alert_params[:severity])
|
68
|
-
expect(alert.name).to eq(alert_params[:name])
|
69
|
-
expect(alert.external_id).to eq(alert_params[:external_id])
|
70
|
-
expect(alert.started_at).to be_nil
|
71
|
-
expect(alert.server).to eq(server)
|
72
|
-
|
73
|
-
alert.reload
|
74
|
-
|
75
|
-
expect(alert.message).to eq(alert_params[:message])
|
76
|
-
expect(alert.description).to eq(alert_params[:description])
|
77
|
-
expect(alert.severity).to eq(alert_params[:severity])
|
78
|
-
expect(alert.name).to eq(alert_params[:name])
|
79
|
-
expect(alert.external_id).to eq(alert_params[:external_id])
|
80
|
-
expect(alert.started_at).to be_nil
|
81
|
-
expect(alert.server).to eq(server)
|
82
|
-
end
|
83
|
-
|
84
|
-
it "create an alert that has been started" do
|
85
|
-
server = client.servers.all.first
|
86
|
-
alert = nil
|
87
|
-
|
88
|
-
expect {
|
89
|
-
alert = server.alerts.create!(alert_params.merge(started_at: Time.now))
|
90
|
-
}.to change { server.alerts.size }.by(1)
|
91
|
-
|
92
|
-
expect(alert.started_at).not_to be_nil
|
93
|
-
expect(alert.reload.started_at).not_to be_nil
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
context "given some alerts" do
|
98
|
-
let(:database_server) { create_database_service(client: client).servers.first }
|
99
|
-
let(:database_server2) { create_database_service(client: client).servers.first }
|
100
|
-
|
101
|
-
let!(:alerts) {
|
102
|
-
[
|
103
|
-
client.alerts.create!(
|
104
|
-
:database_server => database_server,
|
105
|
-
:message => Faker::Lorem.sentence(1),
|
106
|
-
:description => Faker::Hacker.verb,
|
107
|
-
:severity => "warning",
|
108
|
-
:name => Faker::Hacker.noun,
|
109
|
-
:external_id => SecureRandom.uuid,
|
110
|
-
),
|
111
|
-
client.alerts.create!(
|
112
|
-
:database_server => database_server2,
|
113
|
-
:message => Faker::Lorem.sentence(1),
|
114
|
-
:description => Faker::Hacker.verb,
|
115
|
-
:severity => "warning",
|
116
|
-
:name => Faker::Hacker.noun,
|
117
|
-
:external_id => SecureRandom.uuid,
|
118
|
-
),
|
119
|
-
]
|
120
|
-
}
|
121
|
-
|
122
|
-
it "should list alerts" do
|
123
|
-
expect(
|
124
|
-
client.alerts.all
|
125
|
-
).to match_array(alerts)
|
126
|
-
end
|
127
|
-
|
128
|
-
it "should filter alerts" do
|
129
|
-
expect(database_server.alerts.all).to match_array(alerts[0])
|
130
|
-
expect(client.alerts.all(database_server: database_server.identity)).to match_array(alerts[0])
|
131
|
-
|
132
|
-
expect(database_server2.alerts.all).to match_array(alerts[1])
|
133
|
-
expect(client.alerts.all(database_server: database_server2.identity)).to match_array(alerts[1])
|
134
|
-
end
|
135
|
-
|
136
|
-
it "should update alert" do
|
137
|
-
alert = alerts.first
|
138
|
-
expect { alert.update(acknowledged: true) }.to change { alert.acknowledged }.from(false).to(true)
|
139
|
-
expect { alert.update(message: "something else") }.to change { alert.reload.message }
|
140
|
-
expect { alert.update(external_id: "new-id") }.to change { alert.reload.external_id }
|
141
|
-
expect { alert.update(started_at: Time.now) }.to change { alert.reload.started_at }.from(nil)
|
142
|
-
expect {
|
143
|
-
alert.update(finished_at: Time.now)
|
144
|
-
}.to change { alert.reload.finished_at }.from(nil).
|
145
|
-
and change { database_server.alerts.all.size }.by(-1)
|
146
|
-
end
|
147
|
-
|
148
|
-
it 'acknowledges the alert' do
|
149
|
-
alert = alerts.first
|
150
|
-
expect {
|
151
|
-
alert.acknowledge!
|
152
|
-
}.to change { alert.acknowledged }.from(false).to(true)
|
153
|
-
end
|
154
|
-
end
|
155
|
-
end
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'alerts' do
|
4
|
+
let(:client) { create_client }
|
5
|
+
let(:alert_params) { {
|
6
|
+
:message => Faker::Lorem.sentence(1),
|
7
|
+
:description => Faker::Hacker.verb,
|
8
|
+
:severity => "warning",
|
9
|
+
:name => Faker::Hacker.noun,
|
10
|
+
:external_id => SecureRandom.uuid,
|
11
|
+
} }
|
12
|
+
|
13
|
+
it 'should fail to create an alert with no resource' do
|
14
|
+
expect { client.alerts.create!(alert_params) }.to raise_error Ey::Core::Response::Unprocessable
|
15
|
+
end
|
16
|
+
|
17
|
+
context 'with a database server' do
|
18
|
+
let(:database_server) { create_database_service(client: client).servers.first }
|
19
|
+
|
20
|
+
it 'should create an alert' do
|
21
|
+
alert = nil
|
22
|
+
expect {
|
23
|
+
alert = database_server.alerts.create!(alert_params)
|
24
|
+
}.to change { client.alerts.size }.by(1).
|
25
|
+
and change { database_server.alerts.size }.by(1)
|
26
|
+
|
27
|
+
expect(alert.database_server).to eq(database_server)
|
28
|
+
expect(alert.resource).to eq(database_server)
|
29
|
+
|
30
|
+
expect(alert.description).to eq(alert_params[:description])
|
31
|
+
expect(alert.external_id).to eq(alert_params[:external_id])
|
32
|
+
expect(alert.finished_at).to eq(nil)
|
33
|
+
expect(alert.message).to eq(alert_params[:message])
|
34
|
+
expect(alert.name).to eq(alert_params[:name])
|
35
|
+
expect(alert.severity).to eq(alert_params[:severity])
|
36
|
+
|
37
|
+
alert.reload
|
38
|
+
|
39
|
+
expect(alert.database_server).to eq(database_server)
|
40
|
+
expect(alert.resource).to eq(database_server)
|
41
|
+
|
42
|
+
expect(alert.description).to eq(alert_params[:description])
|
43
|
+
expect(alert.external_id).to eq(alert_params[:external_id])
|
44
|
+
expect(alert.finished_at).to eq(nil)
|
45
|
+
expect(alert.message).to eq(alert_params[:message])
|
46
|
+
expect(alert.name).to eq(alert_params[:name])
|
47
|
+
expect(alert.severity).to eq(alert_params[:severity])
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
context 'with a server' do
|
52
|
+
let!(:account) { create_account(client: client) }
|
53
|
+
let!(:provider) { create_provider(account: account) }
|
54
|
+
let!(:environment) { create_environment(account: account, name: Faker::Name.first_name) }
|
55
|
+
|
56
|
+
it 'should create an alert' do
|
57
|
+
server = client.servers.all.first
|
58
|
+
alert = nil
|
59
|
+
|
60
|
+
expect {
|
61
|
+
alert = server.alerts.create!(alert_params)
|
62
|
+
}.to change { client.alerts.size }.by(1).
|
63
|
+
and change { server.alerts.size }.by(1)
|
64
|
+
|
65
|
+
expect(alert.message).to eq(alert_params[:message])
|
66
|
+
expect(alert.description).to eq(alert_params[:description])
|
67
|
+
expect(alert.severity).to eq(alert_params[:severity])
|
68
|
+
expect(alert.name).to eq(alert_params[:name])
|
69
|
+
expect(alert.external_id).to eq(alert_params[:external_id])
|
70
|
+
expect(alert.started_at).to be_nil
|
71
|
+
expect(alert.server).to eq(server)
|
72
|
+
|
73
|
+
alert.reload
|
74
|
+
|
75
|
+
expect(alert.message).to eq(alert_params[:message])
|
76
|
+
expect(alert.description).to eq(alert_params[:description])
|
77
|
+
expect(alert.severity).to eq(alert_params[:severity])
|
78
|
+
expect(alert.name).to eq(alert_params[:name])
|
79
|
+
expect(alert.external_id).to eq(alert_params[:external_id])
|
80
|
+
expect(alert.started_at).to be_nil
|
81
|
+
expect(alert.server).to eq(server)
|
82
|
+
end
|
83
|
+
|
84
|
+
it "create an alert that has been started" do
|
85
|
+
server = client.servers.all.first
|
86
|
+
alert = nil
|
87
|
+
|
88
|
+
expect {
|
89
|
+
alert = server.alerts.create!(alert_params.merge(started_at: Time.now))
|
90
|
+
}.to change { server.alerts.size }.by(1)
|
91
|
+
|
92
|
+
expect(alert.started_at).not_to be_nil
|
93
|
+
expect(alert.reload.started_at).not_to be_nil
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
context "given some alerts" do
|
98
|
+
let(:database_server) { create_database_service(client: client).servers.first }
|
99
|
+
let(:database_server2) { create_database_service(client: client).servers.first }
|
100
|
+
|
101
|
+
let!(:alerts) {
|
102
|
+
[
|
103
|
+
client.alerts.create!(
|
104
|
+
:database_server => database_server,
|
105
|
+
:message => Faker::Lorem.sentence(1),
|
106
|
+
:description => Faker::Hacker.verb,
|
107
|
+
:severity => "warning",
|
108
|
+
:name => Faker::Hacker.noun,
|
109
|
+
:external_id => SecureRandom.uuid,
|
110
|
+
),
|
111
|
+
client.alerts.create!(
|
112
|
+
:database_server => database_server2,
|
113
|
+
:message => Faker::Lorem.sentence(1),
|
114
|
+
:description => Faker::Hacker.verb,
|
115
|
+
:severity => "warning",
|
116
|
+
:name => Faker::Hacker.noun,
|
117
|
+
:external_id => SecureRandom.uuid,
|
118
|
+
),
|
119
|
+
]
|
120
|
+
}
|
121
|
+
|
122
|
+
it "should list alerts" do
|
123
|
+
expect(
|
124
|
+
client.alerts.all
|
125
|
+
).to match_array(alerts)
|
126
|
+
end
|
127
|
+
|
128
|
+
it "should filter alerts" do
|
129
|
+
expect(database_server.alerts.all).to match_array(alerts[0])
|
130
|
+
expect(client.alerts.all(database_server: database_server.identity)).to match_array(alerts[0])
|
131
|
+
|
132
|
+
expect(database_server2.alerts.all).to match_array(alerts[1])
|
133
|
+
expect(client.alerts.all(database_server: database_server2.identity)).to match_array(alerts[1])
|
134
|
+
end
|
135
|
+
|
136
|
+
it "should update alert" do
|
137
|
+
alert = alerts.first
|
138
|
+
expect { alert.update(acknowledged: true) }.to change { alert.acknowledged }.from(false).to(true)
|
139
|
+
expect { alert.update(message: "something else") }.to change { alert.reload.message }
|
140
|
+
expect { alert.update(external_id: "new-id") }.to change { alert.reload.external_id }
|
141
|
+
expect { alert.update(started_at: Time.now) }.to change { alert.reload.started_at }.from(nil)
|
142
|
+
expect {
|
143
|
+
alert.update(finished_at: Time.now)
|
144
|
+
}.to change { alert.reload.finished_at }.from(nil).
|
145
|
+
and change { database_server.alerts.all.size }.by(-1)
|
146
|
+
end
|
147
|
+
|
148
|
+
it 'acknowledges the alert' do
|
149
|
+
alert = alerts.first
|
150
|
+
expect {
|
151
|
+
alert.acknowledge!
|
152
|
+
}.to change { alert.acknowledged }.from(false).to(true)
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
@@ -1,39 +1,39 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe 'application_archives' do
|
4
|
-
let(:client) { create_client }
|
5
|
-
let!(:account) { create_account(client: client) }
|
6
|
-
let!(:provider) { create_provider(account: account) }
|
7
|
-
let!(:application) { account.applications.create!(name: "hello_servlet", type: "java") }
|
8
|
-
|
9
|
-
it "should create an application archive" do
|
10
|
-
archive = application.archives.create!(filename: "helloservlet.war")
|
11
|
-
|
12
|
-
# FIXME: archive.application.should == application
|
13
|
-
expect(archive.filename).to eq("helloservlet.war")
|
14
|
-
expect(archive.upload_successful).to eq(false)
|
15
|
-
expect(archive.upload_url).to be
|
16
|
-
end
|
17
|
-
|
18
|
-
context "with an archive", :mock_only do # needs uploaded archives to pass
|
19
|
-
let!(:archive) { application.archives.create!(filename: "helloservlet.war") }
|
20
|
-
|
21
|
-
it "should upload, mark that it was successful, and download" do
|
22
|
-
archive.upload(body: "enterprise")
|
23
|
-
|
24
|
-
expect(archive.upload_successful).to eq(true)
|
25
|
-
|
26
|
-
expect(archive.download.body).to eq("enterprise")
|
27
|
-
end
|
28
|
-
|
29
|
-
context "with multiple archives" do
|
30
|
-
let!(:another_application) { account.applications.create!(name: "hello_bean", type: "java") }
|
31
|
-
let!(:another_archive) { another_application.archives.create!(filename: "helloservlet.war") }
|
32
|
-
|
33
|
-
it "should list based on application" do
|
34
|
-
expect(application.archives.all).to match_array([archive])
|
35
|
-
expect(another_application.archives.all).to match_array([another_archive])
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'application_archives' do
|
4
|
+
let(:client) { create_client }
|
5
|
+
let!(:account) { create_account(client: client) }
|
6
|
+
let!(:provider) { create_provider(account: account) }
|
7
|
+
let!(:application) { account.applications.create!(name: "hello_servlet", type: "java") }
|
8
|
+
|
9
|
+
it "should create an application archive" do
|
10
|
+
archive = application.archives.create!(filename: "helloservlet.war")
|
11
|
+
|
12
|
+
# FIXME: archive.application.should == application
|
13
|
+
expect(archive.filename).to eq("helloservlet.war")
|
14
|
+
expect(archive.upload_successful).to eq(false)
|
15
|
+
expect(archive.upload_url).to be
|
16
|
+
end
|
17
|
+
|
18
|
+
context "with an archive", :mock_only do # needs uploaded archives to pass
|
19
|
+
let!(:archive) { application.archives.create!(filename: "helloservlet.war") }
|
20
|
+
|
21
|
+
it "should upload, mark that it was successful, and download" do
|
22
|
+
archive.upload(body: "enterprise")
|
23
|
+
|
24
|
+
expect(archive.upload_successful).to eq(true)
|
25
|
+
|
26
|
+
expect(archive.download.body).to eq("enterprise")
|
27
|
+
end
|
28
|
+
|
29
|
+
context "with multiple archives" do
|
30
|
+
let!(:another_application) { account.applications.create!(name: "hello_bean", type: "java") }
|
31
|
+
let!(:another_archive) { another_application.archives.create!(filename: "helloservlet.war") }
|
32
|
+
|
33
|
+
it "should list based on application" do
|
34
|
+
expect(application.archives.all).to match_array([archive])
|
35
|
+
expect(another_application.archives.all).to match_array([another_archive])
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
data/spec/applications_spec.rb
CHANGED
@@ -1,65 +1,65 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe 'applications' do
|
4
|
-
let(:client) { create_client }
|
5
|
-
|
6
|
-
let!(:account) { create_account(client: client) }
|
7
|
-
let!(:provider) { create_provider(account: account) }
|
8
|
-
|
9
|
-
let(:app_name) { SecureRandom.hex(12) }
|
10
|
-
let(:repository) { "#{Faker::Name.first_name}@#{Faker::Internet.domain_name}:#{app_name}/#{app_name}.git" }
|
11
|
-
|
12
|
-
it "should create an application" do
|
13
|
-
application = account.applications.create!(name: app_name, type: "rails3", repository: repository)
|
14
|
-
|
15
|
-
expect(application.id).not_to be_nil
|
16
|
-
expect(application.name).to eq(app_name)
|
17
|
-
expect(application.type).to eq("rails3")
|
18
|
-
expect(application.language).to eq("ruby")
|
19
|
-
expect(application.repository).to eq(repository)
|
20
|
-
end
|
21
|
-
|
22
|
-
it "should create a deploy keypair when creating an application" do
|
23
|
-
expect {
|
24
|
-
account.applications.create!(name: app_name, type: "rails3", repository: repository)
|
25
|
-
}.to change { client.keypairs.count }.by(1)
|
26
|
-
end
|
27
|
-
|
28
|
-
it "should list an application's keypairs" do
|
29
|
-
client.keypairs.create(name: "rando", public_key: SSHKey.generate.ssh_public_key) # an existing keypair
|
30
|
-
|
31
|
-
application = account.applications.create!(name: app_name, type: "rails3", repository: repository)
|
32
|
-
|
33
|
-
keypair = application.keypairs.one
|
34
|
-
expect(keypair.public_key).to be
|
35
|
-
end
|
36
|
-
|
37
|
-
it "should search for application by type" do
|
38
|
-
application = client.applications.create!(name: SecureRandom.hex(12), type: "rails3", repository: repository, account: account)
|
39
|
-
client.applications.create!(name: SecureRandom.hex(3), type: "rails2", repository: repository, account: account)
|
40
|
-
|
41
|
-
expect(client.applications.all(type: "rails3").size).to eq(1)
|
42
|
-
expect(client.applications.first(type: "rails3")).to eq(application)
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should search for application by repository" do
|
46
|
-
other_repository = "#{Faker::Name.first_name}@#{Faker::Internet.domain_name}:#{Faker::Name.first_name}/#{Faker::Name.last_name}.git"
|
47
|
-
|
48
|
-
application = client.applications.create!(name: SecureRandom.hex(12), type: "rails3", repository: repository, account: account)
|
49
|
-
client.applications.create!(name: app_name, type: "rails3", repository: other_repository, account: account)
|
50
|
-
|
51
|
-
expect(client.applications.all(repository: repository).size).to eq(1)
|
52
|
-
expect(client.applications.first(repository: repository)).to eq(application)
|
53
|
-
end
|
54
|
-
|
55
|
-
it "has the correct language for all app types" do
|
56
|
-
expect(account.applications.create!(name: "merb_app", type: "merb", repository: repository).language).to eq("ruby")
|
57
|
-
expect(account.applications.create!(name: "rack_app", type: "rack", repository: repository).language).to eq("ruby")
|
58
|
-
expect(account.applications.create!(name: "rails2_app", type: "rails2", repository: repository).language).to eq("ruby")
|
59
|
-
expect(account.applications.create!(name: "rails3_app", type: "rails3", repository: repository).language).to eq("ruby")
|
60
|
-
expect(account.applications.create!(name: "rails4_app", type: "rails4", repository: repository).language).to eq("ruby")
|
61
|
-
expect(account.applications.create!(name: "sinatra_app", type: "sinatra", repository: repository).language).to eq("ruby")
|
62
|
-
expect(account.applications.create!(name: "php_app", type: "php", repository: repository).language).to eq("php")
|
63
|
-
expect(account.applications.create!(name: "nodejs_app", type: "nodejs", repository: repository).language).to eq("nodejs")
|
64
|
-
end
|
65
|
-
end
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'applications' do
|
4
|
+
let(:client) { create_client }
|
5
|
+
|
6
|
+
let!(:account) { create_account(client: client) }
|
7
|
+
let!(:provider) { create_provider(account: account) }
|
8
|
+
|
9
|
+
let(:app_name) { SecureRandom.hex(12) }
|
10
|
+
let(:repository) { "#{Faker::Name.first_name}@#{Faker::Internet.domain_name}:#{app_name}/#{app_name}.git" }
|
11
|
+
|
12
|
+
it "should create an application" do
|
13
|
+
application = account.applications.create!(name: app_name, type: "rails3", repository: repository)
|
14
|
+
|
15
|
+
expect(application.id).not_to be_nil
|
16
|
+
expect(application.name).to eq(app_name)
|
17
|
+
expect(application.type).to eq("rails3")
|
18
|
+
expect(application.language).to eq("ruby")
|
19
|
+
expect(application.repository).to eq(repository)
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should create a deploy keypair when creating an application" do
|
23
|
+
expect {
|
24
|
+
account.applications.create!(name: app_name, type: "rails3", repository: repository)
|
25
|
+
}.to change { client.keypairs.count }.by(1)
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should list an application's keypairs" do
|
29
|
+
client.keypairs.create(name: "rando", public_key: SSHKey.generate.ssh_public_key) # an existing keypair
|
30
|
+
|
31
|
+
application = account.applications.create!(name: app_name, type: "rails3", repository: repository)
|
32
|
+
|
33
|
+
keypair = application.keypairs.one
|
34
|
+
expect(keypair.public_key).to be
|
35
|
+
end
|
36
|
+
|
37
|
+
it "should search for application by type" do
|
38
|
+
application = client.applications.create!(name: SecureRandom.hex(12), type: "rails3", repository: repository, account: account)
|
39
|
+
client.applications.create!(name: SecureRandom.hex(3), type: "rails2", repository: repository, account: account)
|
40
|
+
|
41
|
+
expect(client.applications.all(type: "rails3").size).to eq(1)
|
42
|
+
expect(client.applications.first(type: "rails3")).to eq(application)
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should search for application by repository" do
|
46
|
+
other_repository = "#{Faker::Name.first_name}@#{Faker::Internet.domain_name}:#{Faker::Name.first_name}/#{Faker::Name.last_name}.git"
|
47
|
+
|
48
|
+
application = client.applications.create!(name: SecureRandom.hex(12), type: "rails3", repository: repository, account: account)
|
49
|
+
client.applications.create!(name: app_name, type: "rails3", repository: other_repository, account: account)
|
50
|
+
|
51
|
+
expect(client.applications.all(repository: repository).size).to eq(1)
|
52
|
+
expect(client.applications.first(repository: repository)).to eq(application)
|
53
|
+
end
|
54
|
+
|
55
|
+
it "has the correct language for all app types" do
|
56
|
+
expect(account.applications.create!(name: "merb_app", type: "merb", repository: repository).language).to eq("ruby")
|
57
|
+
expect(account.applications.create!(name: "rack_app", type: "rack", repository: repository).language).to eq("ruby")
|
58
|
+
expect(account.applications.create!(name: "rails2_app", type: "rails2", repository: repository).language).to eq("ruby")
|
59
|
+
expect(account.applications.create!(name: "rails3_app", type: "rails3", repository: repository).language).to eq("ruby")
|
60
|
+
expect(account.applications.create!(name: "rails4_app", type: "rails4", repository: repository).language).to eq("ruby")
|
61
|
+
expect(account.applications.create!(name: "sinatra_app", type: "sinatra", repository: repository).language).to eq("ruby")
|
62
|
+
expect(account.applications.create!(name: "php_app", type: "php", repository: repository).language).to eq("php")
|
63
|
+
expect(account.applications.create!(name: "nodejs_app", type: "nodejs", repository: repository).language).to eq("nodejs")
|
64
|
+
end
|
65
|
+
end
|