blob: 1a6bb44d4e703b57420ec66e2394fe49c97ee467 (
plain)
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
|
require 'spec_helper'
describe 'ferm::chain', type: :define do
on_supported_os.each do |os, facts|
context "on #{os} " do
let :facts do
facts
end
let(:title) { 'INPUT2' }
let :pre_condition do
'include ferm'
end
context 'default params creates INPUT2 chain' do
let :params do
{
disable_conntrack: false,
log_dropped_packets: true
}
end
it { is_expected.to compile.with_all_deps }
it { is_expected.to contain_concat__fragment('filter-INPUT2-config-include') }
it do
is_expected.to contain_concat__fragment('filter-INPUT2-policy'). \
with_content(%r{ESTABLISHED RELATED})
end
it do
is_expected.to contain_concat__fragment('filter-INPUT2-footer'). \
with_content(%r{LOG log-prefix 'INPUT2: ';})
end
if facts[:os]['name'] == 'Debian'
it { is_expected.to contain_concat('/etc/ferm/ferm.d/chains/filter-INPUT2.conf') }
else
it { is_expected.to contain_concat('/etc/ferm.d/chains/filter-INPUT2.conf') }
end
it { is_expected.to contain_ferm__chain('INPUT2') }
end
context 'without conntrack' do
let :params do
{
disable_conntrack: true,
log_dropped_packets: false
}
end
it { is_expected.to compile.with_all_deps }
it do
is_expected.to contain_concat__fragment('filter-INPUT2-policy')
is_expected.not_to contain_concat__fragment('filter-INPUT2-policy'). \
with_content(%r{ESTABLISHED RELATED})
end
it do
is_expected.not_to contain_concat__fragment('filter-INPUT2-footer'). \
with_content(%r{LOG log-prefix 'INPUT2: ';})
end
end
context 'with policy setting for custom chain' do
let :params do
{
chain: 'INPUT2',
policy: 'DROP',
disable_conntrack: true,
log_dropped_packets: false
}
end
it { is_expected.to compile.and_raise_error(%r{Can only set a default policy for builtin chains}) }
end
end
end
end
|