1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#! /usr/bin/env ruby
require 'spec_helper'
describe Puppet::Type.type(:package).provider(:appdmg) do
let(:resource) { Puppet::Type.type(:package).new(:name => 'foo', :provider => :appdmg) }
let(:provider) { described_class.new(resource) }
describe "when installing an appdmg" do
let(:fake_mountpoint) { "/tmp/dmg.foo" }
let(:fake_hdiutil_plist) { {"system-entities" => [{"mount-point" => fake_mountpoint}]} }
before do
fh = mock 'filehandle'
fh.stubs(:path).yields "/tmp/foo"
resource[:source] = "foo.dmg"
described_class.stubs(:open).yields fh
Dir.stubs(:mktmpdir).returns "/tmp/testtmp123"
FileUtils.stubs(:remove_entry_secure)
end
describe "from a remote source" do
let(:tmpdir) { "/tmp/good123" }
before :each do
resource[:source] = "http://fake.puppetlabs.com/foo.dmg"
end
it "should call tmpdir and use the returned directory" do
Dir.expects(:mktmpdir).returns tmpdir
Dir.stubs(:entries).returns ["foo.app"]
described_class.expects(:curl).with do |*args|
args[0] == "-o" && args[1].include?(tmpdir) && ! args.include?("-k")
end
described_class.stubs(:hdiutil).returns 'a plist'
Puppet::Util::Plist.expects(:parse_plist).with('a plist').returns fake_hdiutil_plist
described_class.expects(:installapp)
provider.install
end
end
end
end
|