engineyard-serverside 2.6.16 → 2.6.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. checksums.yaml +4 -4
  2. data/lib/engineyard-serverside/cli/app.rb +1 -1
  3. data/lib/engineyard-serverside/cli/workflows/integrating_servers.rb +14 -6
  4. data/lib/engineyard-serverside/version.rb +1 -1
  5. data/spec/archive_deploy_spec.rb +53 -0
  6. data/spec/basic_deploy_spec.rb +26 -0
  7. data/spec/bundler_deploy_spec.rb +160 -0
  8. data/spec/configuration_spec.rb +206 -0
  9. data/spec/custom_deploy_spec.rb +128 -0
  10. data/spec/deploy_hook_spec.rb +362 -0
  11. data/spec/deprecation_spec.rb +23 -0
  12. data/spec/ey_yml_customized_deploy_spec.rb +99 -0
  13. data/spec/fixtures/gitrepo.tar.gz +0 -0
  14. data/spec/fixtures/invalid_hook.rb +1 -0
  15. data/spec/fixtures/lockfiles/0.9-no-bundler +111 -0
  16. data/spec/fixtures/lockfiles/0.9-with-bundler +117 -0
  17. data/spec/fixtures/lockfiles/1.0-no-bundler +54 -0
  18. data/spec/fixtures/lockfiles/1.0.0.rc.1-with-bundler +162 -0
  19. data/spec/fixtures/lockfiles/1.0.18-do_mysql +88 -0
  20. data/spec/fixtures/lockfiles/1.0.18-do_postgres +79 -0
  21. data/spec/fixtures/lockfiles/1.0.18-mysql +43 -0
  22. data/spec/fixtures/lockfiles/1.0.18-mysql2 +43 -0
  23. data/spec/fixtures/lockfiles/1.0.18-pg +43 -0
  24. data/spec/fixtures/lockfiles/1.0.6-no-bundler +51 -0
  25. data/spec/fixtures/lockfiles/1.0.6-with-any-bundler +52 -0
  26. data/spec/fixtures/lockfiles/1.0.6-with-bundler +52 -0
  27. data/spec/fixtures/lockfiles/1.15.1-no-bundler +51 -0
  28. data/spec/fixtures/lockfiles/1.3.1-rails-3.2.13 +112 -0
  29. data/spec/fixtures/lockfiles/not-a-lockfile +1 -0
  30. data/spec/fixtures/repos/assets_detected/Gemfile +5 -0
  31. data/spec/fixtures/repos/assets_detected/Gemfile.lock +88 -0
  32. data/spec/fixtures/repos/assets_detected/README +1 -0
  33. data/spec/fixtures/repos/assets_detected/Rakefile +5 -0
  34. data/spec/fixtures/repos/assets_detected/app/assets/empty +0 -0
  35. data/spec/fixtures/repos/assets_detected/config/application.rb +5 -0
  36. data/spec/fixtures/repos/assets_detected/config/ey.yml +3 -0
  37. data/spec/fixtures/repos/assets_disabled/Gemfile +5 -0
  38. data/spec/fixtures/repos/assets_disabled/Gemfile.lock +88 -0
  39. data/spec/fixtures/repos/assets_disabled/README +1 -0
  40. data/spec/fixtures/repos/assets_disabled/Rakefile +6 -0
  41. data/spec/fixtures/repos/assets_disabled/app/assets/empty +0 -0
  42. data/spec/fixtures/repos/assets_disabled/config/application.rb +5 -0
  43. data/spec/fixtures/repos/assets_disabled/config/ey.yml +3 -0
  44. data/spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile +5 -0
  45. data/spec/fixtures/repos/assets_disabled_in_ey_yml/Gemfile.lock +88 -0
  46. data/spec/fixtures/repos/assets_disabled_in_ey_yml/README +1 -0
  47. data/spec/fixtures/repos/assets_disabled_in_ey_yml/Rakefile +6 -0
  48. data/spec/fixtures/repos/assets_disabled_in_ey_yml/app/assets/empty +0 -0
  49. data/spec/fixtures/repos/assets_disabled_in_ey_yml/config/application.rb +5 -0
  50. data/spec/fixtures/repos/assets_disabled_in_ey_yml/config/ey.yml +5 -0
  51. data/spec/fixtures/repos/assets_disabled_utf8/Gemfile +5 -0
  52. data/spec/fixtures/repos/assets_disabled_utf8/Gemfile.lock +88 -0
  53. data/spec/fixtures/repos/assets_disabled_utf8/README +3 -0
  54. data/spec/fixtures/repos/assets_disabled_utf8/Rakefile +5 -0
  55. data/spec/fixtures/repos/assets_disabled_utf8/app/assets/empty +0 -0
  56. data/spec/fixtures/repos/assets_disabled_utf8/config/application.rb +7 -0
  57. data/spec/fixtures/repos/assets_disabled_utf8/config/ey.yml +3 -0
  58. data/spec/fixtures/repos/assets_enabled_all/Gemfile +5 -0
  59. data/spec/fixtures/repos/assets_enabled_all/Gemfile.lock +88 -0
  60. data/spec/fixtures/repos/assets_enabled_all/README +1 -0
  61. data/spec/fixtures/repos/assets_enabled_all/app/assets/empty +0 -0
  62. data/spec/fixtures/repos/assets_enabled_all/config/application.rb +5 -0
  63. data/spec/fixtures/repos/assets_enabled_all/config/ey.yml +6 -0
  64. data/spec/fixtures/repos/assets_enabled_all/script/assets +5 -0
  65. data/spec/fixtures/repos/assets_enabled_all/tmp/obstruction +1 -0
  66. data/spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile +3 -0
  67. data/spec/fixtures/repos/assets_enabled_in_ey_yml/Gemfile.lock +10 -0
  68. data/spec/fixtures/repos/assets_enabled_in_ey_yml/README +1 -0
  69. data/spec/fixtures/repos/assets_enabled_in_ey_yml/Rakefile +8 -0
  70. data/spec/fixtures/repos/assets_enabled_in_ey_yml/config/ey.yml +4 -0
  71. data/spec/fixtures/repos/assets_enabled_util_only/Gemfile +5 -0
  72. data/spec/fixtures/repos/assets_enabled_util_only/Gemfile.lock +88 -0
  73. data/spec/fixtures/repos/assets_enabled_util_only/README +1 -0
  74. data/spec/fixtures/repos/assets_enabled_util_only/Rakefile +6 -0
  75. data/spec/fixtures/repos/assets_enabled_util_only/app/assets/empty +0 -0
  76. data/spec/fixtures/repos/assets_enabled_util_only/config/application.rb +5 -0
  77. data/spec/fixtures/repos/assets_enabled_util_only/config/ey.yml +6 -0
  78. data/spec/fixtures/repos/assets_error/Gemfile +5 -0
  79. data/spec/fixtures/repos/assets_error/Gemfile.lock +88 -0
  80. data/spec/fixtures/repos/assets_error/README +1 -0
  81. data/spec/fixtures/repos/assets_error/Rakefile +4 -0
  82. data/spec/fixtures/repos/assets_error/app/assets/empty +0 -0
  83. data/spec/fixtures/repos/assets_error/config/application.rb +5 -0
  84. data/spec/fixtures/repos/assets_error/config/ey.yml +4 -0
  85. data/spec/fixtures/repos/assets_in_hook/Gemfile +5 -0
  86. data/spec/fixtures/repos/assets_in_hook/Gemfile.lock +88 -0
  87. data/spec/fixtures/repos/assets_in_hook/README +2 -0
  88. data/spec/fixtures/repos/assets_in_hook/Rakefile +5 -0
  89. data/spec/fixtures/repos/assets_in_hook/app/assets/empty +0 -0
  90. data/spec/fixtures/repos/assets_in_hook/config/application.rb +5 -0
  91. data/spec/fixtures/repos/assets_in_hook/config/ey.yml +3 -0
  92. data/spec/fixtures/repos/assets_in_hook/deploy/before_compile_assets.rb +2 -0
  93. data/spec/fixtures/repos/bundle_fails/Gemfile +1 -0
  94. data/spec/fixtures/repos/bundle_fails/README +1 -0
  95. data/spec/fixtures/repos/bundle_fails/deploy/after_bundle.rb +1 -0
  96. data/spec/fixtures/repos/bundler_disabled/Gemfile +4 -0
  97. data/spec/fixtures/repos/bundler_disabled/Gemfile.lock +12 -0
  98. data/spec/fixtures/repos/bundler_disabled/README +1 -0
  99. data/spec/fixtures/repos/bundler_disabled/config/ey.yml +2 -0
  100. data/spec/fixtures/repos/bundler_disabled/deploy/after_bundle.rb +1 -0
  101. data/spec/fixtures/repos/bundler_disabled/deploy/before_bundle.rb +1 -0
  102. data/spec/fixtures/repos/bundler_old/Gemfile +5 -0
  103. data/spec/fixtures/repos/bundler_old/Gemfile.lock +15 -0
  104. data/spec/fixtures/repos/bundler_old/README +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_ey_config_no_warning/Gemfile +3 -0
  148. data/spec/fixtures/repos/no_ey_config_no_warning/Gemfile.lock +10 -0
  149. data/spec/fixtures/repos/no_ey_config_no_warning/README +1 -0
  150. data/spec/fixtures/repos/no_ey_config_no_warning/ey.yml +5 -0
  151. data/spec/fixtures/repos/no_gemfile_lock/Gemfile +4 -0
  152. data/spec/fixtures/repos/no_gemfile_lock/README +1 -0
  153. data/spec/fixtures/repos/no_gemfile_lock/ey.yml +3 -0
  154. data/spec/fixtures/repos/nodejs/README +1 -0
  155. data/spec/fixtures/repos/nodejs/package.json +7 -0
  156. data/spec/fixtures/repos/not_bundled/README +1 -0
  157. data/spec/fixtures/repos/npm_disabled/README +1 -0
  158. data/spec/fixtures/repos/npm_disabled/config/ey.yml +2 -0
  159. data/spec/fixtures/repos/npm_disabled/package.json +7 -0
  160. data/spec/fixtures/repos/php_composer_disabled/README +1 -0
  161. data/spec/fixtures/repos/php_composer_disabled/composer.json +5 -0
  162. data/spec/fixtures/repos/php_composer_disabled/composer.lock +462 -0
  163. data/spec/fixtures/repos/php_composer_disabled/config/ey.yml +2 -0
  164. data/spec/fixtures/repos/php_composer_disabled/public/index.php +4 -0
  165. data/spec/fixtures/repos/php_composer_lock/README +1 -0
  166. data/spec/fixtures/repos/php_composer_lock/composer.json +5 -0
  167. data/spec/fixtures/repos/php_composer_lock/composer.lock +462 -0
  168. data/spec/fixtures/repos/php_composer_lock/public/index.php +4 -0
  169. data/spec/fixtures/repos/php_no_composer_lock/README +1 -0
  170. data/spec/fixtures/repos/php_no_composer_lock/composer.json +21 -0
  171. data/spec/fixtures/repos/php_no_composer_lock/public/index.php +4 -0
  172. data/spec/fixtures/repos/public_system/Gemfile +4 -0
  173. data/spec/fixtures/repos/public_system/Gemfile.lock +12 -0
  174. data/spec/fixtures/repos/public_system/README +5 -0
  175. data/spec/fixtures/repos/public_system/ey.yml +3 -0
  176. data/spec/fixtures/repos/public_system/public/system/cant_touch_this.txt +3 -0
  177. data/spec/fixtures/repos/sqlite3/Gemfile +4 -0
  178. data/spec/fixtures/repos/sqlite3/Gemfile.lock +89 -0
  179. data/spec/fixtures/repos/sqlite3/README +1 -0
  180. data/spec/fixtures/retwisj.war +0 -0
  181. data/spec/fixtures/valid_hook.rb +1 -0
  182. data/spec/git_strategy_spec.rb +34 -0
  183. data/spec/lockfile_parser_spec.rb +126 -0
  184. data/spec/maintenance_spec.rb +44 -0
  185. data/spec/multi_dependency_manager_spec.rb +25 -0
  186. data/spec/nodejs_deploy_spec.rb +30 -0
  187. data/spec/php_deploy_spec.rb +81 -0
  188. data/spec/platform_configure_spec.rb +61 -0
  189. data/spec/rails31_deploy_spec.rb +172 -0
  190. data/spec/restart_spec.rb +43 -0
  191. data/spec/rollback_spec.rb +87 -0
  192. data/spec/server_spec.rb +70 -0
  193. data/spec/services_deploy_spec.rb +165 -0
  194. data/spec/shell_spec.rb +57 -0
  195. data/spec/source/archive_spec.rb +33 -0
  196. data/spec/source/git_spec.rb +44 -0
  197. data/spec/spec_helper.rb +360 -0
  198. data/spec/sqlite3_deploy_spec.rb +38 -0
  199. data/spec/support/integration.rb +103 -0
  200. data/spec/support/source_doubles.rb +28 -0
  201. data/spec/support/timecop.rb +5 -0
  202. data/spec/symlink_spec.rb +15 -0
  203. metadata +400 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3e20a63bd2ce96acacc7ff7d60191aff5c794cf1762cefc24bffa3d0fddc0f7
4
- data.tar.gz: 944fe03b4fd1dfa0ce7949aefdf2975c52146bd970ec3950e5b0b362b7d34623
3
+ metadata.gz: fc8524f480f3b28b00ec3696240dc84f69b048ddcb3c8048daa3fa0870ca74bd
4
+ data.tar.gz: 465b40842bb42ff53233590f9d52f4b1526875f590bac33cb9b39dd988309a2d
5
5
  SHA512:
6
- metadata.gz: e0ce1abe3a533bf8b3f52e6eb9c8cf4ebadc6e2701128d030a2a9553541d1098243153774e95e8a49fda4414bc2742a1f4719148363781289019496be160eee3
7
- data.tar.gz: 594bcf5055ca4b312a68af72548684685cb16978376313ed9eeef69fdff7ca79b09e6bc95522d721ae1d5d40e235269a2aba2e7b595450499eddd6e1a339543f
6
+ metadata.gz: b0729fb3d4bdfef8fd15d394ae6096b4b370e03576562bc97e8099d2413142d41ab487cb9940b9d2ccb1e1b6ccd698b4fd9ef97261a71b6fa1c62ae1bbea09f6
7
+ data.tar.gz: 49d69442d91d472b0f9c6855bd41b92e2858621c781085a98e6b1f5188b421cb0708ede2f1e85b12db33668cdc013a77bba84150850c1dd47c484e69454b7f3e
@@ -119,7 +119,7 @@ module EY
119
119
  verbose_option
120
120
  desc "integrate", "Integrate other instances into this cluster"
121
121
  def integrate
122
- Workflows.perform(:integrate, :options => options)
122
+ Workflows.perform(:integrate, options)
123
123
  end
124
124
 
125
125
  account_app_env_options
@@ -7,18 +7,26 @@ module EY
7
7
 
8
8
  # IntegratingServers is a Workflow that attempts to integrate new
9
9
  # servers into an existing environment
10
- class IntegratingServers
11
- private
12
- def procedure
10
+ class IntegratingServers < Base
11
+ def initialize(options = {})
12
+ super
13
+
14
+ # We need to set some extra options, but options is frozen by
15
+ # the time we get here, so dupe it!
16
+ @options = options.dup
17
+
13
18
  # so that we deploy to the same place there that we have here
14
- integrate_options[:release_path] = current_app_dir.realpath.to_s
19
+ @options[:release_path] = current_app_dir.realpath.to_s
15
20
 
16
21
  # we have to deploy the same SHA there as here
17
- integrate_options[:branch] = current_app_dir.join('REVISION').read.strip
22
+ @options[:branch] = current_app_dir.join('REVISION').read.strip
18
23
 
19
24
  # always rebundle gems on integrate to make sure the instance comes up correctly.
20
- integrate_options[:clean] = true
25
+ @options[:clean] = true
26
+ end
21
27
 
28
+ private
29
+ def procedure
22
30
  propagate_serverside
23
31
 
24
32
  # We have to rsync the entire app dir, so we need all the permissions to be correct!
@@ -1,5 +1,5 @@
1
1
  module EY
2
2
  module Serverside
3
- VERSION = '2.6.16'
3
+ VERSION = '2.6.17'
4
4
  end
5
5
  end
@@ -0,0 +1,53 @@
1
+ require 'spec_helper'
2
+
3
+ class EY::Serverside::Source::Archive
4
+ def fetch_command
5
+ "cp #{uri} #{source_cache}"
6
+ end
7
+ end
8
+
9
+ describe "Deploying a simple application" do
10
+
11
+ before(:all) do
12
+ adapter = EY::Serverside::Adapter.new do |args|
13
+ args.account_name = "account"
14
+ args.app = "application_name"
15
+ args.stack = "nginx_unicorn"
16
+ args.environment_name = "environment_name"
17
+ args.framework_env = "production"
18
+ args.archive = FIXTURES_DIR.join('retwisj.war')
19
+ args.verbose = true
20
+ args.instances = [{ :hostname => "localhost", :roles => ["solo"], :name => "single" }]
21
+ args.serverside_version = Gem::Version.create(EY::Serverside::VERSION.dup).release
22
+ args.config = {
23
+ "deploy_to" => deploy_dir.to_s,
24
+ "group" => GROUP
25
+ }
26
+ end
27
+ argv = adapter.deploy.commands.last.to_argv[2..-1]
28
+ with_mocked_commands do
29
+ capture do
30
+ EY::Serverside::CLI::App.start(argv)
31
+ end
32
+ end
33
+ end
34
+
35
+ it "exploded the war" do
36
+ %w(META-INF WEB-INF).each {|dir|
37
+ File.exists?(deploy_dir.join('current', dir))
38
+ }
39
+ end
40
+
41
+ it "creates a REVISION file" do
42
+ path = deploy_dir.join('current', 'REVISION')
43
+ expect(path).to exist
44
+ checksum = File.read(path).strip
45
+ expect(checksum).to match(/7400dc058376745c11a98f768b799c6651428857\s+.*retwisj.war$/)
46
+ end
47
+
48
+ it "restarts the app servers" do
49
+ restart = deploy_dir.join('current', 'restart')
50
+ expect(restart).to exist
51
+ expect(restart.read.chomp).to eq(%|LANG="en_US.UTF-8" /engineyard/bin/app_application_name deploy|)
52
+ end
53
+ end
@@ -0,0 +1,26 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Deploying a simple application" do
4
+ before(:all) do
5
+ deploy_test_application('not_bundled')
6
+ end
7
+
8
+ it "creates a REVISION file" do
9
+ expect(deploy_dir.join('current', 'REVISION')).to exist
10
+ end
11
+
12
+ it "restarts the app servers" do
13
+ restart = deploy_dir.join('current', 'restart')
14
+ expect(restart).to exist
15
+ expect(restart.read.chomp).to eq(%|LANG="en_US.UTF-8" /engineyard/bin/app_rails31 deploy|)
16
+ end
17
+
18
+ it "reuses the same active_release directory if a release_path is specified (such as in integrate)" do
19
+ path = @config.paths.active_release
20
+ expect(path.parent.children.size).to eq(1)
21
+
22
+ redeploy_test_application('config' => {'release_path' => path.to_s})
23
+
24
+ expect(path.parent.children.size).to eq(1)
25
+ end
26
+ end
@@ -0,0 +1,160 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Deploying an application that uses Bundler" do
4
+ VERSION_PATTERN = Regexp.quote(::EY::Serverside::DependencyManager::Bundler.default_version)
5
+ PARALLEL_JOBS = ::EY::Serverside::DependencyManager::Bundler.jobs_number
6
+
7
+ context "with a Gemfile.lock" do
8
+ before(:all) do
9
+ deploy_test_application('ey_yml')
10
+ @install_bundler_command = @deployer.commands.grep(/gem install bundler/).first
11
+ @bundle_install_command = @deployer.commands.grep(/bundle _#{VERSION_PATTERN}_ install/).first
12
+ end
13
+
14
+ it "runs the right bundler command" do
15
+ expect(@install_bundler_command).not_to be_nil
16
+ expect(@install_bundler_command).to match(/install bundler .* -v "#{VERSION_PATTERN}"/)
17
+ end
18
+
19
+ it "runs 'bundle install' with --deployment" do
20
+ expect(@bundle_install_command).not_to be_nil
21
+ expect(@bundle_install_command).to include('--deployment')
22
+ end
23
+
24
+ it "runs 'bundle install' with --jobs #{PARALLEL_JOBS}" do
25
+ expect(@bundle_install_command).not_to be_nil
26
+ expect(@bundle_install_command).to include("--jobs #{PARALLEL_JOBS}")
27
+ end
28
+
29
+ it "removes bundled_gems directory if the ruby or system version changed" do
30
+ should_run_clear_bundle_cmd = @deployer.commands.grep(/diff/).first
31
+ expect(should_run_clear_bundle_cmd).not_to be_nil
32
+ clear_bundle_cmd = @deployer.commands.grep(/rm -Rf \S+\/bundled_gems/).first
33
+ expect(clear_bundle_cmd).not_to be_nil
34
+ end
35
+
36
+ it "has the binstubs in the path when migrating" do
37
+ expect(deploy_dir.join('path-when-migrating').read).to include('ey_bundler_binstubs')
38
+ end
39
+
40
+ it "creates a ruby version file" do
41
+ expect(deploy_dir.join('shared', 'bundled_gems', 'RUBY_VERSION')).to exist
42
+ end
43
+
44
+ it "creates a system version file" do
45
+ expect(deploy_dir.join('shared', 'bundled_gems', 'SYSTEM_VERSION')).to exist
46
+ end
47
+
48
+ it "generates bundler binstubs" do
49
+ pending "doesn't work with mocked bundler"
50
+ expect(deploy_dir.join('current', 'ey_bundler_binstubs', 'rake')).to exist
51
+ end
52
+ end
53
+
54
+ context "with clean option" do
55
+ before(:all) do
56
+ deploy_test_application('ey_yml', 'clean' => true)
57
+ end
58
+
59
+ it "removes bundled_gems directory if the ruby or system version changed" do
60
+ should_run_clear_bundle_cmd = @deployer.commands.grep(/diff/).first
61
+ expect(should_run_clear_bundle_cmd).to be_nil
62
+ clear_bundle_cmd = @deployer.commands.grep(/rm -Rf \S+\/bundled_gems/).first
63
+ expect(clear_bundle_cmd).not_to be_nil
64
+ end
65
+
66
+ end
67
+
68
+ context "with bundler disabled in ey.yml" do
69
+ before(:all) do
70
+ deploy_test_application('bundler_disabled')
71
+ end
72
+
73
+ it "does not run bundler commands" do
74
+ expect(@deployer.commands.grep(/gem install bundler/)).to be_empty
75
+ expect(@deployer.commands.grep(/bundle _.*_ install/)).to be_empty
76
+ end
77
+
78
+ it "still runs the hooks" do
79
+ expect(deploy_dir.join('current', 'before_bundle.ran' )).to exist
80
+ expect(deploy_dir.join('current', 'after_bundle.ran' )).to exist
81
+ end
82
+ end
83
+
84
+ context "without a Gemfile.lock" do
85
+ before(:all) do
86
+ deploy_test_application('no_gemfile_lock')
87
+ @install_bundler_command = @deployer.commands.grep(/gem install bundler/).first
88
+ @bundle_install_command = @deployer.commands.grep(/bundle _#{VERSION_PATTERN}_ install/).first
89
+ end
90
+
91
+ it "installs the proper Bundler version" do
92
+ expect(@install_bundler_command).not_to be_nil
93
+ expect(@install_bundler_command).to match(/unset RUBYOPT && gem list bundler | grep "bundler " | egrep -q "#{VERSION_PATTERN}[,)]" || gem install bundler -q --no-rdoc --no-ri -v "#{VERSION_PATTERN}"/)
94
+ end
95
+
96
+ it "runs 'bundle install' without --deployment" do
97
+ expect(@bundle_install_command).not_to be_nil
98
+ expect(@bundle_install_command).not_to match(/--deployment/)
99
+ end
100
+
101
+ it "runs 'bundle install' with --jobs #{PARALLEL_JOBS}" do
102
+ expect(@bundle_install_command).not_to be_nil
103
+ expect(@bundle_install_command).to include("--jobs #{PARALLEL_JOBS}")
104
+ end
105
+
106
+ it "exports GIT_SSH for the bundle install" do
107
+ expect(@bundle_install_command).to match(/export GIT_SSH/)
108
+ end
109
+
110
+ it "puts down RUBY_VERSION and SYSTEM_VERSION" do
111
+ expect(deploy_dir.join('shared', 'bundled_gems', 'RUBY_VERSION')).to exist
112
+ expect(deploy_dir.join('shared', 'bundled_gems', 'SYSTEM_VERSION')).to exist
113
+ end
114
+
115
+ it "warns that using a lockfile is idiomatic" do
116
+ out = read_output
117
+ expect(out).to match(/WARNING: Gemfile found but Gemfile.lock is missing!/)
118
+ end
119
+ end
120
+
121
+ context "without a Gemfile.lock and ignoring the warning" do
122
+ before(:all) do
123
+ deploy_test_application('no_gemfile_lock', 'config' => {'ignore_gemfile_lock_warning' => true})
124
+ expect(@config.ignore_gemfile_lock_warning).to be_truthy
125
+ @install_bundler_command = @deployer.commands.grep(/gem install bundler/).first
126
+ @bundle_install_command = @deployer.commands.grep(/bundle _#{VERSION_PATTERN}_ install/).first
127
+ end
128
+
129
+ it "should not warn" do
130
+ out = read_output
131
+ expect(out).not_to match(/WARNING/)
132
+ end
133
+ end
134
+
135
+ context "with a failing Gemfile" do
136
+ before(:all) do
137
+ begin
138
+ deploy_test_application('bundle_fails', 'bundle_install_fails' => true, 'verbose' => false)
139
+ rescue EY::Serverside::RemoteFailure
140
+ end
141
+ end
142
+
143
+ it "prints the failure to the log" do
144
+ out = read_output
145
+ expect(out).to match(%r|bundle install failure|)
146
+ expect(deploy_dir.join('current', 'after_bundle.ran' )).not_to exist
147
+ end
148
+ end
149
+
150
+ context "with outdated bundler" do
151
+ before :all do
152
+ deploy_test_application( "bundler_old" )
153
+ @bundle_install_command = @deployer.commands.grep( /bundle _1.3.6_ install/ ).first
154
+ end
155
+
156
+ it "doesn't run 'bundle install' with --jobs" do
157
+ expect( @bundle_install_command ).to_not include "--jobs"
158
+ end
159
+ end
160
+ end
@@ -0,0 +1,206 @@
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_ey_config_warning).to eq(false)
34
+ expect(@config.ignore_gemfile_lock_warning).to eq(false)
35
+ expect(@config.bundle_without).to eq(%w[test development])
36
+ expect(@config.extra_bundle_install_options).to eq(%w[--without test development])
37
+ expect(@config.deployed_by).to eq("Automation (User name not available)")
38
+ expect(@config.input_ref).to eq(@config.branch)
39
+ expect(@config.keep_releases).to eq(3)
40
+ expect(@config.keep_failed_releases).to eq(3)
41
+ end
42
+
43
+ it "raises when required options are not given" do
44
+ @config = EY::Serverside::Deploy::Configuration.new({})
45
+ expect { @config.app_name }.to raise_error
46
+ expect { @config.environment_name }.to raise_error
47
+ expect { @config.account_name }.to raise_error
48
+ expect { @config.framework_env }.to raise_error
49
+ end
50
+ end
51
+
52
+ context "strategies" do
53
+ let(:options) do
54
+ { "app" => "serverside" }
55
+ end
56
+
57
+ it "uses strategy if set" do
58
+ @config = EY::Serverside::Deploy::Configuration.new(
59
+ options.merge({'strategy' => 'IntegrationSpec', 'git' => 'git@github.com:engineyard/todo.git'})
60
+ )
61
+ capture do # deprecation warning
62
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::IntegrationSpec)
63
+ end
64
+ expect(read_output).to include("DEPRECATION WARNING: The configuration key 'strategy' is deprecated in favor of 'source_class'.")
65
+ end
66
+
67
+ it "uses source_class if set" do
68
+ @config = EY::Serverside::Deploy::Configuration.new(
69
+ options.merge({'source_class' => 'IntegrationSpec', 'git' => 'git@github.com:engineyard/todo.git'})
70
+ )
71
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::IntegrationSpec)
72
+ end
73
+
74
+ it "infers a git source" do
75
+ @config = EY::Serverside::Deploy::Configuration.new(
76
+ options.merge({ 'git' => 'git@github.com:engineyard/todo.git' })
77
+ )
78
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::Git)
79
+ end
80
+
81
+ it "infers a archive source" do
82
+ @config = EY::Serverside::Deploy::Configuration.new(
83
+ options.merge({'archive' => 'https://github.com/engineyard/todo/archive/master.zip'})
84
+ )
85
+
86
+ expect(@config.source(test_shell)).to be_a_kind_of(EY::Serverside::Source::Archive)
87
+ end
88
+ end
89
+
90
+ context "command line options" do
91
+ before do
92
+ @config = EY::Serverside::Deploy::Configuration.new({
93
+ 'repository_cache' => @tempdir,
94
+ 'app' => 'app_name',
95
+ 'stack' => 'nginx_passenger',
96
+ 'framework_env' => 'development',
97
+ 'environment_name' => 'env_name',
98
+ 'account_name' => 'acc',
99
+ 'branch' => 'branch_from_command_line',
100
+ 'config' => MultiJson.dump({'custom' => 'custom_from_extra_config', 'maintenance_on_migrate' => 'false', 'precompile_assets' => 'false', 'deployed_by' => 'Martin Emde', 'input_ref' => 'input_branch'})
101
+ })
102
+ end
103
+
104
+ it "underrides options with config (directly supplied options take precedence over 'config' options)" do
105
+ expect(@config.maintenance_on_migrate).to eq(false)
106
+ expect(@config.branch).to eq("branch_from_command_line")
107
+ end
108
+
109
+ 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
110
+ expect(@config.skip_precompile_assets?).to eq(true)
111
+ expect(@config.precompile_assets?).to eq(false)
112
+ expect(@config.precompile_assets_inferred?).to eq(false)
113
+ end
114
+
115
+ it "doesn't require downtime on restart for nginx_passenger" do
116
+ expect(@config.maintenance_on_migrate).to eq(false)
117
+ expect(@config.maintenance_on_restart).to eq(false)
118
+ end
119
+
120
+ it "doesn't bundle --without the framework_env" do
121
+ expect(@config.bundle_without).to eq(%w[test])
122
+ end
123
+
124
+ it "gets deployed_by and input_ref correct" do
125
+ expect(@config.deployed_by).to eq("Martin Emde")
126
+ expect(@config.input_ref).to eq("input_branch")
127
+ end
128
+ end
129
+
130
+ describe "ey.yml loading" do
131
+ before(:each) do
132
+ @tempdir = `mktemp -d -t ey_yml_spec.XXXXX`.strip
133
+ @config = EY::Serverside::Deploy::Configuration.new({
134
+ 'repository_cache' => @tempdir,
135
+ 'app' => 'app_name',
136
+ 'environment_name' => 'env_name',
137
+ 'account_name' => 'acc',
138
+ 'migrate' => nil,
139
+ 'branch' => 'branch_from_command_line',
140
+ 'config' => MultiJson.dump({'custom' => 'custom_from_extra_config', 'maintenance_on_migrate' => 'false'})
141
+ })
142
+
143
+ @deploy = FullTestDeploy.new(test_servers, @config, test_shell)
144
+
145
+ @yaml_data = {
146
+ 'environments' => {
147
+ 'env_name' => {
148
+ 'copy_exclude' => ['.git'],
149
+ 'migrate' => true,
150
+ 'migration_command' => 'uh oh',
151
+ 'branch' => 'branch_from_ey_yml',
152
+ 'custom' => 'custom_from_ey_yml',
153
+ 'bundle_without' => 'only test',
154
+ 'maintenance_on_migrate' => true,
155
+ }
156
+ }
157
+ }
158
+ end
159
+
160
+ def write_ey_yml(relative_path, data)
161
+ FileUtils.mkdir_p(File.join(
162
+ @tempdir,
163
+ File.dirname(relative_path)))
164
+
165
+ File.open(File.join(@tempdir, relative_path), 'w') do |f|
166
+ f.write data.to_yaml
167
+ end
168
+ end
169
+
170
+ it "requires 'ey.yml' and adds any defined methods to the deploy" do
171
+ write_ey_yml 'ey.yml', @yaml_data
172
+ @deploy.load_ey_yml
173
+ expect(@deploy.config.copy_exclude).to eq(['.git'])
174
+ end
175
+
176
+ it "falls back to 'config/ey.yml'" do
177
+ write_ey_yml 'config/ey.yml', @yaml_data
178
+ @deploy.load_ey_yml
179
+ expect(@deploy.config.copy_exclude).to eq(['.git'])
180
+ end
181
+
182
+ it "loads at lower priority than command line options" do
183
+ write_ey_yml 'ey.yml', @yaml_data
184
+ @deploy.load_ey_yml
185
+ expect(@deploy.config.migrate?).to eq(false)
186
+ end
187
+
188
+ it "loads at lower priority than json config option" do
189
+ write_ey_yml 'ey.yml', @yaml_data
190
+ @deploy.load_ey_yml
191
+ expect(@deploy.config.branch).to eq('branch_from_command_line')
192
+ end
193
+
194
+ it "loads bundle_without from the config, which overrides the default" do
195
+ write_ey_yml 'ey.yml', @yaml_data
196
+ @deploy.load_ey_yml
197
+ expect(@deploy.config.bundle_without).to eq('only test')
198
+ end
199
+
200
+ it "overrides boolean ey.yml only options with --conifg strings" do
201
+ write_ey_yml 'ey.yml', @yaml_data
202
+ @deploy.load_ey_yml
203
+ expect(@deploy.config).not_to be_maintenance_on_migrate
204
+ end
205
+ end
206
+ end