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,219 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Packager::PKG 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
|
+
subject.identifier('com.getchef.project')
|
24
|
+
|
25
|
+
Config.project_root(project_root)
|
26
|
+
Config.package_dir(package_dir)
|
27
|
+
|
28
|
+
allow(subject).to receive(:staging_dir).and_return(staging_dir)
|
29
|
+
create_directory(staging_dir)
|
30
|
+
end
|
31
|
+
|
32
|
+
describe 'DSL' do
|
33
|
+
it 'exposes :identifier' do
|
34
|
+
expect(subject).to have_exposed_method(:identifier)
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'exposes :signing_identity' do
|
38
|
+
expect(subject).to have_exposed_method(:signing_identity)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe '#id' do
|
43
|
+
it 'is :pkg' do
|
44
|
+
expect(subject.id).to eq(:pkg)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe '#package_name' do
|
49
|
+
it 'includes the name, version, and build iteration' do
|
50
|
+
expect(subject.package_name).to eq('project-1.2.3-2.pkg')
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe '#resources_dir' do
|
55
|
+
it 'is nested inside the staging_dir' do
|
56
|
+
expect(subject.resources_dir).to eq("#{staging_dir}/Resources")
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#build_component_pkg' do
|
61
|
+
it 'executes the pkgbuild command' do
|
62
|
+
expect(subject).to receive(:shellout!).with <<-EOH.gsub(/^ {10}/, '')
|
63
|
+
pkgbuild \\
|
64
|
+
--identifier "com.getchef.project" \\
|
65
|
+
--version "1.2.3" \\
|
66
|
+
--scripts "#{project_root}/package-scripts/project" \\
|
67
|
+
--root "/opt/project" \\
|
68
|
+
--install-location "/opt/project" \\
|
69
|
+
"project-core.pkg"
|
70
|
+
EOH
|
71
|
+
|
72
|
+
subject.build_component_pkg
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe '#write_distribution_file' do
|
77
|
+
it 'generates the file' do
|
78
|
+
subject.write_distribution_file
|
79
|
+
expect("#{staging_dir}/Distribution").to be_a_file
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'has the correct content' do
|
83
|
+
subject.write_distribution_file
|
84
|
+
contents = File.read("#{staging_dir}/Distribution")
|
85
|
+
|
86
|
+
expect(contents).to include('<pkg-ref id="com.getchef.project"/>')
|
87
|
+
expect(contents).to include('<line choice="com.getchef.project"/>')
|
88
|
+
expect(contents).to include('project-core.pkg')
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
describe '#build_product_pkg' do
|
93
|
+
context 'when pkg signing is disabled' do
|
94
|
+
it 'generates the distribution and runs productbuild' do
|
95
|
+
expect(subject).to receive(:shellout!).with <<-EOH.gsub(/^ {12}/, '')
|
96
|
+
productbuild \\
|
97
|
+
--distribution "#{staging_dir}/Distribution" \\
|
98
|
+
--resources "#{staging_dir}/Resources" \\
|
99
|
+
"#{package_dir}/project-1.2.3-2.pkg"
|
100
|
+
EOH
|
101
|
+
|
102
|
+
subject.build_product_pkg
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
context 'when pkg signing is enabled' do
|
107
|
+
before do
|
108
|
+
subject.signing_identity('My Special Identity')
|
109
|
+
end
|
110
|
+
|
111
|
+
it 'includes the signing parameters in the product build command' do
|
112
|
+
expect(subject).to receive(:shellout!).with <<-EOH.gsub(/^ {12}/, '')
|
113
|
+
productbuild \\
|
114
|
+
--distribution "#{staging_dir}/Distribution" \\
|
115
|
+
--resources "#{staging_dir}/Resources" \\
|
116
|
+
--sign "My Special Identity" \\
|
117
|
+
"#{package_dir}/project-1.2.3-2.pkg"
|
118
|
+
EOH
|
119
|
+
subject.build_product_pkg
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
context "when the identifier isn't specified by the project" do
|
124
|
+
before do
|
125
|
+
subject.identifier(nil)
|
126
|
+
project.name('$Project#')
|
127
|
+
end
|
128
|
+
|
129
|
+
it 'uses com.example.PROJECT_NAME as the identifier' do
|
130
|
+
expect(subject.safe_identifier).to eq('test.chefsoftware.pkg.project')
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
describe '#component_pkg' do
|
136
|
+
it 'returns the project name with -core.pkg' do
|
137
|
+
expect(subject.component_pkg).to eq('project-core.pkg')
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
describe '#safe_project_name' do
|
142
|
+
context 'when the project name is "safe"' do
|
143
|
+
it 'returns the value without logging a message' do
|
144
|
+
expect(subject.safe_project_name).to eq('project')
|
145
|
+
expect(subject).to_not receive(:log)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
context 'when the project name has invalid characters' do
|
150
|
+
before { project.name("$Project123.for-realz_2") }
|
151
|
+
|
152
|
+
it 'returns the value while logging a message' do
|
153
|
+
output = capture_logging do
|
154
|
+
expect(subject.safe_project_name).to eq('project123forrealz2')
|
155
|
+
end
|
156
|
+
|
157
|
+
expect(output).to include("The `name' compontent of Mac package names can only include")
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
describe '#safe_identifier' do
|
163
|
+
context 'when Project#identifier is given' do
|
164
|
+
before { subject.identifier('com.apple.project') }
|
165
|
+
|
166
|
+
it 'is used' do
|
167
|
+
expect(subject.safe_identifier).to eq('com.apple.project')
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
context 'when no value in project is given' do
|
172
|
+
before { subject.identifier(nil) }
|
173
|
+
|
174
|
+
it 'is interpreted' do
|
175
|
+
expect(subject.safe_identifier).to eq('test.chefsoftware.pkg.project')
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
context 'when interpolated values are "unsafe"' do
|
180
|
+
before do
|
181
|
+
project.name("$Project123.for-realz_2")
|
182
|
+
project.maintainer("This is SPARTA!")
|
183
|
+
subject.identifier(nil)
|
184
|
+
end
|
185
|
+
|
186
|
+
it 'uses the "safe" values' do
|
187
|
+
expect(subject.safe_identifier).to eq('test.thisissparta.pkg.project123forrealz2')
|
188
|
+
end
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
describe '#safe_build_iteration' do
|
193
|
+
it 'returns the build iternation' do
|
194
|
+
expect(subject.safe_build_iteration).to eq(project.build_iteration)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
describe '#safe_version' do
|
199
|
+
context 'when the project build_version is "safe"' do
|
200
|
+
it 'returns the value without logging a message' do
|
201
|
+
expect(subject.safe_version).to eq('1.2.3')
|
202
|
+
expect(subject).to_not receive(:log)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
context 'when the project build_version has invalid characters' do
|
207
|
+
before { project.build_version("1.2$alpha.##__2") }
|
208
|
+
|
209
|
+
it 'returns the value while logging a message' do
|
210
|
+
output = capture_logging do
|
211
|
+
expect(subject.safe_version).to eq('1.2-alpha.-2')
|
212
|
+
end
|
213
|
+
|
214
|
+
expect(output).to include("The `version' compontent of Mac package names can only include")
|
215
|
+
end
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
219
|
+
end
|
@@ -0,0 +1,328 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module Omnibus
|
4
|
+
describe Packager::RPM 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}/BUILD")
|
29
|
+
create_directory("#{staging_dir}/RPMS")
|
30
|
+
create_directory("#{staging_dir}/SRPMS")
|
31
|
+
create_directory("#{staging_dir}/SOURCES")
|
32
|
+
create_directory("#{staging_dir}/SPECS")
|
33
|
+
end
|
34
|
+
|
35
|
+
describe '#signing_passphrase' do
|
36
|
+
it 'is a DSL method' do
|
37
|
+
expect(subject).to have_exposed_method(:signing_passphrase)
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'has a no default value' do
|
41
|
+
expect(subject.signing_passphrase).to be(nil)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
|
46
|
+
describe '#vendor' do
|
47
|
+
it 'is a DSL method' do
|
48
|
+
expect(subject).to have_exposed_method(:vendor)
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'has a default value' do
|
52
|
+
expect(subject.vendor).to eq('Omnibus <omnibus@getchef.com>')
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'must be a string' do
|
56
|
+
expect { subject.vendor(Object.new) }.to raise_error(InvalidValue)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#license' do
|
61
|
+
it 'is a DSL method' do
|
62
|
+
expect(subject).to have_exposed_method(:license)
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'has a default value' do
|
66
|
+
expect(subject.license).to eq('unknown')
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'must be a string' do
|
70
|
+
expect { subject.license(Object.new) }.to raise_error(InvalidValue)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe '#priority' do
|
75
|
+
it 'is a DSL method' do
|
76
|
+
expect(subject).to have_exposed_method(:priority)
|
77
|
+
end
|
78
|
+
|
79
|
+
it 'has a default value' do
|
80
|
+
expect(subject.priority).to eq('extra')
|
81
|
+
end
|
82
|
+
|
83
|
+
it 'must be a string' do
|
84
|
+
expect { subject.priority(Object.new) }.to raise_error(InvalidValue)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe '#category' do
|
89
|
+
it 'is a DSL method' do
|
90
|
+
expect(subject).to have_exposed_method(:category)
|
91
|
+
end
|
92
|
+
|
93
|
+
it 'has a default value' do
|
94
|
+
expect(subject.category).to eq('default')
|
95
|
+
end
|
96
|
+
|
97
|
+
it 'must be a string' do
|
98
|
+
expect { subject.category(Object.new) }.to raise_error(InvalidValue)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
describe '#id' do
|
103
|
+
it 'is :rpm' do
|
104
|
+
expect(subject.id).to eq(:rpm)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
describe '#package_name' do
|
109
|
+
before do
|
110
|
+
allow(subject).to receive(:safe_architecture).and_return('x86_64')
|
111
|
+
end
|
112
|
+
|
113
|
+
it 'includes the name, version, and build iteration' do
|
114
|
+
expect(subject.package_name).to eq('project-1.2.3-2.x86_64.rpm')
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe '#build_dir' do
|
119
|
+
it 'is nested inside the staging_dir' do
|
120
|
+
expect(subject.build_dir).to eq("#{staging_dir}/BUILD")
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
describe '#write_rpm_spec' do
|
125
|
+
before do
|
126
|
+
allow(subject).to receive(:safe_architecture).and_return('x86_64')
|
127
|
+
end
|
128
|
+
|
129
|
+
let(:spec_file) { "#{staging_dir}/SPECS/project-1.2.3-2.x86_64.rpm.spec" }
|
130
|
+
|
131
|
+
it 'generates the file' do
|
132
|
+
subject.write_rpm_spec
|
133
|
+
expect(spec_file).to be_a_file
|
134
|
+
end
|
135
|
+
|
136
|
+
it 'has the correct content' do
|
137
|
+
subject.write_rpm_spec
|
138
|
+
contents = File.read(spec_file)
|
139
|
+
|
140
|
+
expect(contents).to include("Name: project")
|
141
|
+
expect(contents).to include("Version: 1.2.3")
|
142
|
+
expect(contents).to include("Release: 2")
|
143
|
+
expect(contents).to include("Summary: The full stack of project")
|
144
|
+
expect(contents).to include("BuildArch: x86_64")
|
145
|
+
expect(contents).to include("AutoReqProv: no")
|
146
|
+
expect(contents).to include("BuildRoot: %buildroot")
|
147
|
+
expect(contents).to include("Prefix: /")
|
148
|
+
expect(contents).to include("Group: default")
|
149
|
+
expect(contents).to include("License: unknown")
|
150
|
+
expect(contents).to include("Vendor: Omnibus <omnibus@getchef.com>")
|
151
|
+
expect(contents).to include("URL: https://example.com")
|
152
|
+
expect(contents).to include("Packager: Chef Software")
|
153
|
+
end
|
154
|
+
|
155
|
+
context 'when scripts are given' do
|
156
|
+
before do
|
157
|
+
Packager::RPM::SCRIPTS.each do |name|
|
158
|
+
create_file("#{project_root}/package-scripts/project/#{name}") do
|
159
|
+
"Contents of #{name}"
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
it 'writes the scripts into the spec' do
|
165
|
+
subject.write_rpm_spec
|
166
|
+
contents = File.read(spec_file)
|
167
|
+
|
168
|
+
expect(contents).to include("%pre")
|
169
|
+
expect(contents).to include("Contents of pre")
|
170
|
+
expect(contents).to include("%post")
|
171
|
+
expect(contents).to include("Contents of post")
|
172
|
+
expect(contents).to include("%preun")
|
173
|
+
expect(contents).to include("Contents of preun")
|
174
|
+
expect(contents).to include("%postun")
|
175
|
+
expect(contents).to include("Contents of postun")
|
176
|
+
expect(contents).to include("%verifyscript")
|
177
|
+
expect(contents).to include("Contents of verifyscript")
|
178
|
+
expect(contents).to include("%pretans")
|
179
|
+
expect(contents).to include("Contents of pretans")
|
180
|
+
expect(contents).to include("%posttrans")
|
181
|
+
expect(contents).to include("Contents of posttrans")
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
context 'when files and directories are present' do
|
186
|
+
before do
|
187
|
+
create_file("#{staging_dir}/BUILD/.file1")
|
188
|
+
create_file("#{staging_dir}/BUILD/file2")
|
189
|
+
create_directory("#{staging_dir}/BUILD/.dir1")
|
190
|
+
create_directory("#{staging_dir}/BUILD/dir2")
|
191
|
+
end
|
192
|
+
|
193
|
+
it 'writes them into the spec' do
|
194
|
+
subject.write_rpm_spec
|
195
|
+
contents = File.read(spec_file)
|
196
|
+
|
197
|
+
expect(contents).to include("/.dir1")
|
198
|
+
expect(contents).to include("/.file1")
|
199
|
+
expect(contents).to include("/dir2")
|
200
|
+
expect(contents).to include("/file2")
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
describe '#create_rpm_file' do
|
206
|
+
before do
|
207
|
+
allow(subject).to receive(:shellout!)
|
208
|
+
allow(Dir).to receive(:chdir) { |_, &b| b.call }
|
209
|
+
end
|
210
|
+
|
211
|
+
it 'logs a message' do
|
212
|
+
output = capture_logging { subject.create_rpm_file }
|
213
|
+
expect(output).to include('Creating .rpm file')
|
214
|
+
end
|
215
|
+
|
216
|
+
it 'uses the correct command' do
|
217
|
+
expect(subject).to receive(:shellout!)
|
218
|
+
.with(/rpmbuild -bb --buildroot/)
|
219
|
+
subject.create_rpm_file
|
220
|
+
end
|
221
|
+
|
222
|
+
context 'when RPM signing is enabled' do
|
223
|
+
before do
|
224
|
+
subject.signing_passphrase('foobar')
|
225
|
+
allow(Dir).to receive(:mktmpdir).and_return(tmp_path)
|
226
|
+
end
|
227
|
+
|
228
|
+
it 'signs the rpm' do
|
229
|
+
expect(subject).to receive(:shellout!)
|
230
|
+
.with(/sign\-rpm/, kind_of(Hash))
|
231
|
+
subject.create_rpm_file
|
232
|
+
end
|
233
|
+
end
|
234
|
+
end
|
235
|
+
|
236
|
+
describe '#spec_file' do
|
237
|
+
before do
|
238
|
+
allow(subject).to receive(:package_name).and_return('package_name')
|
239
|
+
end
|
240
|
+
|
241
|
+
it 'includes the package_name' do
|
242
|
+
expect(subject.spec_file).to eq("#{staging_dir}/SPECS/package_name.spec")
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
describe '#rpm_safe' do
|
247
|
+
it 'adds quotes when required' do
|
248
|
+
expect(subject.rpm_safe('file path')).to eq('"file path"')
|
249
|
+
end
|
250
|
+
|
251
|
+
it 'escapes [' do
|
252
|
+
expect(subject.rpm_safe('[foo')).to eq('[\\[]foo')
|
253
|
+
end
|
254
|
+
|
255
|
+
it 'escapes *' do
|
256
|
+
expect(subject.rpm_safe('*foo')).to eq('[*]foo')
|
257
|
+
end
|
258
|
+
|
259
|
+
it 'escapes ?' do
|
260
|
+
expect(subject.rpm_safe('?foo')).to eq('[?]foo')
|
261
|
+
end
|
262
|
+
|
263
|
+
it 'escapes %' do
|
264
|
+
expect(subject.rpm_safe('%foo')).to eq('[%]foo')
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
describe '#safe_project_name' do
|
269
|
+
context 'when the project name is "safe"' do
|
270
|
+
it 'returns the value without logging a message' do
|
271
|
+
expect(subject.safe_project_name).to eq('project')
|
272
|
+
expect(subject).to_not receive(:log)
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
context 'when the project name has invalid characters' do
|
277
|
+
before { project.name("Pro$ject123.for-realz_2") }
|
278
|
+
|
279
|
+
it 'returns the value while logging a message' do
|
280
|
+
output = capture_logging do
|
281
|
+
expect(subject.safe_project_name).to eq('pro-ject123.for-realz-2')
|
282
|
+
end
|
283
|
+
|
284
|
+
expect(output).to include("The `name' compontent of RPM package names can only include")
|
285
|
+
end
|
286
|
+
end
|
287
|
+
end
|
288
|
+
|
289
|
+
describe '#safe_build_iteration' do
|
290
|
+
it 'returns the build iternation' do
|
291
|
+
expect(subject.safe_build_iteration).to eq(project.build_iteration)
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
describe '#safe_version' do
|
296
|
+
context 'when the project build_version is "safe"' do
|
297
|
+
it 'returns the value without logging a message' do
|
298
|
+
expect(subject.safe_version).to eq('1.2.3')
|
299
|
+
expect(subject).to_not receive(:log)
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
context 'when the project build_version has invalid characters' do
|
304
|
+
before { project.build_version("1.2$alpha.##__2") }
|
305
|
+
|
306
|
+
it 'returns the value while logging a message' do
|
307
|
+
output = capture_logging do
|
308
|
+
expect(subject.safe_version).to eq('1.2-alpha.-2')
|
309
|
+
end
|
310
|
+
|
311
|
+
expect(output).to include("The `version' compontent of RPM package names can only include")
|
312
|
+
end
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
describe '#safe_architecture' do
|
317
|
+
before do
|
318
|
+
stub_ohai(platform: 'ubuntu', version: '12.04') do |data|
|
319
|
+
data['kernel']['machine'] = 'i386'
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
323
|
+
it 'returns the value from Ohai' do
|
324
|
+
expect(subject.safe_architecture).to eq('i386')
|
325
|
+
end
|
326
|
+
end
|
327
|
+
end
|
328
|
+
end
|