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,26 @@
|
|
1
|
+
require 'stringio'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Compressor::Base do
|
5
|
+
let(:packager) { double(Packager::Base) }
|
6
|
+
let(:project) { double(Project, packager: packager) }
|
7
|
+
|
8
|
+
describe '.initialize' do
|
9
|
+
subject { described_class.new(project) }
|
10
|
+
|
11
|
+
it 'sets the project' do
|
12
|
+
expect(subject.project).to eq(project)
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'sets the packager' do
|
16
|
+
expect(subject.packager).to eq(packager)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
subject { described_class.new(project) }
|
21
|
+
|
22
|
+
it 'inherits from Packager' do
|
23
|
+
expect(subject).to be_a(Packager::Base)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,291 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Compressor::DMG 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
|
+
allow(project).to receive(:packager)
|
24
|
+
.and_return(Packager::PKG.new(project))
|
25
|
+
|
26
|
+
Config.project_root(project_root)
|
27
|
+
Config.package_dir(package_dir)
|
28
|
+
|
29
|
+
allow(subject).to receive(:staging_dir)
|
30
|
+
.and_return(staging_dir)
|
31
|
+
create_directory(staging_dir)
|
32
|
+
|
33
|
+
allow(subject).to receive(:shellout!)
|
34
|
+
end
|
35
|
+
|
36
|
+
describe '#window_bounds' do
|
37
|
+
it 'is a DSL method' do
|
38
|
+
expect(subject).to have_exposed_method(:window_bounds)
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'has a default value' do
|
42
|
+
expect(subject.window_bounds).to eq('100, 100, 750, 600')
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe '#pkg_position' do
|
47
|
+
it 'is a DSL method' do
|
48
|
+
expect(subject).to have_exposed_method(:pkg_position)
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'has a default value' do
|
52
|
+
expect(subject.pkg_position).to eq('535, 50')
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe '#id' do
|
57
|
+
it 'is :dmg' do
|
58
|
+
expect(subject.id).to eq(:dmg)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe '#resources_dir' do
|
63
|
+
it 'is nested inside the staging_dir' do
|
64
|
+
expect(subject.resources_dir).to eq("#{staging_dir}/Resources")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe '#clean_disks' do
|
69
|
+
it 'logs a message' do
|
70
|
+
allow(subject).to receive(:shellout!)
|
71
|
+
.and_return(double(Mixlib::ShellOut, stdout: ''))
|
72
|
+
|
73
|
+
output = capture_logging { subject.clean_disks }
|
74
|
+
expect(output).to include('Cleaning previously mounted disks')
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe '#create_writable_dmg' do
|
79
|
+
it 'logs a message' do
|
80
|
+
output = capture_logging { subject.create_writable_dmg }
|
81
|
+
expect(output).to include('Creating writable dmg')
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'runs the hdiutil command' do
|
85
|
+
expect(subject).to receive(:shellout!)
|
86
|
+
.with <<-EOH.gsub(/^ {12}/, '')
|
87
|
+
hdiutil create \\
|
88
|
+
-srcfolder "#{staging_dir}/Resources" \\
|
89
|
+
-volname "Project" \\
|
90
|
+
-fs HFS+ \\
|
91
|
+
-fsargs "-c c=64,a=16,e=16" \\
|
92
|
+
-format UDRW \\
|
93
|
+
-size 512000k \\
|
94
|
+
"#{staging_dir}/project-writable.dmg"
|
95
|
+
EOH
|
96
|
+
|
97
|
+
subject.create_writable_dmg
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
describe '#attach_dmg' do
|
102
|
+
before do
|
103
|
+
allow(subject).to receive(:shellout!)
|
104
|
+
.and_return(shellout)
|
105
|
+
end
|
106
|
+
|
107
|
+
let(:shellout) { double(Mixlib::ShellOut, stdout: "hello\n") }
|
108
|
+
|
109
|
+
it 'logs a message' do
|
110
|
+
output = capture_logging { subject.attach_dmg }
|
111
|
+
expect(output).to include('Attaching dmg as disk')
|
112
|
+
end
|
113
|
+
|
114
|
+
it 'runs the hdiutil command' do
|
115
|
+
expect(subject).to receive(:shellout!)
|
116
|
+
.with <<-EOH.gsub(/^ {12}/, '')
|
117
|
+
hdiutil attach \\
|
118
|
+
-readwrite \\
|
119
|
+
-noverify \\
|
120
|
+
-noautoopen \\
|
121
|
+
"#{staging_dir}/project-writable.dmg" | egrep '^/dev/' | sed 1q | awk '{print $1}'
|
122
|
+
EOH
|
123
|
+
|
124
|
+
subject.attach_dmg
|
125
|
+
end
|
126
|
+
|
127
|
+
it 'returns the stripped stdout' do
|
128
|
+
expect(subject.attach_dmg).to eq('hello')
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
describe '#set_volume_icon' do
|
133
|
+
it 'logs a message' do
|
134
|
+
output = capture_logging { subject.set_volume_icon }
|
135
|
+
expect(output).to include('Setting volume icon')
|
136
|
+
end
|
137
|
+
|
138
|
+
it 'runs the sips commands' do
|
139
|
+
icon = subject.resource_path('icon.png')
|
140
|
+
|
141
|
+
expect(subject).to receive(:shellout!)
|
142
|
+
.with <<-EOH.gsub(/^ {12}/, '')
|
143
|
+
# Generate the icns
|
144
|
+
mkdir tmp.iconset
|
145
|
+
sips -z 16 16 #{icon} --out tmp.iconset/icon_16x16.png
|
146
|
+
sips -z 32 32 #{icon} --out tmp.iconset/icon_16x16@2x.png
|
147
|
+
sips -z 32 32 #{icon} --out tmp.iconset/icon_32x32.png
|
148
|
+
sips -z 64 64 #{icon} --out tmp.iconset/icon_32x32@2x.png
|
149
|
+
sips -z 128 128 #{icon} --out tmp.iconset/icon_128x128.png
|
150
|
+
sips -z 256 256 #{icon} --out tmp.iconset/icon_128x128@2x.png
|
151
|
+
sips -z 256 256 #{icon} --out tmp.iconset/icon_256x256.png
|
152
|
+
sips -z 512 512 #{icon} --out tmp.iconset/icon_256x256@2x.png
|
153
|
+
sips -z 512 512 #{icon} --out tmp.iconset/icon_512x512.png
|
154
|
+
sips -z 1024 1024 #{icon} --out tmp.iconset/icon_512x512@2x.png
|
155
|
+
iconutil -c icns tmp.iconset
|
156
|
+
|
157
|
+
# Copy it over
|
158
|
+
cp tmp.icns "/Volumes/Project/.VolumeIcon.icns"
|
159
|
+
|
160
|
+
# Source the icon
|
161
|
+
SetFile -a C "/Volumes/Project"
|
162
|
+
EOH
|
163
|
+
|
164
|
+
subject.set_volume_icon
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
describe '#prettify_dmg' do
|
169
|
+
it 'logs a message' do
|
170
|
+
output = capture_logging { subject.prettify_dmg }
|
171
|
+
expect(output).to include('Making the dmg all pretty and stuff')
|
172
|
+
end
|
173
|
+
|
174
|
+
it 'renders the apple script template' do
|
175
|
+
subject.prettify_dmg
|
176
|
+
expect("#{staging_dir}/create_dmg.osascript").to be_a_file
|
177
|
+
end
|
178
|
+
|
179
|
+
it 'has the correct content' do
|
180
|
+
subject.prettify_dmg
|
181
|
+
contents = File.read("#{staging_dir}/create_dmg.osascript")
|
182
|
+
|
183
|
+
expect(contents).to include('tell application "Finder"')
|
184
|
+
expect(contents).to include(' tell disk "Project"')
|
185
|
+
expect(contents).to include(' open')
|
186
|
+
expect(contents).to include(' set current view of container window to icon view')
|
187
|
+
expect(contents).to include(' set toolbar visible of container window to false')
|
188
|
+
expect(contents).to include(' set statusbar visible of container window to false')
|
189
|
+
expect(contents).to include(' set the bounds of container window to {100, 100, 750, 600}')
|
190
|
+
expect(contents).to include(' set theViewOptions to the icon view options of container window')
|
191
|
+
expect(contents).to include(' set arrangement of theViewOptions to not arranged')
|
192
|
+
expect(contents).to include(' set icon size of theViewOptions to 72')
|
193
|
+
expect(contents).to include(' set background picture of theViewOptions to file ".support:background.png"')
|
194
|
+
expect(contents).to include(' delay 5')
|
195
|
+
expect(contents).to include(' set position of item "project-1.2.3-2.pkg" of container window to {535, 50}')
|
196
|
+
expect(contents).to include(' update without registering applications')
|
197
|
+
expect(contents).to include(' delay 5')
|
198
|
+
expect(contents).to include(' end tell')
|
199
|
+
expect(contents).to include('end tell')
|
200
|
+
end
|
201
|
+
|
202
|
+
it 'runs the apple script' do
|
203
|
+
expect(subject).to receive(:shellout!)
|
204
|
+
.with <<-EOH.gsub(/^ {12}/, '')
|
205
|
+
osascript "#{staging_dir}/create_dmg.osascript"
|
206
|
+
EOH
|
207
|
+
|
208
|
+
subject.prettify_dmg
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
describe '#compress_dmg' do
|
213
|
+
it 'logs a message' do
|
214
|
+
output = capture_logging { subject.compress_dmg }
|
215
|
+
expect(output).to include('Compressing dmg')
|
216
|
+
end
|
217
|
+
|
218
|
+
it 'runs the magical command series' do
|
219
|
+
device = '/dev/sda1'
|
220
|
+
subject.instance_variable_set(:@device, device)
|
221
|
+
|
222
|
+
expect(subject).to receive(:shellout!)
|
223
|
+
.with <<-EOH.gsub(/^ {12}/, '')
|
224
|
+
chmod -Rf go-w /Volumes/Project
|
225
|
+
sync
|
226
|
+
hdiutil detach "#{device}"
|
227
|
+
hdiutil convert \\
|
228
|
+
"#{staging_dir}/project-writable.dmg" \\
|
229
|
+
-format UDZO \\
|
230
|
+
-imagekey \\
|
231
|
+
zlib-level=9 \\
|
232
|
+
-o "#{package_dir}/project-1.2.3-2.dmg"
|
233
|
+
rm -rf "#{staging_dir}/project-writable.dmg"
|
234
|
+
EOH
|
235
|
+
|
236
|
+
subject.compress_dmg
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
describe '#set_dmg_icon' do
|
241
|
+
it 'logs a message' do
|
242
|
+
output = capture_logging { subject.set_dmg_icon }
|
243
|
+
expect(output).to include('Setting dmg icon')
|
244
|
+
end
|
245
|
+
|
246
|
+
it 'runs the sips commands' do
|
247
|
+
icon = subject.resource_path('icon.png')
|
248
|
+
|
249
|
+
expect(subject).to receive(:shellout!)
|
250
|
+
.with <<-EOH.gsub(/^ {12}/, '')
|
251
|
+
# Convert the png to an icon
|
252
|
+
sips -i "#{icon}"
|
253
|
+
|
254
|
+
# Extract the icon into its own resource
|
255
|
+
DeRez -only icns "#{icon}" > tmp.rsrc
|
256
|
+
|
257
|
+
# Append the icon reosurce to the DMG
|
258
|
+
Rez -append tmp.rsrc -o "#{package_dir}/project-1.2.3-2.dmg"
|
259
|
+
|
260
|
+
# Source the icon
|
261
|
+
SetFile -a C "#{package_dir}/project-1.2.3-2.dmg"
|
262
|
+
EOH
|
263
|
+
|
264
|
+
subject.set_dmg_icon
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
describe '#package_name' do
|
269
|
+
it 'includes the name, version, and build iteration' do
|
270
|
+
expect(subject.package_name).to eq('project-1.2.3-2.dmg')
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
describe '#writable_dmg' do
|
275
|
+
it 'is in the staging_dir' do
|
276
|
+
expect(subject.writable_dmg).to include(staging_dir)
|
277
|
+
end
|
278
|
+
|
279
|
+
it 'is project-writable' do
|
280
|
+
expect(subject.writable_dmg).to include('project-writable.dmg')
|
281
|
+
end
|
282
|
+
end
|
283
|
+
|
284
|
+
describe '#volume_name' do
|
285
|
+
it 'is the project friendly_name' do
|
286
|
+
project.friendly_name('Friendly Bacon Bits')
|
287
|
+
expect(subject.volume_name).to eq('Friendly Bacon Bits')
|
288
|
+
end
|
289
|
+
end
|
290
|
+
end
|
291
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Compressor::Null do
|
5
|
+
let(:packager) { double(Packager::Base) }
|
6
|
+
let(:project) { double(Project, packager: packager) }
|
7
|
+
|
8
|
+
subject { described_class.new(project) }
|
9
|
+
|
10
|
+
describe '#id' do
|
11
|
+
it 'is :dmg' do
|
12
|
+
expect(subject.id).to eq(:null)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe '#run!' do
|
17
|
+
it 'does nothing' do
|
18
|
+
expect(subject).to_not receive(:instance_eval)
|
19
|
+
subject.run!
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Compressor::TGZ 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
|
+
create_directory(project_root)
|
24
|
+
create_directory(package_dir)
|
25
|
+
create_directory(staging_dir)
|
26
|
+
|
27
|
+
allow(project).to receive(:packager)
|
28
|
+
.and_return(Packager::PKG.new(project))
|
29
|
+
|
30
|
+
Config.project_root(project_root)
|
31
|
+
Config.package_dir(package_dir)
|
32
|
+
|
33
|
+
allow(subject).to receive(:staging_dir)
|
34
|
+
.and_return(staging_dir)
|
35
|
+
|
36
|
+
allow(subject).to receive(:shellout!)
|
37
|
+
end
|
38
|
+
|
39
|
+
describe '#package_name' do
|
40
|
+
it 'returns the name of the packager' do
|
41
|
+
expect(subject.package_name).to eq('project-1.2.3-2.pkg.tar.gz')
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe '#write_tgz' do
|
46
|
+
before do
|
47
|
+
File.open("#{staging_dir}/project-1.2.3-2.pkg", 'wb') do |f|
|
48
|
+
f.write " "*1_000_000
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'generates the file' do
|
53
|
+
subject.write_tgz
|
54
|
+
expect("#{staging_dir}/project-1.2.3-2.pkg.tar.gz").to be_a_file
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'has the correct content' do
|
58
|
+
subject.write_tgz
|
59
|
+
file = File.open("#{staging_dir}/project-1.2.3-2.pkg.tar.gz", 'rb')
|
60
|
+
contents = file.read
|
61
|
+
file.close
|
62
|
+
|
63
|
+
expect(contents).to include("\x1F\x8B\b\x00".force_encoding('ASCII-8BIT'))
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
data/spec/unit/config_spec.rb
CHANGED
@@ -31,40 +31,52 @@ module Omnibus
|
|
31
31
|
include_examples 'a configurable', :base_dir, '/var/cache/omnibus'
|
32
32
|
include_examples 'a configurable', :cache_dir, '/var/cache/omnibus/cache'
|
33
33
|
include_examples 'a configurable', :git_cache_dir, '/var/cache/omnibus/cache/git_cache'
|
34
|
-
include_examples 'a configurable', :install_path_cache_dir, '/var/cache/omnibus/cache/git_cache'
|
35
34
|
include_examples 'a configurable', :source_dir, '/var/cache/omnibus/src'
|
36
35
|
include_examples 'a configurable', :build_dir, '/var/cache/omnibus/build'
|
37
36
|
include_examples 'a configurable', :package_dir, '/var/cache/omnibus/pkg'
|
38
|
-
include_examples 'a configurable', :package_tmp, '/var/cache/omnibus/pkg-tmp'
|
39
37
|
include_examples 'a configurable', :project_root, Dir.pwd
|
40
|
-
include_examples 'a configurable', :build_dmg, true
|
41
|
-
include_examples 'a configurable', :dmg_window_bounds, '100, 100, 750, 600'
|
42
|
-
include_examples 'a configurable', :dmg_pkg_position, '535, 50'
|
43
|
-
include_examples 'a configurable', :override_file, nil
|
44
38
|
include_examples 'a configurable', :local_software_dirs, []
|
45
|
-
include_examples 'a configurable', :software_gem, ['omnibus-software']
|
46
39
|
include_examples 'a configurable', :software_gems, ['omnibus-software']
|
47
40
|
include_examples 'a configurable', :solaris_compiler, nil
|
48
41
|
include_examples 'a configurable', :append_timestamp, true
|
49
|
-
include_examples 'a configurable', :build_retries,
|
42
|
+
include_examples 'a configurable', :build_retries, 0
|
50
43
|
include_examples 'a configurable', :use_git_caching, true
|
51
44
|
|
52
|
-
|
53
|
-
|
54
|
-
|
45
|
+
describe '#workers' do
|
46
|
+
context 'when the Ohai data is not present' do
|
47
|
+
before do
|
48
|
+
stub_ohai(platform: 'ubuntu', version: '12.04') do |data|
|
49
|
+
data['cpu'] = nil
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'defaults to 3' do
|
54
|
+
expect(described_class.workers).to eq(3)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
context 'when the Ohai data is present' do
|
59
|
+
before do
|
60
|
+
stub_ohai(platform: 'ubuntu', version: '12.04') do |data|
|
61
|
+
data['cpu'] = { 'total' => '5' }
|
62
|
+
end
|
63
|
+
end
|
55
64
|
|
56
|
-
|
57
|
-
|
65
|
+
it 'defaults to the value + 6' do
|
66
|
+
expect(described_class.workers).to eq(6)
|
67
|
+
end
|
58
68
|
end
|
69
|
+
end
|
70
|
+
|
71
|
+
context 'on Windows' do
|
72
|
+
before { stub_ohai(platform: 'windows', version: '2012') }
|
59
73
|
|
60
74
|
include_examples 'a configurable', :base_dir, 'C:/omnibus-ruby'
|
61
75
|
include_examples 'a configurable', :cache_dir, 'C:/omnibus-ruby/cache'
|
62
76
|
include_examples 'a configurable', :git_cache_dir, 'C:/omnibus-ruby/cache/git_cache'
|
63
|
-
include_examples 'a configurable', :install_path_cache_dir, 'C:/omnibus-ruby/cache/git_cache'
|
64
77
|
include_examples 'a configurable', :source_dir, 'C:/omnibus-ruby/src'
|
65
78
|
include_examples 'a configurable', :build_dir, 'C:/omnibus-ruby/build'
|
66
79
|
include_examples 'a configurable', :package_dir, 'C:/omnibus-ruby/pkg'
|
67
|
-
include_examples 'a configurable', :package_tmp, 'C:/omnibus-ruby/pkg-tmp'
|
68
80
|
end
|
69
81
|
|
70
82
|
context 'when base_dir is changed' do
|
@@ -72,28 +84,9 @@ module Omnibus
|
|
72
84
|
|
73
85
|
include_examples 'a configurable', :cache_dir, '/foo/bar/cache'
|
74
86
|
include_examples 'a configurable', :git_cache_dir, '/foo/bar/cache/git_cache'
|
75
|
-
include_examples 'a configurable', :install_path_cache_dir, '/foo/bar/cache/git_cache'
|
76
87
|
include_examples 'a configurable', :source_dir, '/foo/bar/src'
|
77
88
|
include_examples 'a configurable', :build_dir, '/foo/bar/build'
|
78
89
|
include_examples 'a configurable', :package_dir, '/foo/bar/pkg'
|
79
|
-
include_examples 'a configurable', :package_tmp, '/foo/bar/pkg-tmp'
|
80
|
-
end
|
81
|
-
|
82
|
-
context '#install_path_cache_dir' do
|
83
|
-
it 'is deprecated' do
|
84
|
-
expect(Omnibus.logger).to receive(:deprecated).with('Config')
|
85
|
-
described_class.install_path_cache_dir
|
86
|
-
end
|
87
|
-
|
88
|
-
it 'defaults to #git_cache_dir' do
|
89
|
-
expect(described_class.install_path_cache_dir).to eq(described_class.git_cache_dir)
|
90
|
-
end
|
91
|
-
|
92
|
-
it 'overrides the value of #git_cache_dir when specified' do
|
93
|
-
path = '/magical/path/with/ponies'
|
94
|
-
described_class.install_path_cache_dir(path)
|
95
|
-
expect(described_class.git_cache_dir).to eq(path)
|
96
|
-
end
|
97
90
|
end
|
98
91
|
end
|
99
92
|
end
|