engineyard-serverside 2.7.0.pre → 2.7.8pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. data/bin/engineyard-serverside +1 -1
  2. data/lib/engineyard-serverside/about.rb +8 -7
  3. data/lib/engineyard-serverside/cli.rb +225 -4
  4. data/lib/engineyard-serverside/cli_helpers.rb +53 -0
  5. data/lib/engineyard-serverside/configuration.rb +0 -1
  6. data/lib/engineyard-serverside/dependency_manager/bundler.rb +18 -46
  7. data/lib/engineyard-serverside/dependency_manager/npm.rb +1 -12
  8. data/lib/engineyard-serverside/deploy.rb +45 -7
  9. data/lib/engineyard-serverside/deploy_hook.rb +83 -20
  10. data/lib/engineyard-serverside/maintenance.rb +9 -1
  11. data/lib/engineyard-serverside/paths.rb +0 -11
  12. data/lib/engineyard-serverside/rails_assets.rb +1 -2
  13. data/lib/engineyard-serverside/version.rb +1 -1
  14. data/spec/archive_deploy_spec.rb +53 -0
  15. data/spec/basic_deploy_spec.rb +26 -0
  16. data/spec/bundler_deploy_spec.rb +139 -0
  17. data/spec/configuration_spec.rb +205 -0
  18. data/spec/custom_deploy_spec.rb +128 -0
  19. data/spec/deploy_hook_spec.rb +362 -0
  20. data/spec/deprecation_spec.rb +23 -0
  21. data/spec/ey_yml_customized_deploy_spec.rb +99 -0
  22. data/spec/fixtures/gitrepo.tar.gz +0 -0
  23. data/{lib/engineyard-serverside/callbacks/hooks.rb → spec/fixtures/gitrepo/bar} +0 -0
  24. data/spec/fixtures/gitrepo/foo +0 -0
  25. data/spec/fixtures/invalid_hook.rb +1 -0
  26. data/spec/fixtures/lockfiles/0.9-no-bundler +111 -0
  27. data/spec/fixtures/lockfiles/0.9-with-bundler +117 -0
  28. data/spec/fixtures/lockfiles/1.0-no-bundler +54 -0
  29. data/spec/fixtures/lockfiles/1.0.0.rc.1-with-bundler +162 -0
  30. data/spec/fixtures/lockfiles/1.0.18-do_mysql +88 -0
  31. data/spec/fixtures/lockfiles/1.0.18-do_postgres +79 -0
  32. data/spec/fixtures/lockfiles/1.0.18-mysql +43 -0
  33. data/spec/fixtures/lockfiles/1.0.18-mysql2 +43 -0
  34. data/spec/fixtures/lockfiles/1.0.18-pg +43 -0
  35. data/spec/fixtures/lockfiles/1.0.6-no-bundler +51 -0
  36. data/spec/fixtures/lockfiles/1.0.6-with-any-bundler +52 -0
  37. data/spec/fixtures/lockfiles/1.0.6-with-bundler +52 -0
  38. data/spec/fixtures/lockfiles/1.3.1-rails-3.2.13 +112 -0
  39. data/spec/fixtures/lockfiles/not-a-lockfile +1 -0
  40. data/spec/fixtures/repos/assets_detected/Gemfile +5 -0
  41. data/spec/fixtures/repos/assets_detected/Gemfile.lock +88 -0
  42. data/spec/fixtures/repos/assets_detected/README +1 -0
  43. data/spec/fixtures/repos/assets_detected/Rakefile +5 -0
  44. data/spec/fixtures/repos/assets_detected/app/assets/empty +0 -0
  45. data/spec/fixtures/repos/assets_detected/config/application.rb +5 -0
  46. data/spec/fixtures/repos/assets_detected/config/ey.yml +3 -0
  47. data/spec/fixtures/repos/assets_disabled/Gemfile +5 -0
  48. data/spec/fixtures/repos/assets_disabled/Gemfile.lock +88 -0
  49. data/spec/fixtures/repos/assets_disabled/README +1 -0
  50. data/spec/fixtures/repos/assets_disabled/Rakefile +6 -0
  51. data/spec/fixtures/repos/assets_disabled/app/assets/empty +0 -0
  52. data/spec/fixtures/repos/assets_disabled/config/application.rb +5 -0
  53. data/spec/fixtures/repos/assets_disabled/config/ey.yml +3 -0
  54. data/spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile +5 -0
  55. data/spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile.lock +88 -0
  56. data/spec/fixtures/repos/assets_disabled_in_ey_yml/README +1 -0
  57. data/spec/fixtures/repos/assets_disabled_in_ey_yml/Rakefile +6 -0
  58. data/spec/fixtures/repos/assets_disabled_in_ey_yml/app/assets/empty +0 -0
  59. data/spec/fixtures/repos/assets_disabled_in_ey_yml/config/application.rb +5 -0
  60. data/spec/fixtures/repos/assets_disabled_in_ey_yml/config/ey.yml +5 -0
  61. data/spec/fixtures/repos/assets_disabled_utf8/Gemfile +5 -0
  62. data/spec/fixtures/repos/assets_disabled_utf8/Gemfile.lock +88 -0
  63. data/spec/fixtures/repos/assets_disabled_utf8/README +3 -0
  64. data/spec/fixtures/repos/assets_disabled_utf8/Rakefile +5 -0
  65. data/spec/fixtures/repos/assets_disabled_utf8/app/assets/empty +0 -0
  66. data/spec/fixtures/repos/assets_disabled_utf8/config/application.rb +7 -0
  67. data/spec/fixtures/repos/assets_disabled_utf8/config/ey.yml +3 -0
  68. data/spec/fixtures/repos/assets_enabled_all/Gemfile +5 -0
  69. data/spec/fixtures/repos/assets_enabled_all/Gemfile.lock +88 -0
  70. data/spec/fixtures/repos/assets_enabled_all/README +1 -0
  71. data/spec/fixtures/repos/assets_enabled_all/app/assets/empty +0 -0
  72. data/spec/fixtures/repos/assets_enabled_all/config/application.rb +5 -0
  73. data/spec/fixtures/repos/assets_enabled_all/config/ey.yml +6 -0
  74. data/spec/fixtures/repos/assets_enabled_all/script/assets +5 -0
  75. data/spec/fixtures/repos/assets_enabled_all/tmp/obstruction +1 -0
  76. data/spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile +3 -0
  77. data/spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile.lock +10 -0
  78. data/spec/fixtures/repos/assets_enabled_in_ey_yml/README +1 -0
  79. data/spec/fixtures/repos/assets_enabled_in_ey_yml/Rakefile +8 -0
  80. data/spec/fixtures/repos/assets_enabled_in_ey_yml/config/ey.yml +4 -0
  81. data/spec/fixtures/repos/assets_enabled_util_only/Gemfile +5 -0
  82. data/spec/fixtures/repos/assets_enabled_util_only/Gemfile.lock +88 -0
  83. data/spec/fixtures/repos/assets_enabled_util_only/README +1 -0
  84. data/spec/fixtures/repos/assets_enabled_util_only/Rakefile +6 -0
  85. data/spec/fixtures/repos/assets_enabled_util_only/app/assets/empty +0 -0
  86. data/spec/fixtures/repos/assets_enabled_util_only/config/application.rb +5 -0
  87. data/spec/fixtures/repos/assets_enabled_util_only/config/ey.yml +6 -0
  88. data/spec/fixtures/repos/assets_in_hook/Gemfile +5 -0
  89. data/spec/fixtures/repos/assets_in_hook/Gemfile.lock +88 -0
  90. data/spec/fixtures/repos/assets_in_hook/README +2 -0
  91. data/spec/fixtures/repos/assets_in_hook/Rakefile +5 -0
  92. data/spec/fixtures/repos/assets_in_hook/app/assets/empty +0 -0
  93. data/spec/fixtures/repos/assets_in_hook/config/application.rb +5 -0
  94. data/spec/fixtures/repos/assets_in_hook/config/ey.yml +3 -0
  95. data/spec/fixtures/repos/assets_in_hook/deploy/before_compile_assets.rb +2 -0
  96. data/spec/fixtures/repos/bundle_fails/Gemfile +1 -0
  97. data/spec/fixtures/repos/bundle_fails/README +1 -0
  98. data/spec/fixtures/repos/bundle_fails/deploy/after_bundle.rb +1 -0
  99. data/spec/fixtures/repos/bundler_disabled/Gemfile +4 -0
  100. data/spec/fixtures/repos/bundler_disabled/Gemfile.lock +12 -0
  101. data/spec/fixtures/repos/bundler_disabled/README +1 -0
  102. data/spec/fixtures/repos/bundler_disabled/config/ey.yml +2 -0
  103. data/spec/fixtures/repos/bundler_disabled/deploy/after_bundle.rb +1 -0
  104. data/spec/fixtures/repos/bundler_disabled/deploy/before_bundle.rb +1 -0
  105. data/spec/fixtures/repos/default/Gemfile +4 -0
  106. data/spec/fixtures/repos/default/Gemfile.lock +12 -0
  107. data/spec/fixtures/repos/default/README +5 -0
  108. data/spec/fixtures/repos/default/ey.yml +3 -0
  109. data/spec/fixtures/repos/executable_hooks/README +1 -0
  110. data/spec/fixtures/repos/executable_hooks/deploy/before_restart +72 -0
  111. data/spec/fixtures/repos/executable_hooks_not_executable/README +3 -0
  112. data/spec/fixtures/repos/executable_hooks_not_executable/deploy/before_restart +3 -0
  113. data/spec/fixtures/repos/ey_yml/Gemfile +4 -0
  114. data/spec/fixtures/repos/ey_yml/Gemfile.lock +12 -0
  115. data/spec/fixtures/repos/ey_yml/README +1 -0
  116. data/spec/fixtures/repos/ey_yml/config/ey.yml +18 -0
  117. data/spec/fixtures/repos/ey_yml/deploy/before_migrate.rb +6 -0
  118. data/spec/fixtures/repos/ey_yml_alt/Gemfile +4 -0
  119. data/spec/fixtures/repos/ey_yml_alt/Gemfile.lock +12 -0
  120. data/spec/fixtures/repos/ey_yml_alt/README +1 -0
  121. data/spec/fixtures/repos/ey_yml_alt/deploy/before_migrate.rb +6 -0
  122. data/spec/fixtures/repos/ey_yml_alt/ey.yml +12 -0
  123. data/spec/fixtures/repos/hook_fails/README +1 -0
  124. data/spec/fixtures/repos/hook_fails/deploy/before_deploy.rb +1 -0
  125. data/spec/fixtures/repos/hooks/README +1 -0
  126. data/spec/fixtures/repos/hooks/deploy/after_bundle.rb +1 -0
  127. data/spec/fixtures/repos/hooks/deploy/after_compile_assets.rb +1 -0
  128. data/spec/fixtures/repos/hooks/deploy/after_deploy.rb +1 -0
  129. data/spec/fixtures/repos/hooks/deploy/after_migrate.rb +1 -0
  130. data/spec/fixtures/repos/hooks/deploy/after_restart.rb +1 -0
  131. data/spec/fixtures/repos/hooks/deploy/after_symlink.rb +1 -0
  132. data/spec/fixtures/repos/hooks/deploy/before_bundle.rb +1 -0
  133. data/spec/fixtures/repos/hooks/deploy/before_compile_assets.rb +1 -0
  134. data/spec/fixtures/repos/hooks/deploy/before_deploy.rb +1 -0
  135. data/spec/fixtures/repos/hooks/deploy/before_migrate.rb +1 -0
  136. data/spec/fixtures/repos/hooks/deploy/before_restart.rb +1 -0
  137. data/spec/fixtures/repos/hooks/deploy/before_symlink.rb +1 -0
  138. data/spec/fixtures/repos/multi_dep_manager/README +1 -0
  139. data/spec/fixtures/repos/multi_dep_manager/composer.json +5 -0
  140. data/spec/fixtures/repos/multi_dep_manager/composer.lock +462 -0
  141. data/spec/fixtures/repos/multi_dep_manager/package.json +7 -0
  142. data/spec/fixtures/repos/multi_dep_manager/public/index.php +4 -0
  143. data/spec/fixtures/repos/no_ey_config/Gemfile +3 -0
  144. data/spec/fixtures/repos/no_ey_config/Gemfile.lock +10 -0
  145. data/spec/fixtures/repos/no_ey_config/README +1 -0
  146. data/spec/fixtures/repos/no_ey_config/ey.yml +3 -0
  147. data/spec/fixtures/repos/no_gemfile_lock/Gemfile +4 -0
  148. data/spec/fixtures/repos/no_gemfile_lock/README +1 -0
  149. data/spec/fixtures/repos/no_gemfile_lock/ey.yml +3 -0
  150. data/spec/fixtures/repos/nodejs/README +1 -0
  151. data/spec/fixtures/repos/nodejs/package.json +7 -0
  152. data/spec/fixtures/repos/not_bundled/README +1 -0
  153. data/spec/fixtures/repos/npm_disabled/README +1 -0
  154. data/spec/fixtures/repos/npm_disabled/config/ey.yml +2 -0
  155. data/spec/fixtures/repos/npm_disabled/package.json +7 -0
  156. data/spec/fixtures/repos/php_composer_disabled/README +1 -0
  157. data/spec/fixtures/repos/php_composer_disabled/composer.json +5 -0
  158. data/spec/fixtures/repos/php_composer_disabled/composer.lock +462 -0
  159. data/spec/fixtures/repos/php_composer_disabled/config/ey.yml +2 -0
  160. data/spec/fixtures/repos/php_composer_disabled/public/index.php +4 -0
  161. data/spec/fixtures/repos/php_composer_lock/README +1 -0
  162. data/spec/fixtures/repos/php_composer_lock/composer.json +5 -0
  163. data/spec/fixtures/repos/php_composer_lock/composer.lock +462 -0
  164. data/spec/fixtures/repos/php_composer_lock/public/index.php +4 -0
  165. data/spec/fixtures/repos/php_no_composer_lock/README +1 -0
  166. data/spec/fixtures/repos/php_no_composer_lock/composer.json +21 -0
  167. data/spec/fixtures/repos/php_no_composer_lock/public/index.php +4 -0
  168. data/spec/fixtures/repos/public_system/Gemfile +4 -0
  169. data/spec/fixtures/repos/public_system/Gemfile.lock +12 -0
  170. data/spec/fixtures/repos/public_system/README +5 -0
  171. data/spec/fixtures/repos/public_system/ey.yml +3 -0
  172. data/spec/fixtures/repos/public_system/public/system/cant_touch_this.txt +3 -0
  173. data/spec/fixtures/repos/sqlite3/Gemfile +4 -0
  174. data/spec/fixtures/repos/sqlite3/Gemfile.lock +89 -0
  175. data/spec/fixtures/repos/sqlite3/README +1 -0
  176. data/spec/fixtures/retwisj.war +0 -0
  177. data/spec/fixtures/valid_hook.rb +1 -0
  178. data/spec/git_strategy_spec.rb +34 -0
  179. data/spec/lockfile_parser_spec.rb +122 -0
  180. data/spec/maintenance_spec.rb +44 -0
  181. data/spec/multi_dependency_manager_spec.rb +25 -0
  182. data/spec/nodejs_deploy_spec.rb +30 -0
  183. data/spec/php_deploy_spec.rb +81 -0
  184. data/spec/platform_configure_spec.rb +61 -0
  185. data/spec/rails31_deploy_spec.rb +164 -0
  186. data/spec/restart_spec.rb +43 -0
  187. data/spec/rollback_spec.rb +87 -0
  188. data/spec/server_spec.rb +70 -0
  189. data/spec/services_deploy_spec.rb +153 -0
  190. data/spec/shell_spec.rb +57 -0
  191. data/spec/source/archive_spec.rb +33 -0
  192. data/spec/source/git_spec.rb +44 -0
  193. data/spec/spec_helper.rb +355 -0
  194. data/spec/sqlite3_deploy_spec.rb +38 -0
  195. data/spec/support/integration.rb +103 -0
  196. data/spec/support/source_doubles.rb +28 -0
  197. data/spec/support/timecop.rb +5 -0
  198. data/spec/symlink_spec.rb +15 -0
  199. metadata +522 -184
  200. data/lib/engineyard-serverside/callbacks.rb +0 -11
  201. data/lib/engineyard-serverside/callbacks/collection.rb +0 -17
  202. data/lib/engineyard-serverside/callbacks/collection/base.rb +0 -94
  203. data/lib/engineyard-serverside/callbacks/collection/combined.rb +0 -45
  204. data/lib/engineyard-serverside/callbacks/collection/deploy_hooks.rb +0 -21
  205. data/lib/engineyard-serverside/callbacks/collection/service_hooks.rb +0 -17
  206. data/lib/engineyard-serverside/callbacks/collection/service_hooks/collection.rb +0 -24
  207. data/lib/engineyard-serverside/callbacks/collection/service_hooks/combined.rb +0 -40
  208. data/lib/engineyard-serverside/callbacks/distributor.rb +0 -23
  209. data/lib/engineyard-serverside/callbacks/distributor/base.rb +0 -38
  210. data/lib/engineyard-serverside/callbacks/distributor/executable.rb +0 -19
  211. data/lib/engineyard-serverside/callbacks/distributor/executable/runnable.rb +0 -41
  212. data/lib/engineyard-serverside/callbacks/distributor/executable/unrunnable.rb +0 -19
  213. data/lib/engineyard-serverside/callbacks/distributor/ruby.rb +0 -59
  214. data/lib/engineyard-serverside/callbacks/distributor/ruby/distributor.rb +0 -57
  215. data/lib/engineyard-serverside/callbacks/hooks/app.rb +0 -17
  216. data/lib/engineyard-serverside/callbacks/hooks/base.rb +0 -39
  217. data/lib/engineyard-serverside/callbacks/hooks/service.rb +0 -24
  218. data/lib/engineyard-serverside/callbacks/service_hook.rb +0 -20
  219. data/lib/engineyard-serverside/cli/app.rb +0 -136
  220. data/lib/engineyard-serverside/cli/helpers.rb +0 -58
  221. data/lib/engineyard-serverside/cli/server_hash_extractor.rb +0 -49
  222. data/lib/engineyard-serverside/cli/workflows.rb +0 -45
  223. data/lib/engineyard-serverside/cli/workflows/base.rb +0 -78
  224. data/lib/engineyard-serverside/cli/workflows/calling_deploy_hooks.rb +0 -31
  225. data/lib/engineyard-serverside/cli/workflows/deploying_applications.rb +0 -28
  226. data/lib/engineyard-serverside/cli/workflows/disabling_maintenance.rb +0 -29
  227. data/lib/engineyard-serverside/cli/workflows/enabling_maintenance.rb +0 -29
  228. data/lib/engineyard-serverside/cli/workflows/errors.rb +0 -13
  229. data/lib/engineyard-serverside/cli/workflows/helpers.rb +0 -21
  230. data/lib/engineyard-serverside/cli/workflows/integrating_servers.rb +0 -71
  231. data/lib/engineyard-serverside/cli/workflows/restarting_applications.rb +0 -36
  232. data/lib/engineyard-serverside/cli/workflows/rolling_back_applications.rb +0 -28
  233. data/lib/engineyard-serverside/cli/workflows/showing_maintenance_status.rb +0 -28
  234. data/lib/engineyard-serverside/deploy_hook/callback_context.rb +0 -77
  235. data/lib/engineyard-serverside/propagator.rb +0 -59
  236. data/lib/engineyard-serverside/slug.rb +0 -7
  237. data/lib/engineyard-serverside/slug/distributor.rb +0 -58
  238. data/lib/engineyard-serverside/slug/enabler.rb +0 -100
  239. data/lib/engineyard-serverside/slug/failure_handler.rb +0 -24
  240. data/lib/engineyard-serverside/slug/finalizer.rb +0 -86
  241. data/lib/engineyard-serverside/slug/generator.rb +0 -29
  242. data/lib/engineyard-serverside/slug/migrator.rb +0 -41
  243. data/lib/engineyard-serverside/slug/restarter.rb +0 -103
  244. data/lib/engineyard-serverside/slug/source.rb +0 -16
  245. data/lib/engineyard-serverside/slug/source/updater.rb +0 -194
  246. data/lib/railway.rb +0 -43
  247. data/lib/result.rb +0 -7
  248. data/lib/result/base.rb +0 -41
  249. data/lib/result/dsl.rb +0 -16
  250. data/lib/result/failure.rb +0 -29
  251. data/lib/result/success.rb +0 -24
  252. data/lib/runner.rb +0 -34
@@ -0,0 +1,205 @@
1
+ require 'spec_helper'
2
+
3
+ describe EY::Serverside::Deploy::Configuration do
4
+ describe "default options" do
5
+ it "has defaults" do
6
+ @config = EY::Serverside::Deploy::Configuration.new({
7
+ 'app' => 'app_name',
8
+ 'environment_name' => 'env_name',
9
+ 'account_name' => 'acc',
10
+ 'framework_env' => 'production',
11
+ })
12
+ expect(@config.app_name).to eq("app_name")
13
+ expect(@config.environment_name).to eq("env_name")
14
+ expect(@config.account_name).to eq("acc")
15
+ expect(@config.migrate).to eq(nil)
16
+ expect(@config.migrate?).to eq(false)
17
+ expect(@config.branch).to eq("master")
18
+ expect(@config.ref).to eq("master")
19
+ expect(@config.maintenance_on_migrate).to eq(true)
20
+ expect(@config.maintenance_on_restart).to eq(true)
21
+ expect(@config.required_downtime_stack?).to eq(true)
22
+ expect(@config.framework_env).to eq("production")
23
+ expect(@config.precompile_assets).to eq("detect")
24
+ expect(@config.precompile_assets_inferred?).to eq(true)
25
+ expect(@config.skip_precompile_assets?).to eq(false)
26
+ expect(@config.precompile_assets?).to eq(false)
27
+ expect(@config.asset_roles).to eq([:app_master, :app, :solo])
28
+ expect(@config.user).to eq(ENV['USER'])
29
+ expect(@config.group).to eq(ENV['USER'])
30
+ expect(@config.verbose).to eq(false)
31
+ expect(@config.copy_exclude).to eq([])
32
+ expect(@config.ignore_database_adapter_warning).to eq(false)
33
+ expect(@config.ignore_gemfile_lock_warning).to eq(false)
34
+ expect(@config.bundle_without).to eq(%w[test development])
35
+ expect(@config.extra_bundle_install_options).to eq(%w[--without test development])
36
+ expect(@config.deployed_by).to eq("Automation (User name not available)")
37
+ expect(@config.input_ref).to eq(@config.branch)
38
+ expect(@config.keep_releases).to eq(3)
39
+ expect(@config.keep_failed_releases).to eq(3)
40
+ end
41
+
42
+ it "raises when required options are not given" do
43
+ @config = EY::Serverside::Deploy::Configuration.new({})
44
+ expect { @config.app_name }.to raise_error
45
+ expect { @config.environment_name }.to raise_error
46
+ expect { @config.account_name }.to raise_error
47
+ expect { @config.framework_env }.to raise_error
48
+ end
49
+ end
50
+
51
+ context "strategies" do
52
+ let(:options) do
53
+ { "app" => "serverside" }
54
+ end
55
+
56
+ it "uses strategy if set" do
57
+ @config = EY::Serverside::Deploy::Configuration.new(
58
+ options.merge({'strategy' => 'IntegrationSpec', 'git' => 'git@github.com:engineyard/todo.git'})
59
+ )
60
+ capture do # deprecation warning
61
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::IntegrationSpec)
62
+ end
63
+ expect(read_output).to include("DEPRECATION WARNING: The configuration key 'strategy' is deprecated in favor of 'source_class'.")
64
+ end
65
+
66
+ it "uses source_class if set" do
67
+ @config = EY::Serverside::Deploy::Configuration.new(
68
+ options.merge({'source_class' => 'IntegrationSpec', 'git' => 'git@github.com:engineyard/todo.git'})
69
+ )
70
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::IntegrationSpec)
71
+ end
72
+
73
+ it "infers a git source" do
74
+ @config = EY::Serverside::Deploy::Configuration.new(
75
+ options.merge({ 'git' => 'git@github.com:engineyard/todo.git' })
76
+ )
77
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::Git)
78
+ end
79
+
80
+ it "infers a archive source" do
81
+ @config = EY::Serverside::Deploy::Configuration.new(
82
+ options.merge({'archive' => 'https://github.com/engineyard/todo/archive/master.zip'})
83
+ )
84
+
85
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::Archive)
86
+ end
87
+ end
88
+
89
+ context "command line options" do
90
+ before do
91
+ @config = EY::Serverside::Deploy::Configuration.new({
92
+ 'repository_cache' => @tempdir,
93
+ 'app' => 'app_name',
94
+ 'stack' => 'nginx_passenger',
95
+ 'framework_env' => 'development',
96
+ 'environment_name' => 'env_name',
97
+ 'account_name' => 'acc',
98
+ 'branch' => 'branch_from_command_line',
99
+ 'config' => MultiJson.dump({'custom' => 'custom_from_extra_config', 'maintenance_on_migrate' => 'false', 'precompile_assets' => 'false', 'deployed_by' => 'Martin Emde', 'input_ref' => 'input_branch'})
100
+ })
101
+ end
102
+
103
+ it "underrides options with config (directly supplied options take precedence over 'config' options)" do
104
+ expect(@config.maintenance_on_migrate).to eq(false)
105
+ expect(@config.branch).to eq("branch_from_command_line")
106
+ end
107
+
108
+ it "corrects command line supplied precompile_assets string (which relies on having a special not-set value of nil, so can't be a boolean)" do
109
+ expect(@config.skip_precompile_assets?).to eq(true)
110
+ expect(@config.precompile_assets?).to eq(false)
111
+ expect(@config.precompile_assets_inferred?).to eq(false)
112
+ end
113
+
114
+ it "doesn't require downtime on restart for nginx_passenger" do
115
+ expect(@config.maintenance_on_migrate).to eq(false)
116
+ expect(@config.maintenance_on_restart).to eq(false)
117
+ end
118
+
119
+ it "doesn't bundle --without the framework_env" do
120
+ expect(@config.bundle_without).to eq(%w[test])
121
+ end
122
+
123
+ it "gets deployed_by and input_ref correct" do
124
+ expect(@config.deployed_by).to eq("Martin Emde")
125
+ expect(@config.input_ref).to eq("input_branch")
126
+ end
127
+ end
128
+
129
+ describe "ey.yml loading" do
130
+ before(:each) do
131
+ @tempdir = `mktemp -d -t ey_yml_spec.XXXXX`.strip
132
+ @config = EY::Serverside::Deploy::Configuration.new({
133
+ 'repository_cache' => @tempdir,
134
+ 'app' => 'app_name',
135
+ 'environment_name' => 'env_name',
136
+ 'account_name' => 'acc',
137
+ 'migrate' => nil,
138
+ 'branch' => 'branch_from_command_line',
139
+ 'config' => MultiJson.dump({'custom' => 'custom_from_extra_config', 'maintenance_on_migrate' => 'false'})
140
+ })
141
+
142
+ @deploy = FullTestDeploy.new(test_servers, @config, test_shell)
143
+
144
+ @yaml_data = {
145
+ 'environments' => {
146
+ 'env_name' => {
147
+ 'copy_exclude' => ['.git'],
148
+ 'migrate' => true,
149
+ 'migration_command' => 'uh oh',
150
+ 'branch' => 'branch_from_ey_yml',
151
+ 'custom' => 'custom_from_ey_yml',
152
+ 'bundle_without' => 'only test',
153
+ 'maintenance_on_migrate' => true,
154
+ }
155
+ }
156
+ }
157
+ end
158
+
159
+ def write_ey_yml(relative_path, data)
160
+ FileUtils.mkdir_p(File.join(
161
+ @tempdir,
162
+ File.dirname(relative_path)))
163
+
164
+ File.open(File.join(@tempdir, relative_path), 'w') do |f|
165
+ f.write data.to_yaml
166
+ end
167
+ end
168
+
169
+ it "requires 'ey.yml' and adds any defined methods to the deploy" do
170
+ write_ey_yml 'ey.yml', @yaml_data
171
+ @deploy.load_ey_yml
172
+ expect(@deploy.config.copy_exclude).to eq(['.git'])
173
+ end
174
+
175
+ it "falls back to 'config/ey.yml'" do
176
+ write_ey_yml 'config/ey.yml', @yaml_data
177
+ @deploy.load_ey_yml
178
+ expect(@deploy.config.copy_exclude).to eq(['.git'])
179
+ end
180
+
181
+ it "loads at lower priority than command line options" do
182
+ write_ey_yml 'ey.yml', @yaml_data
183
+ @deploy.load_ey_yml
184
+ expect(@deploy.config.migrate?).to eq(false)
185
+ end
186
+
187
+ it "loads at lower priority than json config option" do
188
+ write_ey_yml 'ey.yml', @yaml_data
189
+ @deploy.load_ey_yml
190
+ expect(@deploy.config.branch).to eq('branch_from_command_line')
191
+ end
192
+
193
+ it "loads bundle_without from the config, which overrides the default" do
194
+ write_ey_yml 'ey.yml', @yaml_data
195
+ @deploy.load_ey_yml
196
+ expect(@deploy.config.bundle_without).to eq('only test')
197
+ end
198
+
199
+ it "overrides boolean ey.yml only options with --conifg strings" do
200
+ write_ey_yml 'ey.yml', @yaml_data
201
+ @deploy.load_ey_yml
202
+ expect(@deploy.config).not_to be_maintenance_on_migrate
203
+ end
204
+ end
205
+ end
@@ -0,0 +1,128 @@
1
+ require 'spec_helper'
2
+
3
+ describe "the EY::Serverside::Deploy API" do
4
+ it "calls tasks in the right order" do
5
+ class TestDeploy < FullTestDeploy
6
+ attr_reader :call_order
7
+ def initialize(*a)
8
+ super
9
+ @call_order = []
10
+ end
11
+
12
+ def push_code() @call_order << 'push_code' ; super end
13
+ def copy_repository_cache() @call_order << 'copy_repository_cache' ; super end
14
+ def create_revision_file() @call_order << 'create_revision_file' ; super end
15
+ def bundle() @call_order << 'bundle' ; super end
16
+ def setup_services() @call_order << 'setup_services' ; super end
17
+ def symlink_configs() @call_order << 'symlink_configs' ; super end
18
+ def migrate() @call_order << 'migrate' ; super end
19
+ def compile_assets() @call_order << 'compile_assets' ; super end
20
+ def symlink() @call_order << 'symlink' ; super end
21
+ def restart() @call_order << 'restart' ; super end
22
+ def cleanup_old_releases() @call_order << 'cleanup_old_releases' ; super end
23
+ def enable_maintenance_page() @call_order << 'enable_maintenance_page' ; super end
24
+ def disable_maintenance_page() @call_order << 'disable_maintenance_page'; super end
25
+ def gc_repository_cache() @call_order << 'gc_repository_cache' ; super end
26
+ end
27
+
28
+ config = EY::Serverside::Deploy::Configuration.new(default_configuration)
29
+
30
+ td = TestDeploy.realnew(test_servers, config, test_shell)
31
+ mock_bundler
32
+ with_mocked_commands do
33
+ capture do
34
+ td.deploy
35
+ end
36
+ end
37
+
38
+ ############################# IMPORTANT ####################################
39
+ #
40
+ # Call order is referenced in the engineyard gem eydeploy.rb documentation.
41
+ #
42
+ # https://support.cloud.engineyard.com/entries/20996661-customize-your-deployment
43
+ #
44
+ # Changing call order or removing methods may adversely affect customers
45
+ # that are using eydeploy.rb and relying on this documentation.
46
+ #
47
+ ############################################################################
48
+ expect(td.call_order).to eq(%w(
49
+ push_code
50
+ copy_repository_cache
51
+ create_revision_file
52
+ bundle
53
+ setup_services
54
+ symlink_configs
55
+ compile_assets
56
+ enable_maintenance_page
57
+ migrate
58
+ symlink
59
+ restart
60
+ disable_maintenance_page
61
+ cleanup_old_releases
62
+ gc_repository_cache))
63
+ end
64
+
65
+ describe "task overrides" do
66
+ before(:each) do
67
+ @tempdir = Pathname.new(`mktemp -d -t custom_deploy_spec.XXXXX`.strip)
68
+ end
69
+
70
+ def write_eydeploy(relative_path, contents = "def got_new_methods() 'from the file on disk' end")
71
+ path = @tempdir.join(relative_path)
72
+ path.dirname.mkpath
73
+ path.open('w') { |f| f << contents }
74
+ end
75
+
76
+ describe "eydeploy_rb disabled" do
77
+ before do
78
+ @config = EY::Serverside::Deploy::Configuration.new('app' => 'app_name', 'repository_cache' => @tempdir.to_s, 'eydeploy_rb' => 'false')
79
+ @deploy = FullTestDeploy.realnew(test_servers, @config, test_shell)
80
+ end
81
+
82
+ it "doesn't load eydeploy_rb file" do
83
+ write_eydeploy 'eydeploy.rb'
84
+ @deploy.require_custom_tasks
85
+ expect(@deploy).not_to respond_to(:got_new_methods)
86
+ end
87
+ end
88
+
89
+ describe "eydeploy_rb detect or enabled" do
90
+ before do
91
+ @config = EY::Serverside::Deploy::Configuration.new('app' => 'app_name', 'repository_cache' => @tempdir.to_s, 'eydeploy_rb' => 'true')
92
+ @deploy = FullTestDeploy.realnew(test_servers, @config, test_shell)
93
+ end
94
+
95
+ it "requires 'eydeploy.rb' and adds any defined methods to the deploy" do
96
+ write_eydeploy 'eydeploy.rb'
97
+ @deploy.require_custom_tasks
98
+ expect(@deploy.got_new_methods).to eq('from the file on disk')
99
+ end
100
+
101
+ it "falls back to 'config/eydeploy.rb'" do
102
+ write_eydeploy 'config/eydeploy.rb'
103
+ @deploy.require_custom_tasks
104
+ expect(@deploy.got_new_methods).to eq('from the file on disk')
105
+ end
106
+
107
+ it "lets you super up from any defined methods" do
108
+ write_eydeploy 'eydeploy.rb', "def value() super << ' + derived' end"
109
+
110
+ class TestDeploySuper < FullTestDeploy
111
+ def value() 'base' end
112
+ end
113
+
114
+ deploy = TestDeploySuper.realnew(test_servers, @config, test_shell)
115
+ deploy.require_custom_tasks
116
+ expect(deploy.value).to eq("base + derived")
117
+ end
118
+
119
+ it "records exceptions raised from the instance eval in the log" do
120
+ write_eydeploy 'eydeploy.rb', "raise 'Imma blow up'"
121
+ expect { @deploy.require_custom_tasks }.to raise_error
122
+ log = @log_path.read
123
+ expect(log).to match(/Exception while loading .*eydeploy\.rb/)
124
+ expect(log).to include('Imma blow up')
125
+ end
126
+ end
127
+ end
128
+ end
@@ -0,0 +1,362 @@
1
+ require 'spec_helper'
2
+
3
+ describe "deploy hooks" do
4
+ context "successful deploy with all hooks" do
5
+ before(:all) do
6
+ deploy_test_application('hooks')
7
+ end
8
+
9
+ it "runs all the hooks" do
10
+ expect(deploy_dir.join('current', 'before_deploy.ran' )).to exist
11
+ expect(deploy_dir.join('current', 'before_bundle.ran' )).to exist
12
+ expect(deploy_dir.join('current', 'after_bundle.ran' )).to exist
13
+ expect(deploy_dir.join('current', 'before_migrate.ran')).to exist
14
+ expect(deploy_dir.join('current', 'after_migrate.ran' )).to exist
15
+ expect(deploy_dir.join('current', 'before_compile_assets.ran')).to exist
16
+ expect(deploy_dir.join('current', 'after_compile_assets.ran' )).to exist
17
+ expect(deploy_dir.join('current', 'before_symlink.ran')).to exist
18
+ expect(deploy_dir.join('current', 'after_symlink.ran' )).to exist
19
+ expect(deploy_dir.join('current', 'before_restart.ran')).to exist
20
+ expect(deploy_dir.join('current', 'after_restart.ran' )).to exist
21
+ expect(deploy_dir.join('current', 'after_deploy.ran' )).to exist
22
+ end
23
+ end
24
+
25
+ context "with failing deploy hook" do
26
+ before(:all) do
27
+ begin
28
+ deploy_test_application('hook_fails', :verbose => false)
29
+ rescue EY::Serverside::RemoteFailure
30
+ end
31
+ end
32
+
33
+ it "prints the failure to the log even when non-verbose" do
34
+ out = read_output
35
+ expect(out).to match(%r|FATAL: Exception raised in deploy hook .*/deploy/before_deploy.rb.|)
36
+ expect(out).to match(%r|RuntimeError:.*Hook failing in \(eval\)|)
37
+ expect(out).to match(%r|Please fix this error before retrying.|)
38
+ end
39
+
40
+ it "retains the failed release" do
41
+ release_name = @config.paths.active_release.basename
42
+ expect(deploy_dir.join('releases_failed', release_name)).to be_directory
43
+ end
44
+ end
45
+
46
+ context "with an executable for a deploy hook" do
47
+ before(:all) do
48
+ deploy_test_application('executable_hooks')
49
+ end
50
+
51
+ it 'runs the hook' do
52
+ expect(deploy_dir.join('current', 'before_restart.ran')).to exist
53
+ end
54
+ end
55
+
56
+ context "with a non-executable, but correctly named deploy hook" do
57
+ before(:all) do
58
+ deploy_test_application('executable_hooks_not_executable')
59
+ end
60
+
61
+ it 'does not run the hook' do
62
+ expect(deploy_dir.join('current', 'before_restart.ran')).not_to exist
63
+ end
64
+
65
+ it 'outputs a message about the hook not being executable' do
66
+ expect(read_output).to match(%r|Skipping.*deploy hook.*not executable|)
67
+ end
68
+ end
69
+
70
+ context "deploy hook API" do
71
+ def deploy_hook(options={})
72
+ config = EY::Serverside::Deploy::Configuration.new({
73
+ 'app' => 'app_name',
74
+ 'framework_env' => 'staging',
75
+ 'current_roles' => ['solo'],
76
+ 'deploy_to' => deploy_dir.to_s,
77
+ }.merge(options))
78
+ # setup to run hooks since a deploy hasn't happened
79
+ config.paths.new_release!
80
+ config.paths.active_release.mkpath
81
+ EY::Serverside::DeployHook.new(config, test_shell, 'fake_test_hook')
82
+ end
83
+
84
+ context "#run" do
85
+ it "is available" do
86
+ expect(deploy_hook.eval_hook('respond_to?(:run)')).to be_truthy
87
+ end
88
+
89
+ it "runs commands like the shell does" do
90
+ ENV['COUNT'] = 'Chocula'
91
+ File.unlink("/tmp/deploy_hook_spec.the_count") rescue nil
92
+
93
+ deploy_hook.eval_hook('run("echo $COUNT > /tmp/deploy_hook_spec.the_count")')
94
+
95
+ expect(IO.read("/tmp/deploy_hook_spec.the_count").strip).to eq("Chocula")
96
+ end
97
+
98
+ it "returns true/false to indicate the command's success" do
99
+ expect(deploy_hook.eval_hook('run("true")')).to be_truthy
100
+ expect(deploy_hook.eval_hook('run("false")')).to be_falsey
101
+ end
102
+
103
+ it "raises when the bang method alternative is used" do
104
+ expect {
105
+ deploy_hook.eval_hook('run!("false")')
106
+ }.to raise_error(RuntimeError)
107
+ out = read_output
108
+ expect(out).to match(%r|FATAL: Exception raised in deploy hook .*/deploy/fake_test_hook.rb.|)
109
+ expect(out).to match(%r|RuntimeError: .*run!.*Command failed. false|)
110
+ expect(out).to match(%r|Please fix this error before retrying.|)
111
+ end
112
+ end
113
+
114
+ context "#sudo" do
115
+ it "is available" do
116
+ expect(deploy_hook.eval_hook('respond_to?(:sudo)')).to be_truthy
117
+ end
118
+
119
+ it "runs things with sudo" do
120
+ hook = deploy_hook
121
+ mock_sudo do
122
+ hook.eval_hook('sudo("true") || raise("failed")')
123
+ end
124
+ end
125
+
126
+ it "raises when the bang method alternative is used" do
127
+ hook = deploy_hook
128
+ mock_sudo do
129
+ expect {
130
+ hook.eval_hook('sudo!("false")')
131
+ }.to raise_error(RuntimeError)
132
+ end
133
+ out = read_output
134
+ expect(out).to match(%r|FATAL: Exception raised in deploy hook .*/deploy/fake_test_hook.rb.|)
135
+ expect(out).to match(%r|RuntimeError: .*sudo!.*Command failed. false|)
136
+ expect(out).to match(%r|Please fix this error before retrying.|)
137
+ end
138
+ end
139
+
140
+ context "capistrano-ish methods" do
141
+ it "has them" do
142
+ expect(deploy_hook.eval_hook('respond_to?(:latest_release) ')).to be_truthy
143
+ expect(deploy_hook.eval_hook('respond_to?(:previous_release) ')).to be_truthy
144
+ expect(deploy_hook.eval_hook('respond_to?(:all_releases) ')).to be_truthy
145
+ expect(deploy_hook.eval_hook('respond_to?(:current_path) ')).to be_truthy
146
+ expect(deploy_hook.eval_hook('respond_to?(:shared_path) ')).to be_truthy
147
+ expect(deploy_hook.eval_hook('respond_to?(:release_dir) ')).to be_truthy
148
+ expect(deploy_hook.eval_hook('respond_to?(:failed_release_dir)')).to be_truthy
149
+ expect(deploy_hook.eval_hook('respond_to?(:release_path) ')).to be_truthy
150
+ end
151
+
152
+ it "shows a deprecation warning that asks you to use config to access these variables" do
153
+ expect(deploy_hook.eval_hook('shared_path.nil?')).to be_falsey
154
+ out = read_output
155
+ expect(out).to include("Use of `shared_path` (via method_missing) is deprecated in favor of `config.shared_path` for improved error messages and compatibility.")
156
+ expect(out).to match(%r|in .*/deploy/fake_test_hook.rb|)
157
+ end
158
+ end
159
+
160
+ context "access to command line options that should be handed through to the config" do
161
+ before do
162
+ @hook = deploy_hook({'app' => 'app', 'environment_name' => 'env', 'account_name' => 'acc'})
163
+ end
164
+
165
+ it "has account_name" do
166
+ expect(@hook.eval_hook('account_name')).to eq('acc')
167
+ end
168
+
169
+ it "has environment_name" do
170
+ expect(@hook.eval_hook('environment_name')).to eq('env')
171
+ end
172
+
173
+ it "has app_name" do
174
+ expect(@hook.eval_hook('app_name')).to eq('app')
175
+ end
176
+ end
177
+
178
+ context "node" do
179
+ before(:each) do
180
+ EY::Serverside.dna_json = MultiJson.dump({
181
+ 'instance_role' => 'solo',
182
+ 'applications' => {
183
+ 'myapp' => {
184
+ 'type' => 'rails',
185
+ 'branch' => 'master',
186
+ }
187
+ }
188
+ })
189
+ end
190
+
191
+ it "is deprecated through the @node ivar" do
192
+ expect(deploy_hook.eval_hook('@node.nil?')).to be_falsey
193
+ out = read_output
194
+ expect(out).to match(%r|Use of `@node` in deploy hooks is deprecated.|)
195
+ expect(out).to match(%r|Please use `config.node`, which provides access to the same object.|)
196
+ expect(out).to match(%r|.*/deploy/fake_test_hook.rb|)
197
+ end
198
+
199
+ it "is available" do
200
+ expect(deploy_hook.eval_hook('config.node.nil?')).to be_falsey
201
+ end
202
+
203
+ it "has indifferent access" do
204
+ expect(deploy_hook.eval_hook('config.node[:instance_role] ')).to eq('solo')
205
+ expect(deploy_hook.eval_hook('config.node["instance_role"]')).to eq('solo')
206
+ end
207
+
208
+ it "has deep indifferent access" do
209
+ expect(deploy_hook.eval_hook('config.node["applications"]["myapp"]["type"]')).to eq('rails')
210
+ expect(deploy_hook.eval_hook('config.node[:applications]["myapp"][:type] ')).to eq('rails')
211
+ expect(deploy_hook.eval_hook('config.node[:applications][:myapp][:type] ')).to eq('rails')
212
+ end
213
+ end
214
+
215
+ context "config" do
216
+ it "is available" do
217
+ expect(deploy_hook.eval_hook('config.nil?')).to be_falsey
218
+ end
219
+
220
+ it "is deprecated through the @configuration ivar" do
221
+ expect(deploy_hook.eval_hook('@configuration.nil?')).to be_falsey
222
+ out = read_output
223
+ expect(out).to match(%r|Use of `@configuration` in deploy hooks is deprecated.|)
224
+ expect(out).to match(%r|Please use `config`, which provides access to the same object.|)
225
+ expect(out).to match(%r|.*/deploy/fake_test_hook.rb|)
226
+ end
227
+
228
+ it "has the configuration in it" do
229
+ expect(deploy_hook('bert' => 'ernie').eval_hook('config.bert')).to eq('ernie')
230
+ end
231
+
232
+ it "can be accessed with method calls, with [:symbols], or ['strings']" do
233
+ expect(deploy_hook('bert' => 'ernie').eval_hook('config.bert ')).to eq('ernie')
234
+ expect(deploy_hook('bert' => 'ernie').eval_hook('config[:bert] ')).to eq('ernie')
235
+ expect(deploy_hook('bert' => 'ernie').eval_hook('config["bert"]')).to eq('ernie')
236
+ end
237
+
238
+ [:repository_cache,
239
+ :release_path,
240
+ :branch,
241
+ :shared_path,
242
+ :deploy_to,
243
+ :user,
244
+ :revision,
245
+ :environment].each do |attribute|
246
+ it "has the #{attribute.inspect} attribute for compatibility with chef-deploy" do
247
+ expect(deploy_hook.eval_hook("config.has_key?(#{attribute.inspect})")).to be_truthy
248
+ end
249
+ end
250
+ end
251
+
252
+ context "environment variables" do
253
+ it "sets the framework env variables" do
254
+ expect(deploy_hook('framework_env' => 'production').eval_hook("ENV['RAILS_ENV']")).to eq('production')
255
+ expect(deploy_hook('framework_env' => 'production').eval_hook("ENV['RACK_ENV'] ")).to eq('production')
256
+ expect(deploy_hook('framework_env' => 'production').eval_hook("ENV['MERB_ENV'] ")).to eq('production')
257
+ expect(deploy_hook('framework_env' => 'production').eval_hook("ENV['NODE_ENV'] ")).to eq('production')
258
+ end
259
+ end
260
+
261
+ context "has methods to run code only on certain instances" do
262
+ def scenarios
263
+ [
264
+ ['solo' ],
265
+ ['app_master' ],
266
+ ['app' ],
267
+ ['db_master' ],
268
+ ['db_slave' ],
269
+ ['multi_role,app'],
270
+ ['multi,util' ],
271
+ ['util', 'alpha' ],
272
+ ['util', 'beta' ],
273
+ ['util', 'gamma' ],
274
+ ]
275
+ end
276
+
277
+ def where_code_runs_with(code)
278
+ scenarios.select do |role, name|
279
+ hook = deploy_hook('current_roles' => role.split(','), 'current_name' => name)
280
+ hook.eval_hook("#{code} { 'ran' } == 'ran'")
281
+ end.map do |scenario|
282
+ scenario.compact.join("_")
283
+ end.compact
284
+ end
285
+
286
+ it "#on_app_master runs on app masters and solos" do
287
+ expect(where_code_runs_with("on_app_master")).to eq(%w(solo app_master))
288
+ end
289
+
290
+ it "#on_app_servers runs on app masters, app slaves, and solos" do
291
+ expect(where_code_runs_with("on_app_servers")).to eq(%w(solo app_master app multi_role,app))
292
+ end
293
+
294
+ it "#on_app_servers_and_utilities does what it says on the tin" do
295
+ expect(where_code_runs_with("on_app_servers_and_utilities")).to eq(
296
+ %w(solo app_master app multi_role,app multi,util util_alpha util_beta util_gamma)
297
+ )
298
+ end
299
+
300
+ it "#on_utilities() runs on all utility instances" do
301
+ expect(where_code_runs_with("on_utilities")).to eq(
302
+ %w(multi,util util_alpha util_beta util_gamma)
303
+ )
304
+ end
305
+
306
+ it "#on_utilities('sometype') runs on only utilities of type 'sometype'" do
307
+ expect(where_code_runs_with("on_utilities('alpha')")).to eq(%w(util_alpha))
308
+ end
309
+
310
+ it "#on_utilities('type1', 'type2') runs on utilities of both types" do
311
+ expect(where_code_runs_with("on_utilities('alpha', 'beta')")).to eq(
312
+ %w(util_alpha util_beta)
313
+ )
314
+ end
315
+
316
+ it "#on_utilities can be invoked with (['a', 'b']) or ('a', 'b')" do
317
+ expect(where_code_runs_with("on_utilities(%w[alpha beta])")).to eq(
318
+ where_code_runs_with("on_utilities('alpha', 'beta')")
319
+ )
320
+ end
321
+ end
322
+
323
+ context "#syntax_error" do
324
+ it "returns nil for hook files containing valid Ruby syntax" do
325
+ hook_path = File.expand_path('../fixtures/valid_hook.rb', __FILE__)
326
+ expect(deploy_hook.syntax_error(hook_path)).to be_nil
327
+ end
328
+
329
+ it "returns a brief problem description for hook files containing valid Ruby syntax" do
330
+ hook_path = File.expand_path('../fixtures/invalid_hook.rb', __FILE__)
331
+ error = Regexp.escape("spec/fixtures/invalid_hook.rb:1: syntax error, unexpected '^'")
332
+ expect(deploy_hook.syntax_error(hook_path)).to match(/#{error}/)
333
+ end
334
+ end
335
+
336
+ context "errors in hooks" do
337
+ it "shows the error in a helpful way" do
338
+ expect {
339
+ deploy_hook.eval_hook('methedo_no_existo')
340
+ }.to raise_error(NameError)
341
+ out = read_output
342
+ expect(out).to match(%r|FATAL: Exception raised in deploy hook .*/deploy/fake_test_hook.rb.|)
343
+ expect(out).to match(%r|NameError: undefined local variable or method `methedo_no_existo' for|)
344
+ expect(out).to match(%r|Please fix this error before retrying.|)
345
+ end
346
+ end
347
+
348
+ context "is compatible with older deploy hook scripts" do
349
+ it "#current_role returns the first role" do
350
+ expect(deploy_hook('current_roles' => %w(a b)).eval_hook('current_role')).to eq('a')
351
+ end
352
+
353
+ it "has info, warning, debug, logged_system, and access to shell" do
354
+ expect(deploy_hook.eval_hook('respond_to?(:info) ')).to be_truthy
355
+ expect(deploy_hook.eval_hook('respond_to?(:warning) ')).to be_truthy
356
+ expect(deploy_hook.eval_hook('respond_to?(:debug) ')).to be_truthy
357
+ expect(deploy_hook.eval_hook('respond_to?(:logged_system)')).to be_truthy
358
+ expect(deploy_hook.eval_hook('respond_to?(:shell) ')).to be_truthy
359
+ end
360
+ end
361
+ end
362
+ end