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
data/spec/unit/project_spec.rb
CHANGED
@@ -3,24 +3,33 @@ require 'ohai'
|
|
3
3
|
|
4
4
|
module Omnibus
|
5
5
|
describe Project do
|
6
|
-
|
6
|
+
subject do
|
7
|
+
described_class.new.evaluate do
|
8
|
+
name 'sample'
|
9
|
+
friendly_name 'Sample Project'
|
10
|
+
install_dir '/sample'
|
11
|
+
maintainer 'Sample Devs'
|
12
|
+
homepage 'http://example.com/'
|
7
13
|
|
8
|
-
|
14
|
+
build_version '1.0'
|
15
|
+
build_iteration 1
|
16
|
+
|
17
|
+
extra_package_file '/path/to/sample_dir'
|
18
|
+
extra_package_file '/path/to/file.conf'
|
19
|
+
|
20
|
+
resources_path 'sample/project/resources'
|
21
|
+
end
|
22
|
+
end
|
9
23
|
|
10
24
|
it_behaves_like 'a cleanroom setter', :name, %|name 'chef'|
|
11
25
|
it_behaves_like 'a cleanroom setter', :friendly_name, %|friendly_name 'Chef'|
|
12
|
-
it_behaves_like 'a cleanroom setter', :msi_parameters, %|msi_parameters {}|
|
13
|
-
it_behaves_like 'a cleanroom setter', :package_name, %|package_name 'chef.package'|
|
14
|
-
it_behaves_like 'a cleanroom setter', :install_dir, %|install_dir '/opt/chef'|
|
15
|
-
it_behaves_like 'a cleanroom setter', :install_path, %|install_path '/opt/chef'|
|
16
26
|
it_behaves_like 'a cleanroom setter', :maintainer, %|maintainer 'Chef Software, Inc'|
|
17
27
|
it_behaves_like 'a cleanroom setter', :homepage, %|homepage 'https://getchef.com'|
|
18
28
|
it_behaves_like 'a cleanroom setter', :description, %|description 'Installs the thing'|
|
19
|
-
it_behaves_like 'a cleanroom setter', :
|
29
|
+
it_behaves_like 'a cleanroom setter', :replace, %|replace 'old-chef'|
|
20
30
|
it_behaves_like 'a cleanroom setter', :conflict, %|conflict 'puppet'|
|
21
31
|
it_behaves_like 'a cleanroom setter', :build_version, %|build_version '1.2.3'|
|
22
32
|
it_behaves_like 'a cleanroom setter', :build_iteration, %|build_iteration 1|
|
23
|
-
it_behaves_like 'a cleanroom setter', :mac_pkg_identifier, %|mac_pkg_identifier 'com.getchef'|
|
24
33
|
it_behaves_like 'a cleanroom setter', :package_user, %|package_user 'chef'|
|
25
34
|
it_behaves_like 'a cleanroom setter', :package_group, %|package_group 'chef'|
|
26
35
|
it_behaves_like 'a cleanroom setter', :override, %|override :chefdk, source: 'foo.com'|
|
@@ -31,59 +40,85 @@ module Omnibus
|
|
31
40
|
it_behaves_like 'a cleanroom setter', :exclude, %|exclude 'hamlet'|
|
32
41
|
it_behaves_like 'a cleanroom setter', :config_file, %|config_file '/path/to/config.rb'|
|
33
42
|
it_behaves_like 'a cleanroom setter', :extra_package_file, %|extra_package_file '/path/to/asset'|
|
34
|
-
it_behaves_like 'a cleanroom setter', :dependencies, %|dependencies 'a', 'b', 'c'|
|
35
|
-
|
36
|
-
it_behaves_like 'a cleanroom getter', :files_path
|
37
43
|
|
38
44
|
describe 'basics' do
|
39
|
-
it '
|
40
|
-
expect(
|
45
|
+
it 'returns a name' do
|
46
|
+
expect(subject.name).to eq('sample')
|
41
47
|
end
|
42
48
|
|
43
|
-
it '
|
44
|
-
expect(
|
49
|
+
it 'returns an install_dir' do
|
50
|
+
expect(subject.install_dir).to eq('/sample')
|
45
51
|
end
|
46
52
|
|
47
|
-
it '
|
48
|
-
expect(
|
53
|
+
it 'returns a maintainer' do
|
54
|
+
expect(subject.maintainer).to eq('Sample Devs')
|
49
55
|
end
|
50
56
|
|
51
|
-
it '
|
52
|
-
expect(
|
57
|
+
it 'returns a homepage' do
|
58
|
+
expect(subject.homepage).to eq('http://example.com/')
|
53
59
|
end
|
54
60
|
|
55
|
-
it '
|
56
|
-
expect(
|
61
|
+
it 'returns a build version' do
|
62
|
+
expect(subject.build_version).to eq('1.0')
|
57
63
|
end
|
58
64
|
|
59
|
-
it '
|
60
|
-
expect(
|
65
|
+
it 'returns a build iteration' do
|
66
|
+
expect(subject.build_iteration).to eq(1)
|
61
67
|
end
|
62
68
|
|
63
|
-
it '
|
64
|
-
expect(
|
69
|
+
it 'returns an array of files and dirs' do
|
70
|
+
expect(subject.extra_package_files).to eq(['/path/to/sample_dir', '/path/to/file.conf'])
|
65
71
|
end
|
66
72
|
|
67
|
-
it '
|
68
|
-
expect(
|
73
|
+
it 'returns a friendly_name' do
|
74
|
+
expect(subject.friendly_name).to eq('Sample Project')
|
69
75
|
end
|
70
76
|
|
71
|
-
it '
|
72
|
-
expect(
|
77
|
+
it 'returns a resources_path' do
|
78
|
+
expect(subject.resources_path).to include('sample/project/resources')
|
73
79
|
end
|
74
80
|
end
|
75
81
|
|
76
|
-
describe '#
|
77
|
-
it '
|
78
|
-
subject.
|
79
|
-
expect(subject.
|
82
|
+
describe '#install_dir' do
|
83
|
+
it 'removes duplicate slashes' do
|
84
|
+
subject.install_dir('///opt//chef')
|
85
|
+
expect(subject.install_dir).to eq('/opt/chef')
|
86
|
+
end
|
87
|
+
|
88
|
+
it 'converts Windows slashes to Ruby ones' do
|
89
|
+
subject.install_dir('C:\\chef\\chefdk')
|
90
|
+
expect(subject.install_dir).to eq('C:/chef/chefdk')
|
91
|
+
end
|
92
|
+
|
93
|
+
it 'removes trailing slashes' do
|
94
|
+
subject.install_dir('/opt/chef//')
|
95
|
+
expect(subject.install_dir).to eq('/opt/chef')
|
96
|
+
end
|
97
|
+
|
98
|
+
it 'is a DSL method' do
|
99
|
+
expect(subject).to have_exposed_method(:install_dir)
|
80
100
|
end
|
81
101
|
end
|
82
102
|
|
83
|
-
describe '#
|
84
|
-
|
85
|
-
|
86
|
-
|
103
|
+
describe '#default_root' do
|
104
|
+
context 'on Windows' do
|
105
|
+
before { stub_ohai(platform: 'windows', version: '2012') }
|
106
|
+
|
107
|
+
it 'returns C:/' do
|
108
|
+
expect(subject.default_root).to eq('C:')
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
context 'on non-Windows' do
|
113
|
+
before { stub_ohai(platform: 'ubuntu', version: '12.04') }
|
114
|
+
|
115
|
+
it 'returns /opt' do
|
116
|
+
expect(subject.default_root).to eq('/opt')
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'is a DSL method' do
|
121
|
+
expect(subject).to have_exposed_method(:default_root)
|
87
122
|
end
|
88
123
|
end
|
89
124
|
|
@@ -113,71 +148,186 @@ module Omnibus
|
|
113
148
|
end
|
114
149
|
|
115
150
|
describe '#<=>' do
|
151
|
+
let(:chefdk) { described_class.new.tap { |p| p.name('chefdk') } }
|
152
|
+
let(:chef) { described_class.new.tap { |p| p.name('chef') } }
|
153
|
+
let(:ruby) { described_class.new.tap { |p| p.name('ruby') } }
|
154
|
+
|
116
155
|
it 'compares projects by name' do
|
117
|
-
list = [
|
118
|
-
|
119
|
-
Project.load(project_path('chefdk')),
|
120
|
-
]
|
121
|
-
expect(list.sort.map(&:name)).to eq(%w(chefdk sample))
|
156
|
+
list = [chefdk, chef, ruby]
|
157
|
+
expect(list.sort.map(&:name)).to eq(%w(chef chefdk ruby))
|
122
158
|
end
|
123
159
|
end
|
124
160
|
|
125
|
-
describe '#
|
161
|
+
describe '#build_iteration' do
|
126
162
|
let(:fauxhai_options) { Hash.new }
|
127
163
|
|
128
164
|
before { stub_ohai(fauxhai_options) }
|
129
165
|
|
130
166
|
context 'when on RHEL' do
|
131
167
|
let(:fauxhai_options) { { platform: 'redhat', version: '6.4' } }
|
132
|
-
it '
|
133
|
-
expect(
|
168
|
+
it 'returns a RHEL iteration' do
|
169
|
+
expect(subject.build_iteration).to eq(1)
|
134
170
|
end
|
135
171
|
end
|
136
172
|
|
137
173
|
context 'when on Debian' do
|
138
174
|
let(:fauxhai_options) { { platform: 'debian', version: '7.2' } }
|
139
|
-
it '
|
140
|
-
expect(
|
175
|
+
it 'returns a Debian iteration' do
|
176
|
+
expect(subject.build_iteration).to eq(1)
|
141
177
|
end
|
142
178
|
end
|
143
179
|
|
144
180
|
context 'when on FreeBSD' do
|
145
181
|
let(:fauxhai_options) { { platform: 'freebsd', version: '9.1' } }
|
146
|
-
it '
|
147
|
-
expect(
|
182
|
+
it 'returns a FreeBSD iteration' do
|
183
|
+
expect(subject.build_iteration).to eq(1)
|
148
184
|
end
|
149
185
|
end
|
150
186
|
|
151
187
|
context 'when on Windows' do
|
152
|
-
|
188
|
+
before { stub_ohai(platform: 'windows', version: '2008R2') }
|
153
189
|
before { stub_const('File::ALT_SEPARATOR', '\\') }
|
154
|
-
it '
|
155
|
-
expect(
|
190
|
+
it 'returns a Windows iteration' do
|
191
|
+
expect(subject.build_iteration).to eq(1)
|
156
192
|
end
|
157
193
|
end
|
158
194
|
|
159
195
|
context 'when on OS X' do
|
160
196
|
let(:fauxhai_options) { { platform: 'mac_os_x', version: '10.8.2' } }
|
161
|
-
it '
|
162
|
-
expect(
|
197
|
+
it 'returns a generic iteration' do
|
198
|
+
expect(subject.build_iteration).to eq(1)
|
163
199
|
end
|
164
200
|
end
|
165
201
|
end
|
166
202
|
|
167
203
|
describe '#overrides' do
|
168
|
-
|
204
|
+
before { subject.overrides.clear }
|
205
|
+
|
206
|
+
it 'sets all the things through #overrides' do
|
207
|
+
subject.override(:thing, version: '6.6.6')
|
208
|
+
expect(subject.override(:zlib)).to be_nil
|
209
|
+
end
|
210
|
+
|
211
|
+
it 'retrieves the things set through #overrides' do
|
212
|
+
subject.override(:thing, version: '6.6.6')
|
213
|
+
expect(subject.override(:thing)[:version]).to eq('6.6.6')
|
214
|
+
end
|
215
|
+
end
|
169
216
|
|
170
|
-
|
217
|
+
describe '#ohai' do
|
218
|
+
before { stub_ohai(platform: 'ubuntu', version: '12.04') }
|
171
219
|
|
220
|
+
it 'is a DSL method' do
|
221
|
+
expect(subject).to have_exposed_method(:ohai)
|
222
|
+
end
|
172
223
|
|
173
|
-
it '
|
174
|
-
|
175
|
-
expect(project.override(:zlib)).to be_nil
|
224
|
+
it 'delegates to the Ohai class' do
|
225
|
+
expect(subject.ohai).to be(Ohai)
|
176
226
|
end
|
227
|
+
end
|
177
228
|
|
178
|
-
|
179
|
-
|
180
|
-
expect(
|
229
|
+
describe '#packager' do
|
230
|
+
it 'returns a packager object' do
|
231
|
+
expect(subject.packager).to be_a(Packager::Base)
|
232
|
+
end
|
233
|
+
|
234
|
+
it 'calls Packager#for_current_system' do
|
235
|
+
expect(Packager).to receive(:for_current_system)
|
236
|
+
.and_call_original
|
237
|
+
subject.packager
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
describe '#package' do
|
242
|
+
it 'raises an exception when a block is not given' do
|
243
|
+
expect { subject.package(:foo) }.to raise_error(InvalidValue)
|
244
|
+
end
|
245
|
+
|
246
|
+
it 'adds the block to the list' do
|
247
|
+
block = Proc.new {}
|
248
|
+
subject.package(:foo, &block)
|
249
|
+
|
250
|
+
expect(subject.packagers[:foo]).to include(block)
|
251
|
+
end
|
252
|
+
|
253
|
+
it 'allows for multiple invocations, keeping order' do
|
254
|
+
block_1, block_2 = Proc.new {}, Proc.new {}
|
255
|
+
subject.package(:foo, &block_1)
|
256
|
+
subject.package(:foo, &block_2)
|
257
|
+
|
258
|
+
expect(subject.packagers[:foo]).to eq([block_1, block_2])
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
describe '#packagers' do
|
263
|
+
it 'returns a Hash' do
|
264
|
+
expect(subject.packagers).to be_a(Hash)
|
265
|
+
end
|
266
|
+
|
267
|
+
it 'has a default Hash value of an empty array' do
|
268
|
+
expect(subject.packagers[:foo]).to be_a(Array)
|
269
|
+
expect(subject.packagers[:bar]).to_not be(subject.packagers[:foo])
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
describe '#compressor' do
|
274
|
+
it 'returns a compressor object' do
|
275
|
+
expect(subject.compressor).to be_a(Compressor::Base)
|
276
|
+
end
|
277
|
+
|
278
|
+
it 'calls Compressor#for_current_system' do
|
279
|
+
expect(Compressor).to receive(:for_current_system)
|
280
|
+
.and_call_original
|
281
|
+
|
282
|
+
subject.compressor
|
283
|
+
end
|
284
|
+
|
285
|
+
it 'passes in the current compressors' do
|
286
|
+
subject.compress(:dmg)
|
287
|
+
subject.compress(:tgz)
|
288
|
+
|
289
|
+
expect(Compressor).to receive(:for_current_system)
|
290
|
+
.with([:dmg, :tgz])
|
291
|
+
.and_call_original
|
292
|
+
|
293
|
+
subject.compressor
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
describe '#compress' do
|
298
|
+
it 'does not raises an exception when a block is not given' do
|
299
|
+
expect { subject.compress(:foo) }.to_not raise_error
|
300
|
+
end
|
301
|
+
|
302
|
+
it 'adds the compressor to the list' do
|
303
|
+
subject.compress(:foo)
|
304
|
+
expect(subject.compressors).to include(:foo)
|
305
|
+
end
|
306
|
+
|
307
|
+
it 'adds the block to the list' do
|
308
|
+
block = Proc.new {}
|
309
|
+
subject.compress(:foo, &block)
|
310
|
+
|
311
|
+
expect(subject.compressors[:foo]).to include(block)
|
312
|
+
end
|
313
|
+
|
314
|
+
it 'allows for multiple invocations, keeping order' do
|
315
|
+
block_1, block_2 = Proc.new {}, Proc.new {}
|
316
|
+
subject.compress(:foo, &block_1)
|
317
|
+
subject.compress(:foo, &block_2)
|
318
|
+
|
319
|
+
expect(subject.compressors[:foo]).to eq([block_1, block_2])
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
323
|
+
describe '#compressors' do
|
324
|
+
it 'returns a Hash' do
|
325
|
+
expect(subject.compressors).to be_a(Hash)
|
326
|
+
end
|
327
|
+
|
328
|
+
it 'has a default Hash value of an empty array' do
|
329
|
+
expect(subject.compressors[:foo]).to be_a(Array)
|
330
|
+
expect(subject.compressors[:bar]).to_not be(subject.compressors[:foo])
|
181
331
|
end
|
182
332
|
end
|
183
333
|
|
@@ -186,15 +336,9 @@ module Omnibus
|
|
186
336
|
let(:path) { '/project.rb' }
|
187
337
|
let(:file) { double(File) }
|
188
338
|
|
189
|
-
subject do
|
190
|
-
project = described_class.new(path)
|
191
|
-
project.name('project')
|
192
|
-
project.install_dir('/opt/project')
|
193
|
-
project.build_version('1.0.0')
|
194
|
-
project
|
195
|
-
end
|
196
|
-
|
197
339
|
before do
|
340
|
+
subject.instance_variable_set(:@filepath, path)
|
341
|
+
|
198
342
|
allow(File).to receive(:exist?)
|
199
343
|
.with(path)
|
200
344
|
.and_return(true)
|
@@ -204,24 +348,17 @@ module Omnibus
|
|
204
348
|
end
|
205
349
|
|
206
350
|
it 'returns the correct shasum' do
|
207
|
-
expect(subject.shasum).to eq('
|
351
|
+
expect(subject.shasum).to eq('2cb8bdd11c766caa11a37607e84ffb51af3ae3da16931988f12f7fc9de98d68e')
|
208
352
|
end
|
209
353
|
end
|
210
354
|
|
211
355
|
context 'when a filepath is not given' do
|
212
|
-
subject
|
213
|
-
project = described_class.new
|
214
|
-
project.name('project')
|
215
|
-
project.install_dir('/opt/project')
|
216
|
-
project.build_version('1.0.0')
|
217
|
-
project
|
218
|
-
end
|
356
|
+
before { subject.send(:remove_instance_variable, :@filepath) }
|
219
357
|
|
220
358
|
it 'returns the correct shasum' do
|
221
|
-
expect(subject.shasum).to eq('
|
359
|
+
expect(subject.shasum).to eq('3cc6bd98da4d643b79c71be2c93761a458b442e2931f7d421636f526d0c1e8bf')
|
222
360
|
end
|
223
361
|
end
|
224
362
|
end
|
225
|
-
|
226
363
|
end
|
227
364
|
end
|
data/spec/unit/publisher_spec.rb
CHANGED
@@ -29,7 +29,11 @@ module Omnibus
|
|
29
29
|
let(:b) { '/path/to/files/b.deb' }
|
30
30
|
let(:glob) { [a, b] }
|
31
31
|
|
32
|
-
before
|
32
|
+
before do
|
33
|
+
allow(FileSyncer).to receive(:glob)
|
34
|
+
.with(pattern)
|
35
|
+
.and_return(glob)
|
36
|
+
end
|
33
37
|
|
34
38
|
it 'returns an array' do
|
35
39
|
expect(subject.packages).to be_an(Array)
|
@@ -42,7 +46,7 @@ module Omnibus
|
|
42
46
|
|
43
47
|
describe '#publish' do
|
44
48
|
it 'is an abstract method' do
|
45
|
-
expect { subject.publish }.to raise_error(
|
49
|
+
expect { subject.publish }.to raise_error(NotImplementedError)
|
46
50
|
end
|
47
51
|
end
|
48
52
|
end
|