omnibus 3.2.2 → 4.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +140 -10
  3. data/CHANGELOG.md +181 -8
  4. data/README.md +63 -35
  5. data/Rakefile +1 -1
  6. data/docs/omnibus-build-cache.md b/data/docs/Build → Cache.md +0 -0
  7. data/docs/Building on Debian.md +59 -0
  8. data/docs/Building on OSX.md +61 -35
  9. data/docs/Building on RHEL.md +74 -0
  10. data/docs/Building on Windows.md +40 -81
  11. data/features/commands/build.feature +1 -2
  12. data/features/commands/clean.feature +1 -1
  13. data/lib/omnibus.rb +111 -204
  14. data/lib/omnibus/build_version.rb +3 -20
  15. data/lib/omnibus/build_version_dsl.rb +2 -3
  16. data/lib/omnibus/builder.rb +103 -211
  17. data/lib/omnibus/cleaner.rb +5 -7
  18. data/lib/omnibus/cli.rb +1 -4
  19. data/lib/omnibus/cli/base.rb +9 -16
  20. data/lib/omnibus/compressor.rb +60 -0
  21. data/{spec/data/complicated/config/software/version-manifest.rb → lib/omnibus/compressors/base.rb} +17 -12
  22. data/lib/omnibus/compressors/dmg.rb +312 -0
  23. data/lib/omnibus/{null_builder.rb → compressors/null.rb} +10 -4
  24. data/lib/omnibus/compressors/tgz.rb +141 -0
  25. data/lib/omnibus/config.rb +89 -83
  26. data/lib/omnibus/core_extensions.rb +1 -0
  27. data/lib/omnibus/core_extensions/open_uri.rb +58 -0
  28. data/lib/omnibus/digestable.rb +9 -3
  29. data/lib/omnibus/exceptions.rb +116 -175
  30. data/lib/omnibus/fetcher.rb +97 -138
  31. data/lib/omnibus/fetchers/git_fetcher.rb +130 -165
  32. data/lib/omnibus/fetchers/net_fetcher.rb +205 -164
  33. data/lib/omnibus/fetchers/{s3_cache_fetcher.rb → null_fetcher.rb} +27 -17
  34. data/lib/omnibus/fetchers/path_fetcher.rb +74 -32
  35. data/lib/omnibus/file_syncer.rb +149 -0
  36. data/lib/omnibus/generator.rb +103 -32
  37. data/lib/omnibus/generator_files/.kitchen.yml.erb +5 -1
  38. data/lib/omnibus/generator_files/Gemfile.erb +13 -7
  39. data/lib/omnibus/generator_files/config/projects/project.rb.erb +28 -0
  40. data/lib/omnibus/generator_files/config/software/zlib.rb.erb +55 -0
  41. data/lib/omnibus/generator_files/omnibus.rb.erb +5 -7
  42. data/lib/omnibus/git_cache.rb +11 -13
  43. data/lib/omnibus/logger.rb +76 -22
  44. data/lib/omnibus/logging.rb +1 -1
  45. data/lib/omnibus/metadata.rb +264 -0
  46. data/lib/omnibus/ohai.rb +0 -51
  47. data/lib/omnibus/package.rb +4 -228
  48. data/lib/omnibus/packager.rb +71 -0
  49. data/lib/omnibus/packagers/base.rb +118 -176
  50. data/lib/omnibus/packagers/bff.rb +136 -0
  51. data/lib/omnibus/packagers/deb.rb +389 -0
  52. data/lib/omnibus/packagers/makeself.rb +114 -0
  53. data/lib/omnibus/packagers/msi.rb +346 -0
  54. data/lib/omnibus/packagers/pkg.rb +278 -0
  55. data/lib/omnibus/packagers/rpm.rb +438 -0
  56. data/lib/omnibus/packagers/solaris.rb +110 -0
  57. data/lib/omnibus/project.rb +263 -666
  58. data/lib/omnibus/publisher.rb +3 -3
  59. data/lib/omnibus/s3_cache.rb +21 -30
  60. data/lib/omnibus/software.rb +132 -271
  61. data/lib/omnibus/templating.rb +66 -0
  62. data/lib/omnibus/thread_pool.rb +109 -0
  63. data/lib/omnibus/util.rb +137 -15
  64. data/lib/omnibus/version.rb +1 -1
  65. data/omnibus.gemspec +2 -2
  66. data/resources/bff/gen.template.erb +22 -0
  67. data/resources/bff/postinstall.sh +0 -0
  68. data/resources/bff/unpostinstall.sh +0 -0
  69. data/resources/deb/conffiles.erb +3 -0
  70. data/resources/deb/control.erb +25 -0
  71. data/resources/deb/md5sums.erb +3 -0
  72. data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/background.png +0 -0
  73. data/resources/dmg/create_dmg.osascript.erb +17 -0
  74. data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/icon.png +0 -0
  75. data/{bin → resources/makeself}/makeself-header.sh +0 -0
  76. data/{bin → resources/makeself}/makeself.sh +0 -0
  77. data/{lib/omnibus/generator_files/package_scripts/makeselfinst.erb → resources/makeself/post_extract.sh.erb} +4 -4
  78. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/LICENSE.rtf +0 -0
  79. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/banner_background.bmp +0 -0
  80. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/dialog_background.bmp +0 -0
  81. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project.ico +0 -0
  82. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_16x16.ico +0 -0
  83. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_32x32.ico +0 -0
  84. data/{spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl → resources/msi/localization-en-us.wxl.erb} +3 -4
  85. data/resources/msi/parameters.wxi.erb +9 -0
  86. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/source.wxs.erb +14 -15
  87. data/{lib/omnibus/generator_files/mac_pkg → resources/pkg}/background.png +0 -0
  88. data/resources/pkg/distribution.xml.erb +21 -0
  89. data/resources/pkg/license.html.erb +3 -0
  90. data/resources/pkg/welcome.html.erb +7 -0
  91. data/resources/rpm/rpmmacros.erb +3 -0
  92. data/resources/rpm/signing.erb +40 -0
  93. data/resources/rpm/spec.erb +70 -0
  94. data/spec/functional/builder_spec.rb +90 -111
  95. data/spec/functional/fetchers/git_fetcher_spec.rb +130 -0
  96. data/spec/functional/fetchers/net_fetcher_spec.rb +110 -0
  97. data/spec/functional/fetchers/path_fetcher_spec.rb +97 -0
  98. data/spec/functional/file_syncer_spec.rb +206 -0
  99. data/spec/functional/templating_spec.rb +73 -0
  100. data/spec/spec_helper.rb +31 -94
  101. data/spec/support/env_helpers.rb +20 -0
  102. data/spec/support/examples.rb +56 -0
  103. data/spec/support/file_helpers.rb +46 -0
  104. data/spec/support/git_helpers.rb +107 -0
  105. data/spec/support/logging_helpers.rb +33 -0
  106. data/spec/support/matchers.rb +36 -0
  107. data/spec/support/ohai_helpers.rb +22 -0
  108. data/spec/support/path_helpers.rb +19 -0
  109. data/spec/support/shell_helpers.rb +14 -0
  110. data/spec/unit/build_version_dsl_spec.rb +0 -17
  111. data/spec/unit/build_version_spec.rb +1 -19
  112. data/spec/unit/builder_spec.rb +158 -46
  113. data/spec/unit/compressor_spec.rb +45 -0
  114. data/spec/unit/compressors/base_spec.rb +26 -0
  115. data/spec/unit/compressors/dmg_spec.rb +291 -0
  116. data/spec/unit/compressors/null_spec.rb +23 -0
  117. data/spec/unit/compressors/tgz_spec.rb +67 -0
  118. data/spec/unit/config_spec.rb +27 -34
  119. data/spec/unit/digestable_spec.rb +4 -4
  120. data/spec/unit/fetchers/git_fetcher_spec.rb +110 -39
  121. data/spec/unit/fetchers/net_fetcher_spec.rb +182 -72
  122. data/spec/unit/fetchers/path_fetcher_spec.rb +111 -0
  123. data/spec/unit/generator_spec.rb +137 -0
  124. data/spec/unit/git_cache_spec.rb +24 -34
  125. data/spec/unit/library_spec.rb +21 -82
  126. data/spec/unit/metadata_spec.rb +207 -0
  127. data/spec/unit/ohai_spec.rb +0 -7
  128. data/spec/unit/omnibus_spec.rb +41 -36
  129. data/spec/unit/package_spec.rb +1 -216
  130. data/spec/unit/packagers/base_spec.rb +76 -190
  131. data/spec/unit/packagers/bff_spec.rb +160 -0
  132. data/spec/unit/packagers/deb_spec.rb +324 -0
  133. data/spec/unit/packagers/makeself_spec.rb +80 -0
  134. data/spec/unit/packagers/msi_spec.rb +267 -0
  135. data/spec/unit/packagers/pkg_spec.rb +219 -0
  136. data/spec/unit/packagers/rpm_spec.rb +328 -0
  137. data/spec/unit/project_spec.rb +217 -80
  138. data/spec/unit/publisher_spec.rb +6 -2
  139. data/spec/unit/publishers/artifactory_publisher_spec.rb +1 -1
  140. data/spec/unit/publishers/s3_publisher_spec.rb +1 -1
  141. data/spec/unit/s3_cacher_spec.rb +22 -5
  142. data/spec/unit/software_spec.rb +89 -232
  143. data/spec/unit/util_spec.rb +188 -0
  144. metadata +159 -402
  145. data/features/commands/_deprecated.feature +0 -84
  146. data/lib/omnibus/cleanroom.rb +0 -141
  147. data/lib/omnibus/cli/deprecated.rb +0 -132
  148. data/lib/omnibus/generator_files/mac_pkg/license.html.erb +0 -1
  149. data/lib/omnibus/generator_files/mac_pkg/welcome.html.erb +0 -9
  150. data/lib/omnibus/generator_files/project.rb.erb +0 -20
  151. data/lib/omnibus/generator_files/software/c-example.rb.erb +0 -42
  152. data/lib/omnibus/generator_files/software/erlang-example.rb.erb +0 -38
  153. data/lib/omnibus/generator_files/software/ruby-example.rb.erb +0 -24
  154. data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +0 -20
  155. data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +0 -9
  156. data/lib/omnibus/packagers/mac_dmg.rb +0 -235
  157. data/lib/omnibus/packagers/mac_pkg.rb +0 -176
  158. data/lib/omnibus/packagers/windows_msi.rb +0 -109
  159. data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +0 -15
  160. data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +0 -19
  161. data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +0 -100
  162. data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +0 -15
  163. data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +0 -24
  164. data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +0 -29
  165. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +0 -35
  166. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +0 -13
  167. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +0 -1035
  168. data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +0 -12
  169. data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +0 -11
  170. data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +0 -42
  171. data/spec/data/complicated/config/patches/ncurses/patch-aa +0 -23
  172. data/spec/data/complicated/config/patches/ncurses/patch-ab +0 -44
  173. data/spec/data/complicated/config/patches/ncurses/patch-ac +0 -40
  174. data/spec/data/complicated/config/patches/ncurses/patch-ad +0 -12
  175. data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +0 -23
  176. data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +0 -22
  177. data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +0 -22
  178. data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +0 -64
  179. data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +0 -101
  180. data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +0 -12
  181. data/spec/data/complicated/config/patches/ruby/patch-configure +0 -103
  182. data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +0 -10
  183. data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +0 -42
  184. data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +0 -57
  185. data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +0 -27
  186. data/spec/data/complicated/config/projects/angrychef.rb +0 -32
  187. data/spec/data/complicated/config/projects/chef-windows.rb +0 -32
  188. data/spec/data/complicated/config/projects/chef.rb +0 -32
  189. data/spec/data/complicated/config/projects/chefdk-windows.rb +0 -41
  190. data/spec/data/complicated/config/projects/chefdk.rb +0 -44
  191. data/spec/data/complicated/config/software/appbundler.rb +0 -25
  192. data/spec/data/complicated/config/software/autoconf.rb +0 -35
  193. data/spec/data/complicated/config/software/automake.rb +0 -39
  194. data/spec/data/complicated/config/software/berkshelf.rb +0 -44
  195. data/spec/data/complicated/config/software/bundler.rb +0 -25
  196. data/spec/data/complicated/config/software/bzip2.rb +0 -46
  197. data/spec/data/complicated/config/software/cacerts.rb +0 -44
  198. data/spec/data/complicated/config/software/chef-client-msi.rb +0 -87
  199. data/spec/data/complicated/config/software/chef-gem.rb +0 -26
  200. data/spec/data/complicated/config/software/chef-vault.rb +0 -43
  201. data/spec/data/complicated/config/software/chef-windows.rb +0 -158
  202. data/spec/data/complicated/config/software/chef.rb +0 -170
  203. data/spec/data/complicated/config/software/chefdk.rb +0 -103
  204. data/spec/data/complicated/config/software/couchdb.rb +0 -53
  205. data/spec/data/complicated/config/software/curl.rb +0 -48
  206. data/spec/data/complicated/config/software/erlang.rb +0 -65
  207. data/spec/data/complicated/config/software/expat.rb +0 -21
  208. data/spec/data/complicated/config/software/fcgi.rb +0 -56
  209. data/spec/data/complicated/config/software/fcgiwrap.rb +0 -41
  210. data/spec/data/complicated/config/software/gd.rb +0 -56
  211. data/spec/data/complicated/config/software/gdbm.rb +0 -40
  212. data/spec/data/complicated/config/software/gecode.rb +0 -48
  213. data/spec/data/complicated/config/software/git.rb +0 -40
  214. data/spec/data/complicated/config/software/help2man.rb +0 -30
  215. data/spec/data/complicated/config/software/icu.rb +0 -40
  216. data/spec/data/complicated/config/software/jre.rb +0 -48
  217. data/spec/data/complicated/config/software/keepalived.rb +0 -43
  218. data/spec/data/complicated/config/software/libarchive.rb +0 -50
  219. data/spec/data/complicated/config/software/libedit.rb +0 -69
  220. data/spec/data/complicated/config/software/libffi.rb +0 -71
  221. data/spec/data/complicated/config/software/libgcc.rb +0 -39
  222. data/spec/data/complicated/config/software/libiconv.rb +0 -55
  223. data/spec/data/complicated/config/software/libjpeg.rb +0 -39
  224. data/spec/data/complicated/config/software/libpng.rb +0 -38
  225. data/spec/data/complicated/config/software/libtool.rb +0 -52
  226. data/spec/data/complicated/config/software/libwrap.rb +0 -50
  227. data/spec/data/complicated/config/software/libxml2.rb +0 -51
  228. data/spec/data/complicated/config/software/libxslt.rb +0 -52
  229. data/spec/data/complicated/config/software/libyaml-windows.rb +0 -43
  230. data/spec/data/complicated/config/software/libyaml.rb +0 -62
  231. data/spec/data/complicated/config/software/logrotate.rb +0 -41
  232. data/spec/data/complicated/config/software/makedepend.rb +0 -73
  233. data/spec/data/complicated/config/software/mysql2.rb +0 -42
  234. data/spec/data/complicated/config/software/nagios-plugins.rb +0 -53
  235. data/spec/data/complicated/config/software/nagios.rb +0 -66
  236. data/spec/data/complicated/config/software/ncurses.rb +0 -149
  237. data/spec/data/complicated/config/software/nginx.rb +0 -40
  238. data/spec/data/complicated/config/software/nodejs.rb +0 -44
  239. data/spec/data/complicated/config/software/nokogiri.rb +0 -55
  240. data/spec/data/complicated/config/software/nrpe.rb +0 -61
  241. data/spec/data/complicated/config/software/ohai.rb +0 -64
  242. data/spec/data/complicated/config/software/omnibus-ctl.rb +0 -34
  243. data/spec/data/complicated/config/software/openresty.rb +0 -67
  244. data/spec/data/complicated/config/software/openssl.rb +0 -158
  245. data/spec/data/complicated/config/software/pcre.rb +0 -42
  246. data/spec/data/complicated/config/software/perl-extutils-embed.rb +0 -15
  247. data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +0 -15
  248. data/spec/data/complicated/config/software/perl.rb +0 -48
  249. data/spec/data/complicated/config/software/perl_pg_driver.rb +0 -12
  250. data/spec/data/complicated/config/software/php.rb +0 -41
  251. data/spec/data/complicated/config/software/pip.rb +0 -30
  252. data/spec/data/complicated/config/software/pkg-config.rb +0 -66
  253. data/spec/data/complicated/config/software/popt.rb +0 -47
  254. data/spec/data/complicated/config/software/postgresql.rb +0 -51
  255. data/spec/data/complicated/config/software/preparation.rb +0 -30
  256. data/spec/data/complicated/config/software/pygments.rb +0 -25
  257. data/spec/data/complicated/config/software/python.rb +0 -49
  258. data/spec/data/complicated/config/software/rabbitmq.rb +0 -36
  259. data/spec/data/complicated/config/software/rebar.rb +0 -36
  260. data/spec/data/complicated/config/software/redis.rb +0 -33
  261. data/spec/data/complicated/config/software/rsync.rb +0 -48
  262. data/spec/data/complicated/config/software/ruby-windows-devkit.rb +0 -30
  263. data/spec/data/complicated/config/software/ruby-windows.rb +0 -30
  264. data/spec/data/complicated/config/software/ruby.rb +0 -162
  265. data/spec/data/complicated/config/software/rubygems-customization.rb +0 -57
  266. data/spec/data/complicated/config/software/rubygems.rb +0 -37
  267. data/spec/data/complicated/config/software/runit.rb +0 -118
  268. data/spec/data/complicated/config/software/server-jre.rb +0 -46
  269. data/spec/data/complicated/config/software/setuptools.rb +0 -30
  270. data/spec/data/complicated/config/software/spawn-fcgi.rb +0 -40
  271. data/spec/data/complicated/config/software/sphinx.rb +0 -26
  272. data/spec/data/complicated/config/software/spidermonkey.rb +0 -60
  273. data/spec/data/complicated/config/software/sqitch.rb +0 -24
  274. data/spec/data/complicated/config/software/test-kitchen.rb +0 -39
  275. data/spec/data/complicated/config/software/unicorn.rb +0 -27
  276. data/spec/data/complicated/config/software/util-macros.rb +0 -46
  277. data/spec/data/complicated/config/software/xproto.rb +0 -46
  278. data/spec/data/complicated/config/software/yajl.rb +0 -30
  279. data/spec/data/complicated/config/software/zlib.rb +0 -67
  280. data/spec/data/overrides/bad_line.overrides +0 -3
  281. data/spec/data/overrides/good.overrides +0 -5
  282. data/spec/data/overrides/with_dupes.overrides +0 -4
  283. data/spec/data/projects/chefdk.rb +0 -41
  284. data/spec/data/projects/sample.rb +0 -13
  285. data/spec/data/software/erchef.rb +0 -42
  286. data/spec/data/software/zlib.rb +0 -67
  287. data/spec/fixtures/sample/files/mac_dmg/Resources/background.png +0 -0
  288. data/spec/fixtures/sample/files/mac_dmg/Resources/icon.png +0 -0
  289. data/spec/fixtures/sample/files/mac_pkg/Resources/background.png +0 -0
  290. data/spec/fixtures/sample/files/mac_pkg/Resources/license.html +0 -1
  291. data/spec/fixtures/sample/files/mac_pkg/Resources/welcome.html +0 -9
  292. data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +0 -8
  293. data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
  294. data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
  295. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
  296. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
  297. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
  298. data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +0 -9
  299. data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +0 -74
  300. data/spec/integration/packagers/mac_spec.rb +0 -58
  301. data/spec/integration/packagers/windows_spec.rb +0 -70
  302. data/spec/unit/packagers/mac_pkg_spec.rb +0 -151
@@ -0,0 +1,130 @@
1
+ require 'spec_helper'
2
+
3
+ module Omnibus
4
+ describe GitFetcher do
5
+ include_examples 'a software'
6
+
7
+ let(:remote) { remote_git_repo('zlib') }
8
+ let(:version) { 'master' }
9
+
10
+ let(:source) do
11
+ { git: remote }
12
+ end
13
+
14
+ subject { described_class.new(software) }
15
+
16
+ describe '#fetch_required?' do
17
+ context 'when the repo is not cloned' do
18
+ it 'return true' do
19
+ expect(subject.fetch_required?).to be_truthy
20
+ end
21
+ end
22
+
23
+ context 'when the repo is cloned' do
24
+ before { subject.fetch }
25
+
26
+ context 'when the revisions are different' do
27
+ it 'return true' do
28
+ # Dirty the project_dir to differ the revisions
29
+ Dir.chdir(project_dir) do
30
+ FileUtils.touch("file-#{Time.now.to_i}")
31
+ git %|add .|
32
+ git %|commit -am "Add new file"|
33
+ end
34
+
35
+ expect(subject.fetch_required?).to be_truthy
36
+ end
37
+ end
38
+
39
+ context 'when the revisions are the same' do
40
+ it 'return false' do
41
+ expect(subject.fetch_required?).to be(false)
42
+ end
43
+ end
44
+ end
45
+ end
46
+
47
+ describe '#version_guid' do
48
+ it 'includes the current revision' do
49
+ expect(subject.version_guid).to match(/^git:[0-9a-f]{40}/)
50
+ end
51
+ end
52
+
53
+ describe '#clean' do
54
+ context 'when the project directory exists' do
55
+ before do
56
+ subject.fetch
57
+ create_file("#{project_dir}/file_a")
58
+ create_file("#{project_dir}/.file_b")
59
+ end
60
+
61
+ it 'cleans the git repo' do
62
+ subject.clean
63
+ expect("#{project_dir}/file_a").to_not be_a_file
64
+ expect("#{project_dir}/.file_b").to_not be_a_file
65
+ end
66
+
67
+ it 'returns true' do
68
+ expect(subject.clean).to be_truthy
69
+ end
70
+ end
71
+
72
+ context 'when the project directory does not exist' do
73
+ before do
74
+ remove_directory(project_dir)
75
+ end
76
+
77
+ it 'returns false' do
78
+ expect(subject.clean).to be(false)
79
+ end
80
+ end
81
+ end
82
+
83
+ describe '#fetch' do
84
+ let(:revision) { shellout!('git rev-parse HEAD', cwd: project_dir).stdout.strip }
85
+
86
+ it 'clones the repository' do
87
+ subject.fetch
88
+ expect("#{project_dir}/.git").to be_a_directory
89
+ end
90
+
91
+ context 'when the version is a tag' do
92
+ let(:version) { 'v1.2.3' }
93
+ let(:remote) { remote_git_repo('zlib', tags: [version]) }
94
+
95
+ it 'parses the tag' do
96
+ subject.fetch
97
+ expect(revision).to eq('53c72c4abcc961b153996f5b5f402ce715e47146')
98
+ end
99
+ end
100
+
101
+ context 'when the version is a branch' do
102
+ let(:version) { 'sethvargo/magic_ponies' }
103
+ let(:remote) { remote_git_repo('zlib', branches: [version]) }
104
+
105
+ it 'parses the branch' do
106
+ subject.fetch
107
+ expect(revision).to eq('171a1aec35ac0a050f8dccd9c9ef4609b1d8d8ea')
108
+ end
109
+ end
110
+
111
+ context 'when the version is a ref' do
112
+ let(:version) { '45ded6d' }
113
+ let(:remote) { remote_git_repo('zlib') }
114
+
115
+ it 'parses the ref' do
116
+ subject.fetch
117
+ expect(revision).to eq('45ded6d3b1a35d66ed866b2c3eb418426e6382b0')
118
+ end
119
+ end
120
+ end
121
+
122
+ describe '#version_for_cache' do
123
+ let(:revision) { shellout!('git rev-parse HEAD', cwd: project_dir).stdout.strip }
124
+
125
+ it 'includes the revision' do
126
+ expect(subject.version_for_cache).to eq("revision:#{revision}")
127
+ end
128
+ end
129
+ end
130
+ end
@@ -0,0 +1,110 @@
1
+ require 'spec_helper'
2
+
3
+ module Omnibus
4
+ describe NetFetcher do
5
+ include_examples 'a software'
6
+
7
+ let(:source_url) { 'http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz' }
8
+ let(:source_md5) { '00b516f4704d4a7cb50a1d97e6e8e15b' }
9
+ let(:source) do
10
+ { url: source_url, md5: source_md5 }
11
+ end
12
+
13
+ let(:downloaded_file) { subject.send(:downloaded_file) }
14
+ let(:extracted) { File.join(source_dir, 'bzip2-1.0.6') }
15
+
16
+ subject { described_class.new(software) }
17
+
18
+ describe '#fetch_required?' do
19
+ context 'when the file is not downloaded' do
20
+ it 'return true' do
21
+ expect(subject.fetch_required?).to be_truthy
22
+ end
23
+ end
24
+
25
+ context 'when the file is downloaded' do
26
+ before { subject.fetch }
27
+
28
+ context 'when the checksum is different' do
29
+ it 'return true' do
30
+ allow(subject).to receive(:checksum).and_return('abcd1234')
31
+ expect(subject.fetch_required?).to be_truthy
32
+ end
33
+ end
34
+
35
+ context 'when the checksum is the same' do
36
+ it 'return false' do
37
+ expect(subject.fetch_required?).to be(false)
38
+ end
39
+ end
40
+ end
41
+ end
42
+
43
+ describe '#version_guid' do
44
+ it 'includes the source md5' do
45
+ expect(subject.version_guid).to eq("md5:#{source_md5}")
46
+ end
47
+ end
48
+
49
+ describe '#clean' do
50
+ before { subject.fetch }
51
+
52
+ context 'when the project directory exists' do
53
+ before do
54
+ create_file("#{project_dir}/file_a")
55
+ end
56
+
57
+ it 'extracts the asset' do
58
+ subject.clean
59
+ expect(extracted).to_not be_a_file
60
+ end
61
+
62
+ it 'returns true' do
63
+ expect(subject.clean).to be_truthy
64
+ end
65
+ end
66
+
67
+ context 'when the project directory does not exist' do
68
+ before do
69
+ remove_directory(project_dir)
70
+ end
71
+
72
+ it 'returns false' do
73
+ expect(subject.clean).to be(false)
74
+ end
75
+ end
76
+ end
77
+
78
+ describe '#fetch' do
79
+ it 'downloads the file' do
80
+ subject.fetch
81
+ expect(downloaded_file).to be_a_file
82
+ end
83
+
84
+ context 'when the checksum is invalid' do
85
+ let(:source_md5) { 'bad01234checksum' }
86
+
87
+ it 'raises an exception' do
88
+ expect { subject.fetch }.to raise_error(ChecksumMismatch)
89
+ end
90
+ end
91
+
92
+ it 'extracts the file' do
93
+ subject.fetch
94
+ expect(extracted).to be_a_directory
95
+ end
96
+ end
97
+
98
+ describe '#version_for_cache' do
99
+ before do
100
+ create_file("#{project_dir}/file_a")
101
+ create_file("#{project_dir}/file_b")
102
+ create_file("#{project_dir}/.file_c")
103
+ end
104
+
105
+ it 'includes the download_url and checksum' do
106
+ expect(subject.version_for_cache).to eq("download_url:#{source_url}|md5:#{source_md5}")
107
+ end
108
+ end
109
+ end
110
+ end
@@ -0,0 +1,97 @@
1
+ require 'spec_helper'
2
+
3
+ module Omnibus
4
+ describe PathFetcher do
5
+ include_examples 'a software'
6
+
7
+ let(:source_path) { File.join(tmp_path, 'remote', 'software') }
8
+
9
+ let(:source) do
10
+ { path: source_path }
11
+ end
12
+
13
+ before do
14
+ create_directory(source_path)
15
+ end
16
+
17
+ subject { described_class.new(software) }
18
+
19
+ describe '#fetch_required?' do
20
+ context 'when the directories have different files' do
21
+ before do
22
+ create_file("#{source_path}/directory/file") { 'different' }
23
+ create_file("#{project_dir}/directory/file") { 'same' }
24
+ end
25
+
26
+ it 'return true' do
27
+ expect(subject.fetch_required?).to be_truthy
28
+ end
29
+ end
30
+
31
+ context 'when the directories have the same files' do
32
+ before do
33
+ create_file("#{source_path}/directory/file") { 'same' }
34
+ create_file("#{project_dir}/directory/file") { 'same' }
35
+ end
36
+
37
+ it 'returns false' do
38
+ expect(subject.fetch_required?).to be(false)
39
+ end
40
+ end
41
+ end
42
+
43
+ describe '#version_guid' do
44
+ it 'includes the source path' do
45
+ expect(subject.version_guid).to eq("path:#{source_path}")
46
+ end
47
+ end
48
+
49
+ describe '#clean' do
50
+ context 'when the project directory exists' do
51
+ before do
52
+ create_file("#{source_path}/file_a")
53
+ create_file("#{source_path}/file_b")
54
+ create_file("#{source_path}/.file_c")
55
+
56
+ create_file("#{project_dir}/file_a")
57
+ end
58
+
59
+ it 'fetches new files' do
60
+ subject.clean
61
+
62
+ expect("#{project_dir}/file_a").to be_a_file
63
+ expect("#{project_dir}/file_b").to be_a_file
64
+ expect("#{project_dir}/.file_c").to be_a_file
65
+ end
66
+
67
+ it 'returns true' do
68
+ expect(subject.clean).to be_truthy
69
+ end
70
+ end
71
+
72
+ context 'when the project directory does not exist' do
73
+ before do
74
+ remove_directory(project_dir)
75
+ end
76
+
77
+ it 'returns false' do
78
+ expect(subject.clean).to be(false)
79
+ end
80
+ end
81
+ end
82
+
83
+ describe '#version_for_cache' do
84
+ before do
85
+ create_file("#{project_dir}/file_a")
86
+ create_file("#{project_dir}/file_b")
87
+ create_file("#{project_dir}/.file_c")
88
+ end
89
+
90
+ let(:sha) { '69553b23b84e69e095b4a231877b38022b1ffb41ae0ecbba6bb2625410c49f7e' }
91
+
92
+ it 'includes the source_path and shasum' do
93
+ expect(subject.version_for_cache).to eq("path:#{source_path}|shasum:#{sha}")
94
+ end
95
+ end
96
+ end
97
+ end
@@ -0,0 +1,206 @@
1
+ require 'spec_helper'
2
+
3
+ module Omnibus
4
+ describe FileSyncer do
5
+ describe '#glob' do
6
+ before do
7
+ FileUtils.mkdir_p(File.join(tmp_path, 'folder'))
8
+ FileUtils.mkdir_p(File.join(tmp_path, '.hidden_folder'))
9
+
10
+ FileUtils.touch(File.join(tmp_path, 'folder', 'file'))
11
+ FileUtils.touch(File.join(tmp_path, '.hidden_file'))
12
+ end
13
+
14
+ let(:list) do
15
+ described_class
16
+ .glob("#{tmp_path}/**/*")
17
+ .map { |item| item.sub("#{tmp_path}/", '') }
18
+ end
19
+
20
+ it 'includes regular files' do
21
+ expect(list).to include('folder')
22
+ expect(list).to include('folder/file')
23
+ end
24
+
25
+ it 'ignores .' do
26
+ expect(list).to_not include('.')
27
+ end
28
+
29
+ it 'ignores ..' do
30
+ expect(list).to_not include('..')
31
+ end
32
+
33
+ it 'includes hidden files' do
34
+ expect(list).to include('.hidden_file')
35
+ end
36
+
37
+ it 'includes hidden folders' do
38
+ expect(list).to include('.hidden_folder')
39
+ end
40
+ end
41
+
42
+ describe '#sync' do
43
+ let(:source) do
44
+ source = File.join(tmp_path, 'source')
45
+ FileUtils.mkdir_p(source)
46
+
47
+ FileUtils.touch(File.join(source, 'file_a'))
48
+ FileUtils.touch(File.join(source, 'file_b'))
49
+ FileUtils.touch(File.join(source, 'file_c'))
50
+
51
+ FileUtils.mkdir_p(File.join(source, 'folder'))
52
+ FileUtils.touch(File.join(source, 'folder', 'file_d'))
53
+ FileUtils.touch(File.join(source, 'folder', 'file_e'))
54
+
55
+ FileUtils.mkdir_p(File.join(source, '.dot_folder'))
56
+ FileUtils.touch(File.join(source, '.dot_folder', 'file_f'))
57
+
58
+ FileUtils.touch(File.join(source, '.file_g'))
59
+ source
60
+ end
61
+
62
+ let(:destination) { File.join(tmp_path, 'destination') }
63
+
64
+ context 'when the destination is empty' do
65
+ it 'syncs the directories' do
66
+ described_class.sync(source, destination)
67
+
68
+ expect("#{destination}/file_a").to be_a_file
69
+ expect("#{destination}/file_b").to be_a_file
70
+ expect("#{destination}/file_c").to be_a_file
71
+ expect("#{destination}/folder/file_d").to be_a_file
72
+ expect("#{destination}/folder/file_e").to be_a_file
73
+ expect("#{destination}/.dot_folder/file_f").to be_a_file
74
+ expect("#{destination}/.file_g").to be_a_file
75
+ end
76
+ end
77
+
78
+ context 'when the directory exists' do
79
+ before { FileUtils.mkdir_p(destination) }
80
+
81
+ it 'deletes existing files and folders' do
82
+ FileUtils.mkdir_p("#{destination}/existing_folder")
83
+ FileUtils.mkdir_p("#{destination}/.existing_folder")
84
+ FileUtils.touch("#{destination}/existing_file")
85
+ FileUtils.touch("#{destination}/.existing_file")
86
+
87
+ described_class.sync(source, destination)
88
+
89
+ expect("#{destination}/file_a").to be_a_file
90
+ expect("#{destination}/file_b").to be_a_file
91
+ expect("#{destination}/file_c").to be_a_file
92
+ expect("#{destination}/folder/file_d").to be_a_file
93
+ expect("#{destination}/folder/file_e").to be_a_file
94
+ expect("#{destination}/.dot_folder/file_f").to be_a_file
95
+ expect("#{destination}/.file_g").to be_a_file
96
+
97
+ expect("#{destination}/existing_folder").to_not be_a_directory
98
+ expect("#{destination}/.existing_folder").to_not be_a_directory
99
+ expect("#{destination}/existing_file").to_not be_a_file
100
+ expect("#{destination}/.existing_file").to_not be_a_file
101
+ end
102
+ end
103
+
104
+ context 'with deeply nested paths and symlinks' do
105
+ let(:source) do
106
+ source = File.join(tmp_path, 'source')
107
+ FileUtils.mkdir_p(source)
108
+
109
+ create_directory(source, 'bin')
110
+ create_file(source, 'bin', 'apt')
111
+ create_file(source, 'bin', 'yum')
112
+
113
+ create_file(source, 'LICENSE') { 'MIT' }
114
+
115
+ create_directory(source, 'include')
116
+ create_directory(source, 'include', 'linux')
117
+ create_file(source, 'include', 'linux', 'init.ini')
118
+
119
+ create_directory(source, 'source')
120
+ create_directory(source, 'source', 'bin')
121
+ create_file(source, 'source', 'bin', 'apt')
122
+ create_file(source, 'source', 'bin', 'yum')
123
+ create_file(source, 'source', 'LICENSE') { 'Apache 2.0' }
124
+
125
+ create_directory(source, 'empty_directory')
126
+
127
+ create_directory(source, 'links')
128
+ create_file(source, 'links', 'home.html')
129
+ FileUtils.ln_s("./home.html", "#{source}/links/index.html")
130
+ FileUtils.ln_s("./home.html", "#{source}/links/default.html")
131
+ FileUtils.ln_s("../source/bin/apt", "#{source}/links/apt")
132
+
133
+ FileUtils.ln_s('/foo/bar', "#{source}/root")
134
+
135
+ source
136
+ end
137
+
138
+ it 'copies relative and absolute symlinks' do
139
+ described_class.sync(source, destination)
140
+
141
+ expect("#{destination}/bin").to be_a_directory
142
+ expect("#{destination}/bin/apt").to be_a_file
143
+ expect("#{destination}/bin/yum").to be_a_file
144
+
145
+ expect("#{destination}/LICENSE").to be_a_file
146
+
147
+ expect("#{destination}/include").to be_a_directory
148
+ expect("#{destination}/include/linux").to be_a_directory
149
+ expect("#{destination}/include/linux/init.ini").to be_a_file
150
+
151
+ expect("#{destination}/source").to be_a_directory
152
+ expect("#{destination}/source/bin").to be_a_directory
153
+ expect("#{destination}/source/bin/apt").to be_a_file
154
+ expect("#{destination}/source/bin/yum").to be_a_file
155
+ expect("#{destination}/source/LICENSE").to be_a_file
156
+
157
+ expect("#{destination}/empty_directory").to be_a_directory
158
+
159
+ expect("#{destination}/links").to be_a_directory
160
+ expect("#{destination}/links/home.html").to be_a_file
161
+ expect("#{destination}/links/index.html").to be_a_symlink_to("./home.html")
162
+ expect("#{destination}/links/default.html").to be_a_symlink_to("./home.html")
163
+ expect("#{destination}/links/apt").to be_a_symlink_to("../source/bin/apt")
164
+
165
+ expect("#{destination}/root").to be_a_symlink_to('/foo/bar')
166
+ end
167
+ end
168
+
169
+ context 'when :exclude is given' do
170
+ it 'does not copy files and folders that match the pattern' do
171
+ described_class.sync(source, destination, exclude: '.dot_folder')
172
+
173
+ expect("#{destination}/file_a").to be_a_file
174
+ expect("#{destination}/file_b").to be_a_file
175
+ expect("#{destination}/file_c").to be_a_file
176
+ expect("#{destination}/folder/file_d").to be_a_file
177
+ expect("#{destination}/folder/file_e").to be_a_file
178
+ expect("#{destination}/.dot_folder").to_not be_a_directory
179
+ expect("#{destination}/.dot_folder/file_f").to_not be_a_file
180
+ expect("#{destination}/.file_g").to be_a_file
181
+ end
182
+
183
+ it 'removes existing files and folders in destination' do
184
+ FileUtils.mkdir_p("#{destination}/existing_folder")
185
+ FileUtils.touch("#{destination}/existing_file")
186
+ FileUtils.mkdir_p("#{destination}/.dot_folder")
187
+ FileUtils.touch("#{destination}/.dot_folder/file_f")
188
+
189
+ described_class.sync(source, destination, exclude: '.dot_folder')
190
+
191
+ expect("#{destination}/file_a").to be_a_file
192
+ expect("#{destination}/file_b").to be_a_file
193
+ expect("#{destination}/file_c").to be_a_file
194
+ expect("#{destination}/folder/file_d").to be_a_file
195
+ expect("#{destination}/folder/file_e").to be_a_file
196
+ expect("#{destination}/.dot_folder").to_not be_a_directory
197
+ expect("#{destination}/.dot_folder/file_f").to_not be_a_file
198
+ expect("#{destination}/.file_g").to be_a_file
199
+
200
+ expect("#{destination}/existing_folder").to_not be_a_directory
201
+ expect("#{destination}/existing_file").to_not be_a_file
202
+ end
203
+ end
204
+ end
205
+ end
206
+ end