blob: bd4ed731d66770227557d870f5d777e7dc56730a (
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
|
require 'spec_helper'
describe 'ferm::rule', type: :define do
on_supported_os.each do |os, facts|
context "on #{os} " do
let :facts do
facts
end
context 'without a specific interface' do
let(:title) { 'filter-ssh' }
let :params do
{
chain: 'INPUT',
policy: 'ACCEPT',
proto: 'tcp',
dport: '22',
saddr: '127.0.0.1'
}
end
it { is_expected.to compile.with_all_deps }
it { is_expected.to contain_concat__fragment('INPUT-filter-ssh').with_content("mod comment comment 'filter-ssh' proto tcp dport 22 saddr @ipfilter(127.0.0.1) ACCEPT;\n") }
end
context 'with a specific interface' do
let(:title) { 'filter-ssh' }
let :params do
{
chain: 'INPUT',
policy: 'ACCEPT',
proto: 'tcp',
dport: '22',
saddr: '127.0.0.1',
interface: 'eth0'
}
end
it { is_expected.to compile.with_all_deps }
it { is_expected.to contain_concat__fragment('INPUT-eth0-filter-ssh').with_content(" mod comment comment 'filter-ssh' proto tcp dport 22 saddr @ipfilter(127.0.0.1) ACCEPT;\n") }
it { is_expected.to contain_concat__fragment('INPUT-eth0-aaa').with_content("interface eth0 {\n") }
it { is_expected.to contain_concat__fragment('INPUT-eth0-zzz').with_content("}\n") }
end
end
end
end
|