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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/provider/package/windows/exe_package'
describe Puppet::Provider::Package::Windows::ExePackage do
subject { described_class }
let (:name) { 'Git version 1.7.11' }
let (:version) { '1.7.11' }
let (:source) { 'E:\Git-1.7.11.exe' }
let (:uninstall) { '"C:\Program Files (x86)\Git\unins000.exe" /SP-' }
context '::from_registry' do
it 'should return an instance of ExePackage' do
subject.expects(:valid?).returns(true)
pkg = subject.from_registry('', {'DisplayName' => name, 'DisplayVersion' => version, 'UninstallString' => uninstall})
pkg.name.should == name
pkg.version.should == version
pkg.uninstall_string.should == uninstall
end
it 'should return nil if it is not a valid executable' do
subject.expects(:valid?).returns(false)
subject.from_registry('', {}).should be_nil
end
end
context '::valid?' do
let(:name) { 'myproduct' }
let(:values) do { 'DisplayName' => name, 'UninstallString' => uninstall } end
{
'DisplayName' => ['My App', ''],
'UninstallString' => ['E:\uninstall.exe', ''],
'SystemComponent' => [nil, 1],
'WindowsInstaller' => [nil, 1],
'ParentKeyName' => [nil, 'Uber Product'],
'Security Update' => [nil, 'KB890830'],
'Update Rollup' => [nil, 'Service Pack 42'],
'Hotfix' => [nil, 'QFE 42']
}.each_pair do |k, arr|
it "should accept '#{k}' with value '#{arr[0]}'" do
values[k] = arr[0]
subject.valid?(name, values).should be_true
end
it "should reject '#{k}' with value '#{arr[1]}'" do
values[k] = arr[1]
subject.valid?(name, values).should be_false
end
end
it 'should reject packages whose name starts with "KBXXXXXX"' do
subject.valid?('KB890830', values).should be_false
end
it 'should accept packages whose name does not start with "KBXXXXXX"' do
subject.valid?('My Update (KB890830)', values).should be_true
end
end
context '#match?' do
let(:pkg) { subject.new(name, version, uninstall) }
it 'should match product name' do
pkg.match?({:name => name}).should be_true
end
it 'should return false otherwise' do
pkg.match?({:name => 'not going to find it'}).should be_false
end
end
context '#install_command' do
it 'should install using the source' do
cmd = subject.install_command({:source => source})
cmd.should == ['cmd.exe', '/c', 'start', '"puppet-install"', '/w', source]
end
end
context '#uninstall_command' do
['C:\uninstall.exe', 'C:\Program Files\uninstall.exe'].each do |exe|
it "should quote #{exe}" do
subject.new(name, version, exe).uninstall_command.should ==
['cmd.exe', '/c', 'start', '"puppet-uninstall"', '/w', "\"#{exe}\""]
end
end
['"C:\Program Files\uninstall.exe"', '"C:\Program Files (x86)\Git\unins000.exe" /SILENT"'].each do |exe|
it "should not quote #{exe}" do
subject.new(name, version, exe).uninstall_command.should ==
['cmd.exe', '/c', 'start', '"puppet-uninstall"', '/w', exe]
end
end
end
end
|