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
|
require 'spec_helper'
if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0
describe 'deprecation' do
before(:each) {
# this is to reset the strict variable to default
Puppet.settings[:strict] = :warning
}
it { is_expected.not_to eq(nil) }
it { is_expected.to run.with_params().and_raise_error(ArgumentError) }
it 'should display a single warning' do
Puppet.expects(:warning).with(includes('heelo'))
is_expected.to run.with_params('key', 'heelo')
end
it 'should display a single warning, despite multiple calls' do
Puppet.expects(:warning).with(includes('heelo')).once
is_expected.to run.with_params('key', 'heelo')
is_expected.to run.with_params('key', 'heelo')
end
it 'should fail twice with message, with multiple calls. when strict= :error' do
Puppet.settings[:strict] = :error
Puppet.expects(:warning).with(includes('heelo')).never
is_expected.to run.with_params('key', 'heelo').and_raise_error(RuntimeError, /deprecation. key. heelo/)
is_expected.to run.with_params('key', 'heelo').and_raise_error(RuntimeError, /deprecation. key. heelo/)
end
it 'should display nothing, despite multiple calls. strict= :off' do
Puppet.settings[:strict] = :off
Puppet.expects(:warning).with(includes('heelo')).never
is_expected.to run.with_params('key', 'heelo')
is_expected.to run.with_params('key', 'heelo')
end
after(:all) {
# this is to reset the strict variable to default
Puppet.settings[:strict] = :warning
}
end
elsif Puppet.version.to_f < 4.0
# Puppet version < 4 will use these tests.
describe 'deprecation' do
after(:all) do
ENV.delete('STDLIB_LOG_DEPRECATIONS')
end
before(:all) do
ENV['STDLIB_LOG_DEPRECATIONS'] = "true"
end
it { is_expected.not_to eq(nil) }
it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
it 'should display a single warning' do
scope.expects(:warning).with(includes('heelo'))
is_expected.to run.with_params('key', 'heelo')
end
end
end
|