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.
- checksums.yaml +7 -0
- data/.gitignore +140 -10
- data/CHANGELOG.md +181 -8
- data/README.md +63 -35
- data/Rakefile +1 -1
- data/docs/omnibus-build-cache.md b/data/docs/Build → Cache.md +0 -0
- data/docs/Building on Debian.md +59 -0
- data/docs/Building on OSX.md +61 -35
- data/docs/Building on RHEL.md +74 -0
- data/docs/Building on Windows.md +40 -81
- data/features/commands/build.feature +1 -2
- data/features/commands/clean.feature +1 -1
- data/lib/omnibus.rb +111 -204
- data/lib/omnibus/build_version.rb +3 -20
- data/lib/omnibus/build_version_dsl.rb +2 -3
- data/lib/omnibus/builder.rb +103 -211
- data/lib/omnibus/cleaner.rb +5 -7
- data/lib/omnibus/cli.rb +1 -4
- data/lib/omnibus/cli/base.rb +9 -16
- data/lib/omnibus/compressor.rb +60 -0
- data/{spec/data/complicated/config/software/version-manifest.rb → lib/omnibus/compressors/base.rb} +17 -12
- data/lib/omnibus/compressors/dmg.rb +312 -0
- data/lib/omnibus/{null_builder.rb → compressors/null.rb} +10 -4
- data/lib/omnibus/compressors/tgz.rb +141 -0
- data/lib/omnibus/config.rb +89 -83
- data/lib/omnibus/core_extensions.rb +1 -0
- data/lib/omnibus/core_extensions/open_uri.rb +58 -0
- data/lib/omnibus/digestable.rb +9 -3
- data/lib/omnibus/exceptions.rb +116 -175
- data/lib/omnibus/fetcher.rb +97 -138
- data/lib/omnibus/fetchers/git_fetcher.rb +130 -165
- data/lib/omnibus/fetchers/net_fetcher.rb +205 -164
- data/lib/omnibus/fetchers/{s3_cache_fetcher.rb → null_fetcher.rb} +27 -17
- data/lib/omnibus/fetchers/path_fetcher.rb +74 -32
- data/lib/omnibus/file_syncer.rb +149 -0
- data/lib/omnibus/generator.rb +103 -32
- data/lib/omnibus/generator_files/.kitchen.yml.erb +5 -1
- data/lib/omnibus/generator_files/Gemfile.erb +13 -7
- data/lib/omnibus/generator_files/config/projects/project.rb.erb +28 -0
- data/lib/omnibus/generator_files/config/software/zlib.rb.erb +55 -0
- data/lib/omnibus/generator_files/omnibus.rb.erb +5 -7
- data/lib/omnibus/git_cache.rb +11 -13
- data/lib/omnibus/logger.rb +76 -22
- data/lib/omnibus/logging.rb +1 -1
- data/lib/omnibus/metadata.rb +264 -0
- data/lib/omnibus/ohai.rb +0 -51
- data/lib/omnibus/package.rb +4 -228
- data/lib/omnibus/packager.rb +71 -0
- data/lib/omnibus/packagers/base.rb +118 -176
- data/lib/omnibus/packagers/bff.rb +136 -0
- data/lib/omnibus/packagers/deb.rb +389 -0
- data/lib/omnibus/packagers/makeself.rb +114 -0
- data/lib/omnibus/packagers/msi.rb +346 -0
- data/lib/omnibus/packagers/pkg.rb +278 -0
- data/lib/omnibus/packagers/rpm.rb +438 -0
- data/lib/omnibus/packagers/solaris.rb +110 -0
- data/lib/omnibus/project.rb +263 -666
- data/lib/omnibus/publisher.rb +3 -3
- data/lib/omnibus/s3_cache.rb +21 -30
- data/lib/omnibus/software.rb +132 -271
- data/lib/omnibus/templating.rb +66 -0
- data/lib/omnibus/thread_pool.rb +109 -0
- data/lib/omnibus/util.rb +137 -15
- data/lib/omnibus/version.rb +1 -1
- data/omnibus.gemspec +2 -2
- data/resources/bff/gen.template.erb +22 -0
- data/resources/bff/postinstall.sh +0 -0
- data/resources/bff/unpostinstall.sh +0 -0
- data/resources/deb/conffiles.erb +3 -0
- data/resources/deb/control.erb +25 -0
- data/resources/deb/md5sums.erb +3 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/background.png +0 -0
- data/resources/dmg/create_dmg.osascript.erb +17 -0
- data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/icon.png +0 -0
- data/{bin → resources/makeself}/makeself-header.sh +0 -0
- data/{bin → resources/makeself}/makeself.sh +0 -0
- data/{lib/omnibus/generator_files/package_scripts/makeselfinst.erb → resources/makeself/post_extract.sh.erb} +4 -4
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/LICENSE.rtf +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/banner_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/dialog_background.bmp +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_16x16.ico +0 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_32x32.ico +0 -0
- data/{spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl → resources/msi/localization-en-us.wxl.erb} +3 -4
- data/resources/msi/parameters.wxi.erb +9 -0
- data/{lib/omnibus/generator_files/windows_msi → resources/msi}/source.wxs.erb +14 -15
- data/{lib/omnibus/generator_files/mac_pkg → resources/pkg}/background.png +0 -0
- data/resources/pkg/distribution.xml.erb +21 -0
- data/resources/pkg/license.html.erb +3 -0
- data/resources/pkg/welcome.html.erb +7 -0
- data/resources/rpm/rpmmacros.erb +3 -0
- data/resources/rpm/signing.erb +40 -0
- data/resources/rpm/spec.erb +70 -0
- data/spec/functional/builder_spec.rb +90 -111
- data/spec/functional/fetchers/git_fetcher_spec.rb +130 -0
- data/spec/functional/fetchers/net_fetcher_spec.rb +110 -0
- data/spec/functional/fetchers/path_fetcher_spec.rb +97 -0
- data/spec/functional/file_syncer_spec.rb +206 -0
- data/spec/functional/templating_spec.rb +73 -0
- data/spec/spec_helper.rb +31 -94
- data/spec/support/env_helpers.rb +20 -0
- data/spec/support/examples.rb +56 -0
- data/spec/support/file_helpers.rb +46 -0
- data/spec/support/git_helpers.rb +107 -0
- data/spec/support/logging_helpers.rb +33 -0
- data/spec/support/matchers.rb +36 -0
- data/spec/support/ohai_helpers.rb +22 -0
- data/spec/support/path_helpers.rb +19 -0
- data/spec/support/shell_helpers.rb +14 -0
- data/spec/unit/build_version_dsl_spec.rb +0 -17
- data/spec/unit/build_version_spec.rb +1 -19
- data/spec/unit/builder_spec.rb +158 -46
- data/spec/unit/compressor_spec.rb +45 -0
- data/spec/unit/compressors/base_spec.rb +26 -0
- data/spec/unit/compressors/dmg_spec.rb +291 -0
- data/spec/unit/compressors/null_spec.rb +23 -0
- data/spec/unit/compressors/tgz_spec.rb +67 -0
- data/spec/unit/config_spec.rb +27 -34
- data/spec/unit/digestable_spec.rb +4 -4
- data/spec/unit/fetchers/git_fetcher_spec.rb +110 -39
- data/spec/unit/fetchers/net_fetcher_spec.rb +182 -72
- data/spec/unit/fetchers/path_fetcher_spec.rb +111 -0
- data/spec/unit/generator_spec.rb +137 -0
- data/spec/unit/git_cache_spec.rb +24 -34
- data/spec/unit/library_spec.rb +21 -82
- data/spec/unit/metadata_spec.rb +207 -0
- data/spec/unit/ohai_spec.rb +0 -7
- data/spec/unit/omnibus_spec.rb +41 -36
- data/spec/unit/package_spec.rb +1 -216
- data/spec/unit/packagers/base_spec.rb +76 -190
- data/spec/unit/packagers/bff_spec.rb +160 -0
- data/spec/unit/packagers/deb_spec.rb +324 -0
- data/spec/unit/packagers/makeself_spec.rb +80 -0
- data/spec/unit/packagers/msi_spec.rb +267 -0
- data/spec/unit/packagers/pkg_spec.rb +219 -0
- data/spec/unit/packagers/rpm_spec.rb +328 -0
- data/spec/unit/project_spec.rb +217 -80
- data/spec/unit/publisher_spec.rb +6 -2
- data/spec/unit/publishers/artifactory_publisher_spec.rb +1 -1
- data/spec/unit/publishers/s3_publisher_spec.rb +1 -1
- data/spec/unit/s3_cacher_spec.rb +22 -5
- data/spec/unit/software_spec.rb +89 -232
- data/spec/unit/util_spec.rb +188 -0
- metadata +159 -402
- data/features/commands/_deprecated.feature +0 -84
- data/lib/omnibus/cleanroom.rb +0 -141
- data/lib/omnibus/cli/deprecated.rb +0 -132
- data/lib/omnibus/generator_files/mac_pkg/license.html.erb +0 -1
- data/lib/omnibus/generator_files/mac_pkg/welcome.html.erb +0 -9
- data/lib/omnibus/generator_files/project.rb.erb +0 -20
- data/lib/omnibus/generator_files/software/c-example.rb.erb +0 -42
- data/lib/omnibus/generator_files/software/erlang-example.rb.erb +0 -38
- data/lib/omnibus/generator_files/software/ruby-example.rb.erb +0 -24
- data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +0 -20
- data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +0 -9
- data/lib/omnibus/packagers/mac_dmg.rb +0 -235
- data/lib/omnibus/packagers/mac_pkg.rb +0 -176
- data/lib/omnibus/packagers/windows_msi.rb +0 -109
- data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +0 -15
- data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +0 -19
- data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +0 -100
- data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +0 -15
- data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +0 -24
- data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +0 -29
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +0 -35
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +0 -13
- data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +0 -1035
- data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +0 -12
- data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +0 -11
- data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +0 -42
- data/spec/data/complicated/config/patches/ncurses/patch-aa +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-ab +0 -44
- data/spec/data/complicated/config/patches/ncurses/patch-ac +0 -40
- data/spec/data/complicated/config/patches/ncurses/patch-ad +0 -12
- data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +0 -23
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +0 -22
- data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +0 -22
- data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +0 -64
- data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +0 -101
- data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +0 -12
- data/spec/data/complicated/config/patches/ruby/patch-configure +0 -103
- data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +0 -10
- data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +0 -42
- data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +0 -57
- data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +0 -27
- data/spec/data/complicated/config/projects/angrychef.rb +0 -32
- data/spec/data/complicated/config/projects/chef-windows.rb +0 -32
- data/spec/data/complicated/config/projects/chef.rb +0 -32
- data/spec/data/complicated/config/projects/chefdk-windows.rb +0 -41
- data/spec/data/complicated/config/projects/chefdk.rb +0 -44
- data/spec/data/complicated/config/software/appbundler.rb +0 -25
- data/spec/data/complicated/config/software/autoconf.rb +0 -35
- data/spec/data/complicated/config/software/automake.rb +0 -39
- data/spec/data/complicated/config/software/berkshelf.rb +0 -44
- data/spec/data/complicated/config/software/bundler.rb +0 -25
- data/spec/data/complicated/config/software/bzip2.rb +0 -46
- data/spec/data/complicated/config/software/cacerts.rb +0 -44
- data/spec/data/complicated/config/software/chef-client-msi.rb +0 -87
- data/spec/data/complicated/config/software/chef-gem.rb +0 -26
- data/spec/data/complicated/config/software/chef-vault.rb +0 -43
- data/spec/data/complicated/config/software/chef-windows.rb +0 -158
- data/spec/data/complicated/config/software/chef.rb +0 -170
- data/spec/data/complicated/config/software/chefdk.rb +0 -103
- data/spec/data/complicated/config/software/couchdb.rb +0 -53
- data/spec/data/complicated/config/software/curl.rb +0 -48
- data/spec/data/complicated/config/software/erlang.rb +0 -65
- data/spec/data/complicated/config/software/expat.rb +0 -21
- data/spec/data/complicated/config/software/fcgi.rb +0 -56
- data/spec/data/complicated/config/software/fcgiwrap.rb +0 -41
- data/spec/data/complicated/config/software/gd.rb +0 -56
- data/spec/data/complicated/config/software/gdbm.rb +0 -40
- data/spec/data/complicated/config/software/gecode.rb +0 -48
- data/spec/data/complicated/config/software/git.rb +0 -40
- data/spec/data/complicated/config/software/help2man.rb +0 -30
- data/spec/data/complicated/config/software/icu.rb +0 -40
- data/spec/data/complicated/config/software/jre.rb +0 -48
- data/spec/data/complicated/config/software/keepalived.rb +0 -43
- data/spec/data/complicated/config/software/libarchive.rb +0 -50
- data/spec/data/complicated/config/software/libedit.rb +0 -69
- data/spec/data/complicated/config/software/libffi.rb +0 -71
- data/spec/data/complicated/config/software/libgcc.rb +0 -39
- data/spec/data/complicated/config/software/libiconv.rb +0 -55
- data/spec/data/complicated/config/software/libjpeg.rb +0 -39
- data/spec/data/complicated/config/software/libpng.rb +0 -38
- data/spec/data/complicated/config/software/libtool.rb +0 -52
- data/spec/data/complicated/config/software/libwrap.rb +0 -50
- data/spec/data/complicated/config/software/libxml2.rb +0 -51
- data/spec/data/complicated/config/software/libxslt.rb +0 -52
- data/spec/data/complicated/config/software/libyaml-windows.rb +0 -43
- data/spec/data/complicated/config/software/libyaml.rb +0 -62
- data/spec/data/complicated/config/software/logrotate.rb +0 -41
- data/spec/data/complicated/config/software/makedepend.rb +0 -73
- data/spec/data/complicated/config/software/mysql2.rb +0 -42
- data/spec/data/complicated/config/software/nagios-plugins.rb +0 -53
- data/spec/data/complicated/config/software/nagios.rb +0 -66
- data/spec/data/complicated/config/software/ncurses.rb +0 -149
- data/spec/data/complicated/config/software/nginx.rb +0 -40
- data/spec/data/complicated/config/software/nodejs.rb +0 -44
- data/spec/data/complicated/config/software/nokogiri.rb +0 -55
- data/spec/data/complicated/config/software/nrpe.rb +0 -61
- data/spec/data/complicated/config/software/ohai.rb +0 -64
- data/spec/data/complicated/config/software/omnibus-ctl.rb +0 -34
- data/spec/data/complicated/config/software/openresty.rb +0 -67
- data/spec/data/complicated/config/software/openssl.rb +0 -158
- data/spec/data/complicated/config/software/pcre.rb +0 -42
- data/spec/data/complicated/config/software/perl-extutils-embed.rb +0 -15
- data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +0 -15
- data/spec/data/complicated/config/software/perl.rb +0 -48
- data/spec/data/complicated/config/software/perl_pg_driver.rb +0 -12
- data/spec/data/complicated/config/software/php.rb +0 -41
- data/spec/data/complicated/config/software/pip.rb +0 -30
- data/spec/data/complicated/config/software/pkg-config.rb +0 -66
- data/spec/data/complicated/config/software/popt.rb +0 -47
- data/spec/data/complicated/config/software/postgresql.rb +0 -51
- data/spec/data/complicated/config/software/preparation.rb +0 -30
- data/spec/data/complicated/config/software/pygments.rb +0 -25
- data/spec/data/complicated/config/software/python.rb +0 -49
- data/spec/data/complicated/config/software/rabbitmq.rb +0 -36
- data/spec/data/complicated/config/software/rebar.rb +0 -36
- data/spec/data/complicated/config/software/redis.rb +0 -33
- data/spec/data/complicated/config/software/rsync.rb +0 -48
- data/spec/data/complicated/config/software/ruby-windows-devkit.rb +0 -30
- data/spec/data/complicated/config/software/ruby-windows.rb +0 -30
- data/spec/data/complicated/config/software/ruby.rb +0 -162
- data/spec/data/complicated/config/software/rubygems-customization.rb +0 -57
- data/spec/data/complicated/config/software/rubygems.rb +0 -37
- data/spec/data/complicated/config/software/runit.rb +0 -118
- data/spec/data/complicated/config/software/server-jre.rb +0 -46
- data/spec/data/complicated/config/software/setuptools.rb +0 -30
- data/spec/data/complicated/config/software/spawn-fcgi.rb +0 -40
- data/spec/data/complicated/config/software/sphinx.rb +0 -26
- data/spec/data/complicated/config/software/spidermonkey.rb +0 -60
- data/spec/data/complicated/config/software/sqitch.rb +0 -24
- data/spec/data/complicated/config/software/test-kitchen.rb +0 -39
- data/spec/data/complicated/config/software/unicorn.rb +0 -27
- data/spec/data/complicated/config/software/util-macros.rb +0 -46
- data/spec/data/complicated/config/software/xproto.rb +0 -46
- data/spec/data/complicated/config/software/yajl.rb +0 -30
- data/spec/data/complicated/config/software/zlib.rb +0 -67
- data/spec/data/overrides/bad_line.overrides +0 -3
- data/spec/data/overrides/good.overrides +0 -5
- data/spec/data/overrides/with_dupes.overrides +0 -4
- data/spec/data/projects/chefdk.rb +0 -41
- data/spec/data/projects/sample.rb +0 -13
- data/spec/data/software/erchef.rb +0 -42
- data/spec/data/software/zlib.rb +0 -67
- data/spec/fixtures/sample/files/mac_dmg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_dmg/Resources/icon.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/background.png +0 -0
- data/spec/fixtures/sample/files/mac_pkg/Resources/license.html +0 -1
- data/spec/fixtures/sample/files/mac_pkg/Resources/welcome.html +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +0 -8
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
- data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +0 -9
- data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +0 -74
- data/spec/integration/packagers/mac_spec.rb +0 -58
- data/spec/integration/packagers/windows_spec.rb +0 -70
- data/spec/unit/packagers/mac_pkg_spec.rb +0 -151
@@ -0,0 +1,73 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
class RandomClass
|
5
|
+
include Templating
|
6
|
+
end
|
7
|
+
|
8
|
+
describe Templating do
|
9
|
+
subject { RandomClass.new }
|
10
|
+
|
11
|
+
describe '#render_template' do
|
12
|
+
let(:source) { "#{tmp_path}/source.erb" }
|
13
|
+
let(:destination) { "#{tmp_path}/final" }
|
14
|
+
let(:mode) { 0644 }
|
15
|
+
let(:variables) { { name: 'Name' } }
|
16
|
+
let(:contents) do
|
17
|
+
<<-EOH.gsub(/^ {10}/, '')
|
18
|
+
<%= name %>
|
19
|
+
|
20
|
+
<% if false -%>
|
21
|
+
This is magic!
|
22
|
+
<% end -%>
|
23
|
+
EOH
|
24
|
+
end
|
25
|
+
|
26
|
+
let(:options) do
|
27
|
+
{
|
28
|
+
destination: destination,
|
29
|
+
variables: variables,
|
30
|
+
mode: mode,
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
before do
|
35
|
+
File.open(source, 'w') { |f| f.write(contents) }
|
36
|
+
end
|
37
|
+
|
38
|
+
context 'when no destination is given' do
|
39
|
+
let(:destination) { nil }
|
40
|
+
|
41
|
+
it 'renders adjacent, without the erb extension' do
|
42
|
+
subject.render_template(source, options)
|
43
|
+
expect("#{tmp_path}/source").to be_a_file
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
context 'when a destination is given' do
|
48
|
+
|
49
|
+
it 'renders at the destination' do
|
50
|
+
subject.render_template(source, options)
|
51
|
+
expect(destination).to be_a_file
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
context 'when a mode is given' do
|
56
|
+
let(:mode) { 0755 }
|
57
|
+
|
58
|
+
it 'renders the object with the mode' do
|
59
|
+
subject.render_template(source, options)
|
60
|
+
expect(destination).to be_an_executable
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
context 'when an undefined variable is used' do
|
65
|
+
let(:contents) { "<%= not_a_real_variable %>" }
|
66
|
+
|
67
|
+
it 'raise an exception' do
|
68
|
+
expect { subject.render_template(source, options) }.to raise_error
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,95 +1,9 @@
|
|
1
1
|
require 'rspec'
|
2
2
|
require 'rspec/its'
|
3
3
|
|
4
|
-
require '
|
5
|
-
require 'fauxhai'
|
6
|
-
|
7
|
-
module Omnibus
|
8
|
-
module RSpec
|
9
|
-
SPEC_DATA = File.expand_path(File.join(File.dirname(__FILE__), 'data'))
|
10
|
-
|
11
|
-
def software_path(name)
|
12
|
-
File.join(SPEC_DATA, 'software', "#{name}.rb")
|
13
|
-
end
|
14
|
-
|
15
|
-
def overrides_path(name)
|
16
|
-
File.join(SPEC_DATA, 'overrides', "#{name}.overrides")
|
17
|
-
end
|
18
|
-
|
19
|
-
def project_path(name)
|
20
|
-
File.join(SPEC_DATA, 'projects', "#{name}.rb")
|
21
|
-
end
|
22
|
-
|
23
|
-
def complicated_path
|
24
|
-
File.join(SPEC_DATA, 'complicated')
|
25
|
-
end
|
26
|
-
|
27
|
-
def fixtures_path
|
28
|
-
File.expand_path('../fixtures', __FILE__)
|
29
|
-
end
|
30
|
-
|
31
|
-
def tmp_path
|
32
|
-
File.expand_path('../../tmp', __FILE__)
|
33
|
-
end
|
34
|
-
|
35
|
-
#
|
36
|
-
# Stub the given environment key.
|
37
|
-
#
|
38
|
-
# @param [String] key
|
39
|
-
# @param [String] value
|
40
|
-
#
|
41
|
-
def stub_env(key, value)
|
42
|
-
unless @__env_already_stubbed__
|
43
|
-
allow(ENV).to receive(:[]).and_call_original
|
44
|
-
@__env_already_stubbed__ = true
|
45
|
-
end
|
46
|
-
|
47
|
-
allow(ENV).to receive(:[]).with(key).and_return(value.to_s)
|
48
|
-
end
|
49
|
-
|
50
|
-
#
|
51
|
-
# Stub Ohai with the given data.
|
52
|
-
#
|
53
|
-
# @param [Hash] data
|
54
|
-
#
|
55
|
-
def stub_ohai(options = {}, &block)
|
56
|
-
require 'ohai' unless defined?(Mash)
|
57
|
-
|
58
|
-
ohai = Mash.from_hash(Fauxhai.mock(options, &block).data)
|
59
|
-
allow(Ohai).to receive(:ohai).and_return(ohai)
|
60
|
-
end
|
61
|
-
|
62
|
-
#
|
63
|
-
# Grab the result of the log command. Since Omnibus uses the block form of
|
64
|
-
# the logger, this method handles both types of logging.
|
65
|
-
#
|
66
|
-
# @example
|
67
|
-
# output = capture_logging { some_command }
|
68
|
-
# expect(output).to include('whatever')
|
69
|
-
#
|
70
|
-
def capture_logging
|
71
|
-
original = Omnibus.logger
|
72
|
-
Omnibus.logger = TestLogger.new
|
73
|
-
yield
|
74
|
-
Omnibus.logger.output
|
75
|
-
ensure
|
76
|
-
Omnibus.logger = original
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
module Omnibus
|
82
|
-
class TestLogger < Logger
|
83
|
-
def initialize(*)
|
84
|
-
super(StringIO.new)
|
85
|
-
@level = -1
|
86
|
-
end
|
4
|
+
require 'cleanroom/rspec'
|
87
5
|
|
88
|
-
|
89
|
-
@logdev.dev.string
|
90
|
-
end
|
91
|
-
end
|
92
|
-
end
|
6
|
+
require 'omnibus'
|
93
7
|
|
94
8
|
def windows?
|
95
9
|
!!(RUBY_PLATFORM =~ /mswin|mingw|windows/)
|
@@ -100,16 +14,40 @@ def mac?
|
|
100
14
|
end
|
101
15
|
|
102
16
|
RSpec.configure do |config|
|
103
|
-
|
104
|
-
|
17
|
+
# Custom matchers and shared examples
|
18
|
+
require_relative 'support/examples'
|
19
|
+
require_relative 'support/matchers'
|
20
|
+
|
21
|
+
require_relative 'support/env_helpers'
|
22
|
+
config.include(Omnibus::RSpec::EnvHelpers)
|
23
|
+
|
24
|
+
require_relative 'support/file_helpers'
|
25
|
+
config.include(Omnibus::RSpec::FileHelpers)
|
26
|
+
|
27
|
+
require_relative 'support/git_helpers'
|
28
|
+
config.include(Omnibus::RSpec::GitHelpers)
|
29
|
+
|
30
|
+
require_relative 'support/logging_helpers'
|
31
|
+
config.include(Omnibus::RSpec::LoggingHelpers)
|
32
|
+
|
33
|
+
require_relative 'support/ohai_helpers'
|
34
|
+
config.include(Omnibus::RSpec::OhaiHelpers)
|
35
|
+
|
36
|
+
require_relative 'support/path_helpers'
|
37
|
+
config.include(Omnibus::RSpec::PathHelpers)
|
38
|
+
|
39
|
+
require_relative 'support/shell_helpers'
|
40
|
+
config.include(Omnibus::RSpec::ShellHelpers)
|
41
|
+
|
42
|
+
config.filter_run(focus: true)
|
105
43
|
config.run_all_when_everything_filtered = true
|
106
44
|
|
107
|
-
config.filter_run_excluding
|
108
|
-
config.filter_run_excluding
|
45
|
+
config.filter_run_excluding(windows_only: true) unless windows?
|
46
|
+
config.filter_run_excluding(mac_only: true) unless mac?
|
109
47
|
|
110
48
|
config.before(:each) do
|
111
49
|
# Suppress logging
|
112
|
-
Omnibus.logger.level = :
|
50
|
+
Omnibus.logger.level = :nothing
|
113
51
|
|
114
52
|
# Reset config
|
115
53
|
Omnibus.reset!
|
@@ -123,7 +61,6 @@ RSpec.configure do |config|
|
|
123
61
|
end
|
124
62
|
|
125
63
|
config.after(:each) do
|
126
|
-
# Reset config
|
127
64
|
Omnibus.reset!
|
128
65
|
end
|
129
66
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Omnibus
|
2
|
+
module RSpec
|
3
|
+
module EnvHelpers
|
4
|
+
#
|
5
|
+
# Stub the given environment key.
|
6
|
+
#
|
7
|
+
# @param [String] key
|
8
|
+
# @param [String] value
|
9
|
+
#
|
10
|
+
def stub_env(key, value)
|
11
|
+
unless @__env_already_stubbed__
|
12
|
+
allow(ENV).to receive(:[]).and_call_original
|
13
|
+
@__env_already_stubbed__ = true
|
14
|
+
end
|
15
|
+
|
16
|
+
allow(ENV).to receive(:[]).with(key).and_return(value.to_s)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
RSpec.shared_examples 'a software' do |name = 'chefdk'|
|
2
|
+
let(:project_root) { File.join(tmp_path, 'software') }
|
3
|
+
|
4
|
+
let(:name) { name }
|
5
|
+
let(:source) { nil }
|
6
|
+
let(:version) { '1.0.0' }
|
7
|
+
|
8
|
+
let(:build_dir) { File.join(project_root, 'local', 'build') }
|
9
|
+
let(:cache_dir) { File.join(project_root, 'local', 'cache') }
|
10
|
+
let(:source_dir) { File.join(project_root, 'local', 'source') }
|
11
|
+
let(:project_dir) { File.join(source_dir, 'project_dir') }
|
12
|
+
|
13
|
+
let(:patches_dir) { File.join(project_root, 'config', 'patches', name) }
|
14
|
+
let(:scripts_dir) { File.join(project_root, 'config', 'scripts', name) }
|
15
|
+
let(:softwares_dir) { File.join(project_root, 'config', 'software', name) }
|
16
|
+
let(:templates_dir) { File.join(project_root, 'config', 'templates', name) }
|
17
|
+
|
18
|
+
let(:install_dir) { File.join(project_root, 'opt', name) }
|
19
|
+
let(:bin_dir) { File.join(install_dir, 'embedded', 'bin') }
|
20
|
+
|
21
|
+
let(:software) do
|
22
|
+
double(Omnibus::Software,
|
23
|
+
name: name,
|
24
|
+
version: version,
|
25
|
+
build_dir: build_dir,
|
26
|
+
install_dir: install_dir,
|
27
|
+
project_dir: project_dir,
|
28
|
+
source: source,
|
29
|
+
overridden?: false,
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
before do
|
34
|
+
Omnibus::Config.cache_dir(cache_dir)
|
35
|
+
Omnibus::Config.source_dir(source_dir)
|
36
|
+
|
37
|
+
Omnibus::Config.project_root(project_root)
|
38
|
+
Omnibus::Config.build_retries(0)
|
39
|
+
Omnibus::Config.use_git_caching(false)
|
40
|
+
Omnibus::Config.software_gems(nil)
|
41
|
+
|
42
|
+
# Make the directories
|
43
|
+
FileUtils.mkdir_p(build_dir)
|
44
|
+
FileUtils.mkdir_p(cache_dir)
|
45
|
+
FileUtils.mkdir_p(project_dir)
|
46
|
+
FileUtils.mkdir_p(source_dir)
|
47
|
+
|
48
|
+
FileUtils.mkdir_p(patches_dir)
|
49
|
+
FileUtils.mkdir_p(scripts_dir)
|
50
|
+
FileUtils.mkdir_p(softwares_dir)
|
51
|
+
FileUtils.mkdir_p(templates_dir)
|
52
|
+
|
53
|
+
FileUtils.mkdir_p(install_dir)
|
54
|
+
FileUtils.mkdir_p(bin_dir)
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Omnibus
|
2
|
+
module RSpec
|
3
|
+
module FileHelpers
|
4
|
+
def create_directory(*paths)
|
5
|
+
path = File.join(*paths)
|
6
|
+
FileUtils.mkdir_p(path)
|
7
|
+
path
|
8
|
+
end
|
9
|
+
|
10
|
+
def remove_directory(*paths)
|
11
|
+
path = File.join(*paths)
|
12
|
+
FileUtils.rm_rf(path)
|
13
|
+
path
|
14
|
+
end
|
15
|
+
|
16
|
+
def copy_file(source, destination)
|
17
|
+
FileUtils.cp(source, destination)
|
18
|
+
destination
|
19
|
+
end
|
20
|
+
|
21
|
+
def remove_file(*paths)
|
22
|
+
path = File.join(*paths)
|
23
|
+
FileUtils.rm_f(path)
|
24
|
+
path
|
25
|
+
end
|
26
|
+
|
27
|
+
def create_file(*paths, &block)
|
28
|
+
path = File.join(*paths)
|
29
|
+
|
30
|
+
FileUtils.mkdir_p(File.dirname(path))
|
31
|
+
|
32
|
+
if block
|
33
|
+
File.open(path, 'wb') { |f| f.write(block.call) }
|
34
|
+
else
|
35
|
+
FileUtils.touch(path)
|
36
|
+
end
|
37
|
+
|
38
|
+
path
|
39
|
+
end
|
40
|
+
|
41
|
+
def create_link(a, b)
|
42
|
+
FileUtils.ln_s(a, b)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
require_relative 'shell_helpers'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
module RSpec
|
5
|
+
module GitHelpers
|
6
|
+
include ShellHelpers
|
7
|
+
|
8
|
+
def git_origin_for(repo, options = {})
|
9
|
+
"file://#{fake_git_remote("git://github.com/omnibus/#{repo}.git", options)}/.git"
|
10
|
+
end
|
11
|
+
|
12
|
+
def remote_git_repo(name, options = {})
|
13
|
+
path = File.join(remotes, name)
|
14
|
+
remote_url = "file://#{path}"
|
15
|
+
|
16
|
+
# Create a bogus software
|
17
|
+
FileUtils.mkdir_p(path)
|
18
|
+
|
19
|
+
Dir.chdir(path) do
|
20
|
+
git %|init --bare|
|
21
|
+
git %|config core.sharedrepository 1|
|
22
|
+
git %|config receive.denyNonFastforwards true|
|
23
|
+
git %|config receive.denyCurrentBranch ignore|
|
24
|
+
end
|
25
|
+
|
26
|
+
Dir.chdir(git_scratch) do
|
27
|
+
# Create a bogus configure file
|
28
|
+
File.open('configure', 'w') { |f| f.write('echo "Done!"') }
|
29
|
+
|
30
|
+
git %|init .|
|
31
|
+
git %|add .|
|
32
|
+
git %|commit -am "Initial commit for #{name}..."|
|
33
|
+
git %|remote add origin "#{remote_url}"|
|
34
|
+
git %|push origin master|
|
35
|
+
|
36
|
+
options[:tags].each do |tag|
|
37
|
+
File.open('tag', 'w') { |f| f.write(tag) }
|
38
|
+
git %|add tag|
|
39
|
+
git %|commit -am "Create tag #{tag}"|
|
40
|
+
git %|tag "#{tag}"|
|
41
|
+
git %|push origin "#{tag}"|
|
42
|
+
end if options[:tags]
|
43
|
+
|
44
|
+
options[:branches].each do |branch|
|
45
|
+
git %|checkout -b #{branch} master|
|
46
|
+
File.open('branch', 'w') { |f| f.write(branch) }
|
47
|
+
git %|add branch|
|
48
|
+
git %|commit -am "Create branch #{branch}"|
|
49
|
+
git %|push origin "#{branch}"|
|
50
|
+
git %|checkout master|
|
51
|
+
end if options[:branches]
|
52
|
+
end
|
53
|
+
|
54
|
+
path
|
55
|
+
end
|
56
|
+
|
57
|
+
# Calculate the git sha for the given ref.
|
58
|
+
#
|
59
|
+
# @param [#to_s] repo
|
60
|
+
# the repository to show the ref for
|
61
|
+
# @param [#to_s] ref
|
62
|
+
# the ref to show
|
63
|
+
#
|
64
|
+
# @return [String]
|
65
|
+
def sha_for_ref(repo, ref)
|
66
|
+
Dir.chdir(File.join(remotes, repo)) do
|
67
|
+
git("show-ref #{ref}").stdout.split(/\s/).first
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
private
|
72
|
+
|
73
|
+
# The path to store the git remotes.
|
74
|
+
#
|
75
|
+
# @return [Pathname]
|
76
|
+
def remotes
|
77
|
+
path = File.join(tmp_path, 'git', 'remotes')
|
78
|
+
FileUtils.mkdir_p(path) unless File.directory?(path)
|
79
|
+
path
|
80
|
+
end
|
81
|
+
|
82
|
+
def git_scratch
|
83
|
+
path = File.join(tmp_path, 'git', 'scratch')
|
84
|
+
FileUtils.mkdir_p(path) unless File.directory?(path)
|
85
|
+
path
|
86
|
+
end
|
87
|
+
|
88
|
+
def git(command)
|
89
|
+
#
|
90
|
+
# We need to override some of the variable's git uses for generating
|
91
|
+
# the SHASUM for testing purposes
|
92
|
+
#
|
93
|
+
time = Time.at(680227200).utc.strftime('%c %z')
|
94
|
+
env = {
|
95
|
+
'GIT_AUTHOR_NAME' => 'omnibus',
|
96
|
+
'GIT_AUTHOR_EMAIL' => 'omnibus@getchef.com',
|
97
|
+
'GIT_AUTHOR_DATE' => time,
|
98
|
+
'GIT_COMMITTER_NAME' => 'omnibus',
|
99
|
+
'GIT_COMMITTER_EMAIL' => 'omnibus@gechef.com',
|
100
|
+
'GIT_COMMITTER_DATE' => time,
|
101
|
+
}
|
102
|
+
|
103
|
+
shellout!("git #{command}", env: env)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|