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,324 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Packager::DEB do
|
5
|
+
let(:project) do
|
6
|
+
Project.new.tap do |project|
|
7
|
+
project.name('project')
|
8
|
+
project.homepage('https://example.com')
|
9
|
+
project.install_dir('/opt/project')
|
10
|
+
project.build_version('1.2.3')
|
11
|
+
project.build_iteration('2')
|
12
|
+
project.maintainer('Chef Software')
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
subject { described_class.new(project) }
|
17
|
+
|
18
|
+
let(:project_root) { "#{tmp_path}/project/root" }
|
19
|
+
let(:package_dir) { "#{tmp_path}/package/dir" }
|
20
|
+
let(:staging_dir) { "#{tmp_path}/staging/dir" }
|
21
|
+
|
22
|
+
before do
|
23
|
+
Config.project_root(project_root)
|
24
|
+
Config.package_dir(package_dir)
|
25
|
+
|
26
|
+
allow(subject).to receive(:staging_dir).and_return(staging_dir)
|
27
|
+
create_directory(staging_dir)
|
28
|
+
create_directory("#{staging_dir}/DEBIAN")
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#vendor' do
|
32
|
+
it 'is a DSL method' do
|
33
|
+
expect(subject).to have_exposed_method(:vendor)
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'has a default value' do
|
37
|
+
expect(subject.vendor).to eq('Omnibus <omnibus@getchef.com>')
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'must be a string' do
|
41
|
+
expect { subject.vendor(Object.new) }.to raise_error(InvalidValue)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe '#license' do
|
46
|
+
it 'is a DSL method' do
|
47
|
+
expect(subject).to have_exposed_method(:license)
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'has a default value' do
|
51
|
+
expect(subject.license).to eq('unknown')
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'must be a string' do
|
55
|
+
expect { subject.license(Object.new) }.to raise_error(InvalidValue)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe '#priority' do
|
60
|
+
it 'is a DSL method' do
|
61
|
+
expect(subject).to have_exposed_method(:priority)
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'has a default value' do
|
65
|
+
expect(subject.priority).to eq('extra')
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'must be a string' do
|
69
|
+
expect { subject.priority(Object.new) }.to raise_error(InvalidValue)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe '#section' do
|
74
|
+
it 'is a DSL method' do
|
75
|
+
expect(subject).to have_exposed_method(:section)
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'has a default value' do
|
79
|
+
expect(subject.section).to eq('misc')
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'must be a string' do
|
83
|
+
expect { subject.section(Object.new) }.to raise_error(InvalidValue)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
describe '#id' do
|
88
|
+
it 'is :deb' do
|
89
|
+
expect(subject.id).to eq(:deb)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe '#package_name' do
|
94
|
+
before do
|
95
|
+
allow(subject).to receive(:safe_architecture).and_return('amd64')
|
96
|
+
end
|
97
|
+
|
98
|
+
it 'includes the name, version, and build iteration' do
|
99
|
+
expect(subject.package_name).to eq('project_1.2.3-2_amd64.deb')
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
describe '#debian_dir' do
|
104
|
+
it 'is nested inside the staging_dir' do
|
105
|
+
expect(subject.debian_dir).to eq("#{staging_dir}/DEBIAN")
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
describe '#write_control_file' do
|
110
|
+
it 'generates the file' do
|
111
|
+
subject.write_control_file
|
112
|
+
expect("#{staging_dir}/DEBIAN/control").to be_a_file
|
113
|
+
end
|
114
|
+
|
115
|
+
it 'has the correct content' do
|
116
|
+
subject.write_control_file
|
117
|
+
contents = File.read("#{staging_dir}/DEBIAN/control")
|
118
|
+
|
119
|
+
expect(contents).to include("Package: project")
|
120
|
+
expect(contents).to include("Version: 1.2.3")
|
121
|
+
expect(contents).to include("License: unknown")
|
122
|
+
expect(contents).to include("Vendor: Omnibus <omnibus@getchef.com>")
|
123
|
+
expect(contents).to include("Architecture: amd64")
|
124
|
+
expect(contents).to include("Maintainer: Chef Software")
|
125
|
+
expect(contents).to include("Installed-Size: 0")
|
126
|
+
expect(contents).to include("Section: misc")
|
127
|
+
expect(contents).to include("Priority: extra")
|
128
|
+
expect(contents).to include("Homepage: https://example.com")
|
129
|
+
expect(contents).to include("Description: The full stack of project")
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
describe '#write_conffiles_file' do
|
134
|
+
before do
|
135
|
+
project.config_file('/opt/project/file1')
|
136
|
+
project.config_file('/opt/project/file2')
|
137
|
+
end
|
138
|
+
|
139
|
+
context 'when there are no files' do
|
140
|
+
before { project.config_files.clear }
|
141
|
+
|
142
|
+
it 'does not render the file' do
|
143
|
+
subject.write_conffiles_file
|
144
|
+
expect("#{staging_dir}/DEBIAN/conffiles").to_not be_a_file
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
it 'generates the file' do
|
149
|
+
subject.write_conffiles_file
|
150
|
+
expect("#{staging_dir}/DEBIAN/conffiles").to be_a_file
|
151
|
+
end
|
152
|
+
|
153
|
+
it 'has the correct content' do
|
154
|
+
subject.write_conffiles_file
|
155
|
+
contents = File.read("#{staging_dir}/DEBIAN/conffiles")
|
156
|
+
|
157
|
+
expect(contents).to include("/opt/project/file1")
|
158
|
+
expect(contents).to include("/opt/project/file2")
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
describe '#write_scripts' do
|
163
|
+
before do
|
164
|
+
create_file("#{project_root}/package-scripts/project/preinst") { "preinst" }
|
165
|
+
create_file("#{project_root}/package-scripts/project/postinst") { "postinst" }
|
166
|
+
create_file("#{project_root}/package-scripts/project/prerm") { "prerm" }
|
167
|
+
create_file("#{project_root}/package-scripts/project/postrm") { "postrm" }
|
168
|
+
end
|
169
|
+
|
170
|
+
it 'copies the scripts into the DEBIAN dir' do
|
171
|
+
subject.write_scripts
|
172
|
+
|
173
|
+
expect("#{staging_dir}/DEBIAN/preinst").to be_a_file
|
174
|
+
expect("#{staging_dir}/DEBIAN/postinst").to be_a_file
|
175
|
+
expect("#{staging_dir}/DEBIAN/prerm").to be_a_file
|
176
|
+
expect("#{staging_dir}/DEBIAN/postrm").to be_a_file
|
177
|
+
end
|
178
|
+
|
179
|
+
it 'logs a message' do
|
180
|
+
output = capture_logging do
|
181
|
+
subject.write_scripts
|
182
|
+
end
|
183
|
+
|
184
|
+
expect(output).to include("Adding script `preinst'")
|
185
|
+
expect(output).to include("Adding script `postinst'")
|
186
|
+
expect(output).to include("Adding script `prerm'")
|
187
|
+
expect(output).to include("Adding script `postrm'")
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
describe '#write_md5_sums' do
|
192
|
+
before do
|
193
|
+
create_file("#{staging_dir}/.filea") { ".filea" }
|
194
|
+
create_file("#{staging_dir}/file1") { "file1" }
|
195
|
+
create_file("#{staging_dir}/file2") { "file2" }
|
196
|
+
end
|
197
|
+
|
198
|
+
it 'generates the file' do
|
199
|
+
subject.write_md5_sums
|
200
|
+
expect("#{staging_dir}/DEBIAN/md5sums").to be_a_file
|
201
|
+
end
|
202
|
+
|
203
|
+
it 'has the correct content' do
|
204
|
+
subject.write_md5_sums
|
205
|
+
contents = File.read("#{staging_dir}/DEBIAN/md5sums")
|
206
|
+
|
207
|
+
expect(contents).to include("9334770d184092f998009806af702c8c .filea")
|
208
|
+
expect(contents).to include("826e8142e6baabe8af779f5f490cf5f5 file1")
|
209
|
+
expect(contents).to include("1c1c96fd2cf8330db0bfa936ce82f3b9 file2")
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
213
|
+
describe '#create_deb_file' do
|
214
|
+
before do
|
215
|
+
allow(subject).to receive(:shellout!)
|
216
|
+
allow(Dir).to receive(:chdir) { |_, &b| b.call }
|
217
|
+
end
|
218
|
+
|
219
|
+
it 'logs a message' do
|
220
|
+
output = capture_logging { subject.create_deb_file }
|
221
|
+
expect(output).to include('Creating .deb file')
|
222
|
+
end
|
223
|
+
|
224
|
+
it 'executes the command using `fakeroot`' do
|
225
|
+
expect(subject).to receive(:shellout!)
|
226
|
+
.with(/\Afakeroot/)
|
227
|
+
subject.create_deb_file
|
228
|
+
end
|
229
|
+
|
230
|
+
it 'uses the correct command' do
|
231
|
+
expect(subject).to receive(:shellout!)
|
232
|
+
.with(/dpkg-deb -z9 -Zgzip -D --build/)
|
233
|
+
subject.create_deb_file
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
describe '#package_size' do
|
238
|
+
before do
|
239
|
+
project.install_dir(staging_dir)
|
240
|
+
|
241
|
+
create_file("#{staging_dir}/file1") { "1"*10_000 }
|
242
|
+
create_file("#{staging_dir}/file2") { "2"*20_000 }
|
243
|
+
end
|
244
|
+
|
245
|
+
it 'stats all the files in the install_dir' do
|
246
|
+
expect(subject.package_size).to eq(29)
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
describe '#safe_project_name' do
|
251
|
+
context 'when the project name is "safe"' do
|
252
|
+
it 'returns the value without logging a message' do
|
253
|
+
expect(subject.safe_project_name).to eq('project')
|
254
|
+
expect(subject).to_not receive(:log)
|
255
|
+
end
|
256
|
+
end
|
257
|
+
|
258
|
+
context 'when the project name has invalid characters' do
|
259
|
+
before { project.name("Pro$ject123.for-realz_2") }
|
260
|
+
|
261
|
+
it 'returns the value while logging a message' do
|
262
|
+
output = capture_logging do
|
263
|
+
expect(subject.safe_project_name).to eq('Pro-ject123.for-realz-2')
|
264
|
+
end
|
265
|
+
|
266
|
+
expect(output).to include("The `name' compontent of Debian package names can only include")
|
267
|
+
end
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
271
|
+
describe '#safe_build_iteration' do
|
272
|
+
it 'returns the build iternation' do
|
273
|
+
expect(subject.safe_build_iteration).to eq(project.build_iteration)
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
277
|
+
describe '#safe_version' do
|
278
|
+
context 'when the project build_version is "safe"' do
|
279
|
+
it 'returns the value without logging a message' do
|
280
|
+
expect(subject.safe_version).to eq('1.2.3')
|
281
|
+
expect(subject).to_not receive(:log)
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
context 'when the project build_version has invalid characters' do
|
286
|
+
before { project.build_version("1.2$alpha.##__2") }
|
287
|
+
|
288
|
+
it 'returns the value while logging a message' do
|
289
|
+
output = capture_logging do
|
290
|
+
expect(subject.safe_version).to eq('1.2-alpha.-2')
|
291
|
+
end
|
292
|
+
|
293
|
+
expect(output).to include("The `version' compontent of Debian package names can only include")
|
294
|
+
end
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
describe '#safe_architecture' do
|
299
|
+
context 'when 64-bit' do
|
300
|
+
before do
|
301
|
+
stub_ohai(platform: 'ubuntu', version: '12.04') do |data|
|
302
|
+
data['kernel']['machine'] = 'x86_64'
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
306
|
+
it 'returns amd64' do
|
307
|
+
expect(subject.safe_architecture).to eq('amd64')
|
308
|
+
end
|
309
|
+
end
|
310
|
+
|
311
|
+
context 'when not 64-bit' do
|
312
|
+
before do
|
313
|
+
stub_ohai(platform: 'ubuntu', version: '12.04') do |data|
|
314
|
+
data['kernel']['machine'] = 'i386'
|
315
|
+
end
|
316
|
+
end
|
317
|
+
|
318
|
+
it 'returns the value' do
|
319
|
+
expect(subject.safe_architecture).to eq('i386')
|
320
|
+
end
|
321
|
+
end
|
322
|
+
end
|
323
|
+
end
|
324
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Packager::Makeself do
|
5
|
+
let(:project) do
|
6
|
+
Project.new.tap do |project|
|
7
|
+
project.name('project')
|
8
|
+
project.homepage('https://example.com')
|
9
|
+
project.install_dir('/opt/project')
|
10
|
+
project.build_version('1.2.3')
|
11
|
+
project.build_iteration('2')
|
12
|
+
project.maintainer('Chef Software')
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
subject { described_class.new(project) }
|
17
|
+
|
18
|
+
let(:project_root) { "#{tmp_path}/project/root" }
|
19
|
+
let(:package_dir) { "#{tmp_path}/package/dir" }
|
20
|
+
let(:staging_dir) { "#{tmp_path}/staging/dir" }
|
21
|
+
|
22
|
+
before do
|
23
|
+
Config.project_root(project_root)
|
24
|
+
Config.package_dir(package_dir)
|
25
|
+
|
26
|
+
allow(subject).to receive(:staging_dir).and_return(staging_dir)
|
27
|
+
create_directory(staging_dir)
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '#id' do
|
31
|
+
it 'is :makeself' do
|
32
|
+
expect(subject.id).to eq(:makeself)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe '#package_name' do
|
37
|
+
before do
|
38
|
+
allow(subject).to receive(:safe_architecture).and_return('x86_64')
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'includes the name, version, and build iteration' do
|
42
|
+
expect(subject.package_name).to eq('project-1.2.3_2.x86_64.run')
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe '#write_post_extract_file' do
|
47
|
+
it 'generates the file' do
|
48
|
+
subject.write_post_extract_file
|
49
|
+
expect("#{staging_dir}/post_extract.sh").to be_a_file
|
50
|
+
expect("#{staging_dir}/post_extract.sh").to be_an_executable
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'has the correct content' do
|
54
|
+
subject.write_post_extract_file
|
55
|
+
contents = File.read("#{staging_dir}/post_extract.sh")
|
56
|
+
|
57
|
+
expect(contents).to include("DEST_DIR=/opt/project")
|
58
|
+
expect(contents).to include("CONFIG_DIR=/etc/project")
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe '#create_makeself_package' do
|
63
|
+
before do
|
64
|
+
allow(subject).to receive(:shellout!)
|
65
|
+
allow(Dir).to receive(:chdir) { |_, &b| b.call }
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'logs a message' do
|
69
|
+
output = capture_logging { subject.create_makeself_package }
|
70
|
+
expect(output).to include('Creating makeself package')
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'uses the correct command' do
|
74
|
+
expect(subject).to receive(:shellout!)
|
75
|
+
.with(/makeself\.sh/)
|
76
|
+
subject.create_makeself_package
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
@@ -0,0 +1,267 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Packager::MSI do
|
5
|
+
let(:project) do
|
6
|
+
Project.new.tap do |project|
|
7
|
+
project.name('project')
|
8
|
+
project.homepage('https://example.com')
|
9
|
+
project.install_dir('C:/project')
|
10
|
+
project.build_version('1.2.3')
|
11
|
+
project.build_iteration('2')
|
12
|
+
project.maintainer('Chef Software')
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
subject { described_class.new(project) }
|
17
|
+
|
18
|
+
let(:project_root) { "#{tmp_path}/project/root" }
|
19
|
+
let(:package_dir) { "#{tmp_path}/package/dir" }
|
20
|
+
let(:staging_dir) { "#{tmp_path}/staging/dir" }
|
21
|
+
|
22
|
+
before do
|
23
|
+
Config.project_root(project_root)
|
24
|
+
Config.package_dir(package_dir)
|
25
|
+
|
26
|
+
allow(subject).to receive(:staging_dir).and_return(staging_dir)
|
27
|
+
create_directory(staging_dir)
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'DSL' do
|
31
|
+
it 'exposes :parameters' do
|
32
|
+
expect(subject).to have_exposed_method(:parameters)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe '#id' do
|
37
|
+
it 'is :pkg' do
|
38
|
+
expect(subject.id).to eq(:msi)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe '#upgrade_code' do
|
43
|
+
it 'is a DSL method' do
|
44
|
+
expect(subject).to have_exposed_method(:upgrade_code)
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'is required' do
|
48
|
+
expect {
|
49
|
+
subject.upgrade_code
|
50
|
+
}.to raise_error(MissingRequiredAttribute)
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'requires the value to be a String' do
|
54
|
+
expect {
|
55
|
+
subject.parameters(Object.new)
|
56
|
+
}.to raise_error(InvalidValue)
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'returns the given value' do
|
60
|
+
code = 'ABCD-1234'
|
61
|
+
subject.upgrade_code(code)
|
62
|
+
expect(subject.upgrade_code).to be(code)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe '#parameters' do
|
67
|
+
it 'is a DSL method' do
|
68
|
+
expect(subject).to have_exposed_method(:parameters)
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'is defaults to an empty hash' do
|
72
|
+
expect(subject.parameters).to be_a(Hash)
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'requires the value to be a Hash' do
|
76
|
+
expect {
|
77
|
+
subject.parameters(Object.new)
|
78
|
+
}.to raise_error(InvalidValue)
|
79
|
+
end
|
80
|
+
|
81
|
+
it 'returns the given value' do
|
82
|
+
params = { 'Key' => 'value' }
|
83
|
+
subject.parameters(params)
|
84
|
+
expect(subject.parameters).to be(params)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe '#package_name' do
|
89
|
+
it 'includes the name, version, and build iteration' do
|
90
|
+
expect(subject.package_name).to eq('project-1.2.3-2.msi')
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe '#resources_dir' do
|
95
|
+
it 'is nested inside the staging_dir' do
|
96
|
+
expect(subject.resources_dir).to eq("#{staging_dir}/Resources")
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe '#write_localization_file' do
|
101
|
+
it 'generates the file' do
|
102
|
+
subject.write_localization_file
|
103
|
+
expect("#{staging_dir}/localization-en-us.wxl").to be_a_file
|
104
|
+
end
|
105
|
+
|
106
|
+
it 'has the correct content' do
|
107
|
+
subject.write_localization_file
|
108
|
+
contents = File.read("#{staging_dir}/localization-en-us.wxl")
|
109
|
+
|
110
|
+
expect(contents).to include('<String Id="ProductName">Project</String>')
|
111
|
+
expect(contents).to include('<String Id="ManufacturerName">Chef Software</String>')
|
112
|
+
expect(contents).to include('<String Id="FeatureMainName">Project</String>')
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
describe '#write_parameters_file' do
|
117
|
+
before do
|
118
|
+
subject.upgrade_code('ABCD-1234')
|
119
|
+
end
|
120
|
+
|
121
|
+
it 'generates the file' do
|
122
|
+
subject.write_parameters_file
|
123
|
+
expect("#{staging_dir}/parameters.wxi").to be_a_file
|
124
|
+
end
|
125
|
+
|
126
|
+
it 'has the correct content' do
|
127
|
+
subject.write_parameters_file
|
128
|
+
contents = File.read("#{staging_dir}/parameters.wxi")
|
129
|
+
|
130
|
+
expect(contents).to include('<?define VersionNumber="1.2.3.2" ?>')
|
131
|
+
expect(contents).to include('<?define DisplayVersionNumber="1.2.3" ?>')
|
132
|
+
expect(contents).to include('<?define UpgradeCode="ABCD-1234" ?>')
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe '#write_source_file' do
|
137
|
+
it 'generates the file' do
|
138
|
+
subject.write_source_file
|
139
|
+
expect("#{staging_dir}/source.wxs").to be_a_file
|
140
|
+
end
|
141
|
+
|
142
|
+
it 'has the correct content' do
|
143
|
+
project.install_dir('C:/foo/bar/blip')
|
144
|
+
subject.write_source_file
|
145
|
+
contents = File.read("#{staging_dir}/source.wxs")
|
146
|
+
|
147
|
+
expect(contents).to include('<?include "parameters.wxi" ?>')
|
148
|
+
expect(contents).to include <<-EOH.gsub(/^ {6}/, '')
|
149
|
+
<Directory Id="TARGETDIR" Name="SourceDir">
|
150
|
+
<Directory Id="WINDOWSVOLUME">
|
151
|
+
<Directory Id="FOOLOCATION" Name="foo">
|
152
|
+
<Directory Id="FOOBARLOCATION" Name="bar">
|
153
|
+
<Directory Id="PROJECTLOCATION" Name="blip">
|
154
|
+
</Directory>
|
155
|
+
</Directory>
|
156
|
+
</Directory>
|
157
|
+
</Directory>
|
158
|
+
</Directory>
|
159
|
+
EOH
|
160
|
+
end
|
161
|
+
|
162
|
+
it 'has the correct wix_install_dir when the path is short' do
|
163
|
+
subject.write_source_file
|
164
|
+
contents = File.read("#{staging_dir}/source.wxs")
|
165
|
+
|
166
|
+
expect(contents).to include('<?include "parameters.wxi" ?>')
|
167
|
+
expect(contents).to include('<Property Id="WIXUI_INSTALLDIR" Value="WINDOWSVOLUME" />')
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
describe '#msi_version' do
|
172
|
+
context 'when the project build_version semver' do
|
173
|
+
it 'returns the right value' do
|
174
|
+
expect(subject.msi_version).to eq('1.2.3.2')
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
context 'when the project build_version is git' do
|
179
|
+
before { project.build_version('1.2.3-alpha.1+20140501194641.git.94.561b564') }
|
180
|
+
|
181
|
+
it 'returns the right value' do
|
182
|
+
expect(subject.msi_version).to eq('1.2.3.2')
|
183
|
+
end
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
describe '#msi_display_version' do
|
188
|
+
context 'when the project build_version is "safe"' do
|
189
|
+
it 'returns the right value' do
|
190
|
+
expect(subject.msi_display_version).to eq('1.2.3')
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
context 'when the project build_version is a git tag' do
|
195
|
+
before { project.build_version('1.2.3-alpha.1+20140501194641.git.94.561b564') }
|
196
|
+
|
197
|
+
it 'returns the right value' do
|
198
|
+
expect(subject.msi_display_version).to eq('1.2.3')
|
199
|
+
end
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
describe '#wix_candle_extensions' do
|
204
|
+
it 'defaults to an empty Array' do
|
205
|
+
expect(subject.wix_candle_extensions).to be_an(Array)
|
206
|
+
expect(subject.wix_candle_extensions).to be_empty
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
describe '#wix_light_extensions' do
|
211
|
+
it 'defaults to an empty Array' do
|
212
|
+
expect(subject.wix_light_extensions).to be_an(Array)
|
213
|
+
expect(subject.wix_light_extensions).to be_empty
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
describe '#wix_candle_extension' do
|
218
|
+
it 'is a DSL method' do
|
219
|
+
expect(subject).to have_exposed_method(:wix_candle_extension)
|
220
|
+
end
|
221
|
+
|
222
|
+
it 'requires the value to be an String' do
|
223
|
+
expect {
|
224
|
+
subject.wix_candle_extension(Object.new)
|
225
|
+
}.to raise_error(InvalidValue)
|
226
|
+
end
|
227
|
+
|
228
|
+
it 'returns the given value' do
|
229
|
+
extensions = ['a']
|
230
|
+
subject.wix_candle_extension(extensions[0])
|
231
|
+
expect(subject.wix_candle_extensions).to match_array(extensions)
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
describe '#wix_light_extension' do
|
236
|
+
it 'is a DSL method' do
|
237
|
+
expect(subject).to have_exposed_method(:wix_light_extension)
|
238
|
+
end
|
239
|
+
|
240
|
+
it 'requires the value to be an String' do
|
241
|
+
expect {
|
242
|
+
subject.wix_light_extension(Object.new)
|
243
|
+
}.to raise_error(InvalidValue)
|
244
|
+
end
|
245
|
+
|
246
|
+
it 'returns the given value' do
|
247
|
+
extensions = ['a']
|
248
|
+
subject.wix_light_extension(extensions[0])
|
249
|
+
expect(subject.wix_light_extensions).to match_array(extensions)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
describe '#wix_extension_switches' do
|
254
|
+
it 'returns an empty string for an empty array' do
|
255
|
+
expect(subject.wix_extension_switches([])).to eq('')
|
256
|
+
end
|
257
|
+
|
258
|
+
it 'returns the correct value for one extension' do
|
259
|
+
expect(subject.wix_extension_switches(['a'])).to eq("-ext 'a'")
|
260
|
+
end
|
261
|
+
|
262
|
+
it 'returns the correct value for many extensions' do
|
263
|
+
expect(subject.wix_extension_switches(['a', 'b'])).to eq("-ext 'a' -ext 'b'")
|
264
|
+
end
|
265
|
+
end
|
266
|
+
end
|
267
|
+
end
|