diff options
author | Tim Meusel <tim@bastelfreak.de> | 2019-08-31 20:28:27 +0200 |
---|---|---|
committer | Tim Meusel <tim@bastelfreak.de> | 2019-09-01 12:08:54 +0200 |
commit | fc5f400d931c7beafeade383210e92d852a645ff (patch) | |
tree | 46508cb301e8e141c1600d9a5080650ccddca17c /spec/defines | |
parent | d6c0df12aa2b09bff70f88d51e7ef62045266095 (diff) | |
download | puppet-ferm-fc5f400d931c7beafeade383210e92d852a645ff.tar.gz puppet-ferm-fc5f400d931c7beafeade383210e92d852a645ff.tar.bz2 |
Add Debian 10 support & make configdirectory configureable
Diffstat (limited to 'spec/defines')
-rw-r--r-- | spec/defines/chain_spec.rb | 30 | ||||
-rw-r--r-- | spec/defines/rule_spec.rb | 4 |
2 files changed, 23 insertions, 11 deletions
diff --git a/spec/defines/chain_spec.rb b/spec/defines/chain_spec.rb index d3ab857..9425821 100644 --- a/spec/defines/chain_spec.rb +++ b/spec/defines/chain_spec.rb @@ -6,9 +6,13 @@ describe 'ferm::chain', type: :define do let :facts do facts end - let(:title) { 'INPUT' } + let(:title) { 'INPUT2' } - context 'default params creates INPUT chain' do + let :pre_condition do + 'include ferm' + end + + context 'default params creates INPUT2 chain' do let :params do { policy: 'DROP', @@ -19,15 +23,19 @@ describe 'ferm::chain', type: :define do it { is_expected.to compile.with_all_deps } it do - is_expected.to contain_concat__fragment('INPUT-policy'). \ + is_expected.to contain_concat__fragment('INPUT2-policy'). \ with_content(%r{ESTABLISHED RELATED}) end it do - is_expected.to contain_concat__fragment('INPUT-footer'). \ - with_content(%r{LOG log-prefix 'INPUT: ';}) + is_expected.to contain_concat__fragment('INPUT2-footer'). \ + with_content(%r{LOG log-prefix 'INPUT2: ';}) + end + if facts[:os]['release']['major'].to_i == 10 + it { is_expected.to contain_concat('/etc/ferm/ferm.d/chains/INPUT2.conf') } + else + it { is_expected.to contain_concat('/etc/ferm.d/chains/INPUT2.conf') } end - it { is_expected.to contain_concat('/etc/ferm.d/chains/INPUT.conf') } - it { is_expected.to contain_ferm__chain('INPUT') } + it { is_expected.to contain_ferm__chain('INPUT2') } end context 'without conntrack' do @@ -41,13 +49,13 @@ describe 'ferm::chain', type: :define do it { is_expected.to compile.with_all_deps } it do - is_expected.to contain_concat__fragment('INPUT-policy') - is_expected.not_to contain_concat__fragment('INPUT-policy'). \ + is_expected.to contain_concat__fragment('INPUT2-policy') + is_expected.not_to contain_concat__fragment('INPUT2-policy'). \ with_content(%r{ESTABLISHED RELATED}) end it do - is_expected.not_to contain_concat__fragment('INPUT-footer'). \ - with_content(%r{LOG log-prefix 'INPUT: ';}) + is_expected.not_to contain_concat__fragment('INPUT2-footer'). \ + with_content(%r{LOG log-prefix 'INPUT2: ';}) end end end diff --git a/spec/defines/rule_spec.rb b/spec/defines/rule_spec.rb index 3ee5576..1bec758 100644 --- a/spec/defines/rule_spec.rb +++ b/spec/defines/rule_spec.rb @@ -7,6 +7,10 @@ describe 'ferm::rule', type: :define do facts end + let :pre_condition do + 'include ferm' + end + context 'without a specific interface' do let(:title) { 'filter-ssh' } let :params do |