Sha256: 4170dada84542f83eaef3d5d1aa95daec4739445b44bbef6c0ca82ee56c9c7a0

Contents?: true

Size: 1.18 KB

Versions: 110

Compression:

Stored size: 1.18 KB

Contents

require 'spec_helper'
require 'puppet/module_tool/tar'

describe Puppet::ModuleTool::Tar do

  it "uses tar when present and not on Windows" do
    Facter.stubs(:value).with('osfamily').returns 'ObscureLinuxDistro'
    Puppet::Util.stubs(:which).with('tar').returns '/usr/bin/tar'
    Puppet::Util::Platform.stubs(:windows?).returns false

    expect(described_class.instance).to be_a_kind_of Puppet::ModuleTool::Tar::Gnu
  end

  it "falls back to minitar when it and zlib are present" do
    Facter.stubs(:value).with('osfamily').returns 'Windows'
    Puppet::Util.stubs(:which).with('tar')
    Puppet::Util::Platform.stubs(:windows?).returns true
    Puppet.stubs(:features).returns(stub(:minitar? => true, :zlib? => true))

    expect(described_class.instance).to be_a_kind_of Puppet::ModuleTool::Tar::Mini
  end

  it "fails when there is no possible implementation" do
    Facter.stubs(:value).with('osfamily').returns 'Windows'
    Puppet::Util.stubs(:which).with('tar')
    Puppet::Util::Platform.stubs(:windows?).returns true
    Puppet.stubs(:features).returns(stub(:minitar? => false, :zlib? => false))

    expect { described_class.instance }.to raise_error RuntimeError, /No suitable tar/
  end
end

Version data entries

110 entries across 110 versions & 1 rubygems

Version Path
puppet-4.5.1 spec/unit/module_tool/tar_spec.rb
puppet-4.5.1-x86-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.5.1-x64-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.5.1-universal-darwin spec/unit/module_tool/tar_spec.rb
puppet-4.5.0 spec/unit/module_tool/tar_spec.rb
puppet-4.5.0-x86-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.5.0-x64-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.5.0-universal-darwin spec/unit/module_tool/tar_spec.rb
puppet-4.4.2 spec/unit/module_tool/tar_spec.rb
puppet-4.4.2-x86-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.4.2-x64-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.4.2-universal-darwin spec/unit/module_tool/tar_spec.rb
puppet-4.4.1 spec/unit/module_tool/tar_spec.rb
puppet-4.4.1-x86-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.4.1-x64-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.4.1-universal-darwin spec/unit/module_tool/tar_spec.rb
puppet-4.4.0 spec/unit/module_tool/tar_spec.rb
puppet-4.4.0-x86-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.4.0-x64-mingw32 spec/unit/module_tool/tar_spec.rb
puppet-4.4.0-universal-darwin spec/unit/module_tool/tar_spec.rb