virtualmonkey 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/LICENSE +20 -0
- data/README.rdoc +77 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/bin/grinder +102 -0
- data/bin/mcicp +46 -0
- data/bin/monkey +12 -0
- data/bin/vary_instance_types +59 -0
- data/config/cloud_variables/all_clouds.json +30 -0
- data/config/cloud_variables/east.json +9 -0
- data/config/cloud_variables/rackspace.json +7 -0
- data/config/cloud_variables/west.json +9 -0
- data/config/common_inputs/apache_haproxy.json +27 -0
- data/config/common_inputs/base.json +5 -0
- data/config/common_inputs/ebs_toolbox.json +10 -0
- data/config/common_inputs/haproxy.json +15 -0
- data/config/common_inputs/lamp.json +30 -0
- data/config/common_inputs/mysql.json +24 -0
- data/config/common_inputs/none.json +4 -0
- data/config/common_inputs/php.json +25 -0
- data/config/common_inputs/php_aio_trial_chef_alpha.json +3 -0
- data/config/common_inputs/php_app_fe_chef.json +12 -0
- data/config/common_inputs/php_elb.json +12 -0
- data/config/common_inputs/qstart.json +5 -0
- data/config/common_inputs/rails.json +31 -0
- data/config/common_inputs/rails_aio_demo_chef_alpha.json +3 -0
- data/config/common_inputs/rails_aio_developer_chef_alpha.json +10 -0
- data/config/common_inputs/rsgrid.json +10 -0
- data/config/common_inputs/tomcat.json +15 -0
- data/config/common_inputs/windows_blog_engine.json +3 -0
- data/config/common_inputs/windows_net_aio.json +14 -0
- data/config/troop/11H1/backup/base.json +10 -0
- data/config/troop/11H1/backup/lamp_mysql_50.json +10 -0
- data/config/troop/11H1/backup/lamp_mysql_51.json +10 -0
- data/config/troop/11H1/backup/loadbalancer-php.json +13 -0
- data/config/troop/11H1/backup/loadbalancer.json +14 -0
- data/config/troop/11H1/backup/loadbalancer_rails.json +13 -0
- data/config/troop/11H1/backup/loadbalancer_tomcat6.json +13 -0
- data/config/troop/11H1/backup/mysql50.json +11 -0
- data/config/troop/11H1/backup/mysql50_toolbox.json +12 -0
- data/config/troop/11H1/backup/mysql51.json +11 -0
- data/config/troop/11H1/backup/mysql51_toolbox.json +12 -0
- data/config/troop/11H1/backup/php_elb.json +11 -0
- data/config/troop/11H1/base.json +10 -0
- data/config/troop/11H1/ebs_toolbox.json +12 -0
- data/config/troop/11H1/lamp_mysql_50.json +10 -0
- data/config/troop/11H1/lamp_mysql_51.json +10 -0
- data/config/troop/11H1/loadbalancer-php.json +13 -0
- data/config/troop/11H1/loadbalancer.json +17 -0
- data/config/troop/11H1/loadbalancer_rails.json +13 -0
- data/config/troop/11H1/loadbalancer_tomcat6.json +13 -0
- data/config/troop/11H1/mysql50.json +11 -0
- data/config/troop/11H1/mysql50_toolbox.json +12 -0
- data/config/troop/11H1/mysql51.json +11 -0
- data/config/troop/11H1/mysql51_awsdns.json +11 -0
- data/config/troop/11H1/mysql51_debug.json +11 -0
- data/config/troop/11H1/mysql51_toolbox.json +12 -0
- data/config/troop/11H1/php.json +13 -0
- data/config/troop/11H1/php_elb.json +11 -0
- data/config/troop/11H1/rails.json +13 -0
- data/config/troop/11H1/tomcat6.json +13 -0
- data/config/troop/chef_quickstart.json +10 -0
- data/config/troop/just_elb +10 -0
- data/config/troop/lamp_v4.json +10 -0
- data/config/troop/patch_test.json +10 -0
- data/config/troop/rightlink.json +10 -0
- data/config/troop/simple_fail.json +11 -0
- data/config/troop/simple_pass.json +11 -0
- data/config/troop/windows_blog_engine.json +10 -0
- data/config/troop/windows_net_aio.json +10 -0
- data/config/troop/windows_quick_start.json +10 -0
- data/features/base.rb +31 -0
- data/features/db_toolbox.rb +59 -0
- data/features/ebs_toolbox.rb +62 -0
- data/features/lamp.rb +33 -0
- data/features/lb-apache-haproxy.rb +49 -0
- data/features/mysql_5.x_v2_v4_from_scratch.rb +71 -0
- data/features/mysql_5.x_v2_v4_from_scratch_awsdns.rb +71 -0
- data/features/mysql_5.x_v2_v4_from_scratch_dyndns.rb +71 -0
- data/features/mysql_v1_upgrade_v2.rb +54 -0
- data/features/old_cuke_features/Rakefile +121 -0
- data/features/old_cuke_features/Steps-TODO +31 -0
- data/features/old_cuke_features/app_state.feature +25 -0
- data/features/old_cuke_features/app_test.feature +24 -0
- data/features/old_cuke_features/base.feature +16 -0
- data/features/old_cuke_features/chef_quickstart.feature +11 -0
- data/features/old_cuke_features/db_toolbox.feature +38 -0
- data/features/old_cuke_features/ebs_toolbox.feature +39 -0
- data/features/old_cuke_features/elb_create_delete.feature +41 -0
- data/features/old_cuke_features/elb_generic.feature +27 -0
- data/features/old_cuke_features/fe_app_checks.feature +21 -0
- data/features/old_cuke_features/just-start.feature +13 -0
- data/features/old_cuke_features/lamp.feature +15 -0
- data/features/old_cuke_features/lb-apache-haproxy.feature +27 -0
- data/features/old_cuke_features/mysql_5.x_v2_v4_from_scratch.feature +33 -0
- data/features/old_cuke_features/mysql_5.x_v2_v4_from_scratch_awsdns.feature +33 -0
- data/features/old_cuke_features/mysql_5.x_v2_v4_from_scratch_dyndns.feature +33 -0
- data/features/old_cuke_features/mysql_chef_premium.feature +27 -0
- data/features/old_cuke_features/mysql_chef_premium_from_scratch.feature +37 -0
- data/features/old_cuke_features/mysql_v1_upgrade_v2.feature +42 -0
- data/features/old_cuke_features/php.feature +27 -0
- data/features/old_cuke_features/php_aio_trial_chef_alpha.feature +11 -0
- data/features/old_cuke_features/php_chef.feature +21 -0
- data/features/old_cuke_features/php_elb.feature +41 -0
- data/features/old_cuke_features/rails.feature +26 -0
- data/features/old_cuke_features/rails_aio_developer_chef.feature +17 -0
- data/features/old_cuke_features/reboot.feature +23 -0
- data/features/old_cuke_features/rightlink.feature +19 -0
- data/features/old_cuke_features/rsgrid.feature +19 -0
- data/features/old_cuke_features/simple.feature +8 -0
- data/features/old_cuke_features/simple_fail.feature +9 -0
- data/features/old_cuke_features/start-stop.feature +13 -0
- data/features/old_cuke_features/step_definitions/app.rb +21 -0
- data/features/old_cuke_features/step_definitions/deployment_steps.rb +112 -0
- data/features/old_cuke_features/step_definitions/ebs.rb +36 -0
- data/features/old_cuke_features/step_definitions/elb.rb +35 -0
- data/features/old_cuke_features/step_definitions/lb.rb +22 -0
- data/features/old_cuke_features/step_definitions/mysql_steps.rb +84 -0
- data/features/old_cuke_features/terminate.feature +7 -0
- data/features/old_cuke_features/tomcat6-tests-TODO +29 -0
- data/features/old_cuke_features/tomcat6.feature +27 -0
- data/features/patch_test.rb +33 -0
- data/features/php.rb +54 -0
- data/features/php_elb.rb +78 -0
- data/features/rails.rb +54 -0
- data/features/start_only.rb +26 -0
- data/features/tomcat6.rb +54 -0
- data/lib/virtualmonkey.rb +28 -0
- data/lib/virtualmonkey/application.rb +75 -0
- data/lib/virtualmonkey/application_frontend.rb +42 -0
- data/lib/virtualmonkey/command.rb +39 -0
- data/lib/virtualmonkey/command/clone.rb +50 -0
- data/lib/virtualmonkey/command/create.rb +21 -0
- data/lib/virtualmonkey/command/destroy.rb +51 -0
- data/lib/virtualmonkey/command/list.rb +10 -0
- data/lib/virtualmonkey/command/run.rb +76 -0
- data/lib/virtualmonkey/command/troop.rb +146 -0
- data/lib/virtualmonkey/cuke_monk.rb +184 -0
- data/lib/virtualmonkey/deployment_monk.rb +132 -0
- data/lib/virtualmonkey/deployment_runner.rb +333 -0
- data/lib/virtualmonkey/ebs.rb +161 -0
- data/lib/virtualmonkey/ebs_runner.rb +59 -0
- data/lib/virtualmonkey/elb_runner.rb +194 -0
- data/lib/virtualmonkey/fe_app_runner.rb +7 -0
- data/lib/virtualmonkey/file_locations.rb +7 -0
- data/lib/virtualmonkey/frontend.rb +124 -0
- data/lib/virtualmonkey/http_checks.rb +33 -0
- data/lib/virtualmonkey/index.html.erb +109 -0
- data/lib/virtualmonkey/lamp_runner.rb +29 -0
- data/lib/virtualmonkey/mysql.rb +172 -0
- data/lib/virtualmonkey/mysql_runner.rb +108 -0
- data/lib/virtualmonkey/mysql_toolbox_runner.rb +51 -0
- data/lib/virtualmonkey/patch_runner.rb +46 -0
- data/lib/virtualmonkey/php_aio_trial_chef_runner.rb +6 -0
- data/lib/virtualmonkey/php_chef_runner.rb +69 -0
- data/lib/virtualmonkey/rails_aio_developer_chef_runner.rb +8 -0
- data/lib/virtualmonkey/shared_dns.rb +67 -0
- data/lib/virtualmonkey/simple.rb +5 -0
- data/lib/virtualmonkey/simple_runner.rb +6 -0
- data/lib/virtualmonkey/test_case_interface.rb +151 -0
- data/lib/virtualmonkey/unified_application.rb +40 -0
- data/spec/bug3518.rb +16 -0
- data/spec/concurrent_writes_spec.rb +26 -0
- data/spec/cuke_job_spec.rb +26 -0
- data/spec/ek.rb +28 -0
- data/spec/little_ruby.rb +20 -0
- data/spec/mini.rb +25 -0
- data/spec/monitoring.rb +13 -0
- data/spec/release_aws_dns.rb +5 -0
- data/spec/release_dns.rb +5 -0
- data/spec/release_dyndns.rb +5 -0
- data/spec/shared_resources_spec.rb +25 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/virtualmonkey_spec.rb +7 -0
- data/virtualmonkey.gemspec +265 -0
- metadata +428 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"tag":"APACHE_HAPROXY_TROOP",
|
3
|
+
"feature":"lb-apache-haproxy.rb",
|
4
|
+
"common_inputs":[ "haproxy.json",
|
5
|
+
"php.json",
|
6
|
+
"rails.json",
|
7
|
+
"tomcat6.json"],
|
8
|
+
"runner":"SimpleRunner",
|
9
|
+
"server_template_ids":[
|
10
|
+
"84648",
|
11
|
+
"84648",
|
12
|
+
"84644",
|
13
|
+
"84651",
|
14
|
+
"84647"
|
15
|
+
],
|
16
|
+
"cloud_variables":"all_clouds.json"
|
17
|
+
}
|
data/features/base.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
#@base
|
2
|
+
#
|
3
|
+
# Feature: Base Server Test
|
4
|
+
# Tests the base server functions
|
5
|
+
#
|
6
|
+
# Scenario: base server test
|
7
|
+
#
|
8
|
+
# Given A simple deployment
|
9
|
+
@runner = VirtualMonkey::SimpleRunner.new(ENV['DEPLOYMENT'])
|
10
|
+
|
11
|
+
# Then I should stop the servers
|
12
|
+
@runner.behavior(:stop_all)
|
13
|
+
|
14
|
+
# Then I should launch all servers
|
15
|
+
@runner.behavior(:launch_all)
|
16
|
+
|
17
|
+
# Then I should wait for the state of "all" servers to be "operational"
|
18
|
+
@runner.behavior(:wait_for_all, "operational")
|
19
|
+
|
20
|
+
# Then I should check that monitoring is enabled
|
21
|
+
@runner.behavior(:check_monitoring)
|
22
|
+
|
23
|
+
# Then I should reboot the servers
|
24
|
+
@runner.behavior(:reboot_all)
|
25
|
+
|
26
|
+
# Then I should wait for the state of "all" servers to be "operational"
|
27
|
+
@runner.behavior(:wait_for_all, "operational")
|
28
|
+
|
29
|
+
# Then I should check that monitoring is enabled
|
30
|
+
@runner.behavior(:check_monitoring)
|
31
|
+
|
@@ -0,0 +1,59 @@
|
|
1
|
+
#@mysql_5.x
|
2
|
+
#Feature: mysql toolbox
|
3
|
+
# Tests the RightScale premium ServerTemplate
|
4
|
+
#
|
5
|
+
# Scenario: Run all toolbox scripts
|
6
|
+
##
|
7
|
+
## PHASE 1) Launch a few DB servers. Make one the master.
|
8
|
+
##
|
9
|
+
# Given A MySQL Toolbox deployment
|
10
|
+
@runner = VirtualMonkey::MysqlToolboxRunner.new(ENV['DEPLOYMENT'])
|
11
|
+
|
12
|
+
# Then I should set a variation MySQL DNS
|
13
|
+
@runner.set_var(:setup_dns, "virtualmonkey_shared_resources") # DNSMadeEasy
|
14
|
+
|
15
|
+
# Then I should set a variation lineage
|
16
|
+
@runner.set_var(:set_variation_lineage)
|
17
|
+
|
18
|
+
# Then I should set a variation stripe count of "3"
|
19
|
+
@runner.set_var(:set_variation_stripe_count, 3)
|
20
|
+
|
21
|
+
# Then I should set a variation volume size "3"
|
22
|
+
@runner.set_var(:set_variation_volume_size, 3)
|
23
|
+
|
24
|
+
# Then I should stop the servers
|
25
|
+
@runner.behavior(:stop_all)
|
26
|
+
|
27
|
+
# Then I should launch all servers
|
28
|
+
@runner.behavior(:launch_all)
|
29
|
+
|
30
|
+
# Then I should wait for the state of "all" servers to be "operational"
|
31
|
+
@runner.behavior(:wait_for_all, "operational")
|
32
|
+
|
33
|
+
# Then I should create master from scratch
|
34
|
+
@runner.behavior(:create_master)
|
35
|
+
|
36
|
+
##
|
37
|
+
## PHASE 2) Run checks for the basic scripts
|
38
|
+
##
|
39
|
+
### TODO We need a non-mysql server that doesn't have continuous backups enabled
|
40
|
+
## Then I should test the backup script operations
|
41
|
+
# @runner.behavior(:test_backup_script_operations)
|
42
|
+
#
|
43
|
+
##
|
44
|
+
## PHASE 3) restore the snapshot on another server
|
45
|
+
##
|
46
|
+
# Then I should backup the volume
|
47
|
+
@runner.behavior(:create_backup)
|
48
|
+
|
49
|
+
## Then I should test the restore operations
|
50
|
+
# @runner.behavior(:test_restore)
|
51
|
+
#
|
52
|
+
##
|
53
|
+
## PHASE 4) Do the grow EBS tests
|
54
|
+
##
|
55
|
+
# Then I should test the restore grow operations
|
56
|
+
@runner.behavior(:test_restore_grow)
|
57
|
+
|
58
|
+
## Then I should stop the servers
|
59
|
+
# @runner.behavior(:stop_all)
|