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
|
require 'spec_helper'
describe 'apt::conf', type: :define do
let :pre_condition do
'class { "apt": }'
end
let(:facts) do
{
os: { family: 'Debian', name: 'Debian', release: { major: '7', full: '7.0' } },
lsbdistid: 'Debian',
osfamily: 'Debian',
lsbdistcodename: 'wheezy',
puppetversion: Puppet.version,
}
end
let :title do
'norecommends'
end
describe 'when creating an apt preference' do
let :default_params do
{
priority: '00',
content: "Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;\n",
}
end
let :params do
default_params
end
let :filename do
'/etc/apt/apt.conf.d/00norecommends'
end
it {
is_expected.to contain_file(filename).with('ensure' => 'present',
'content' => %r{Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;},
'owner' => 'root',
'group' => 'root',
'mode' => '0644')
}
context 'with notify_update = true (default)' do
let :params do
default_params
end
it { is_expected.to contain_apt__setting("conf-#{title}").with_notify_update(true) }
end
context 'with notify_update = false' do
let :params do
default_params.merge(notify_update: false)
end
it { is_expected.to contain_apt__setting("conf-#{title}").with_notify_update(false) }
end
end
describe 'when creating a preference without content' do
let :params do
{
priority: '00',
}
end
it 'fails' do
is_expected.to raise_error(%r{pass in content})
end
end
describe 'when removing an apt preference' do
let :params do
{
ensure: 'absent',
priority: '00',
}
end
let :filename do
'/etc/apt/apt.conf.d/00norecommends'
end
it {
is_expected.to contain_file(filename).with('ensure' => 'absent',
'owner' => 'root',
'group' => 'root',
'mode' => '0644')
}
end
end
|