|
17 | 17 | context 'Catchall' do
|
18 | 18 | it { is_expected.to contain_class('Patterndb') }
|
19 | 19 | it { is_expected.to contain_exec('patterndb::merge::default') }
|
20 |
| - |
21 |
| - it { |
22 |
| - is_expected.to contain_file('patterndb::file::default').with( |
23 |
| - 'ensure' => 'present' |
24 |
| - ).that_notifies('Exec[patterndb::merge::default]') |
25 |
| - } |
26 | 20 | end
|
27 | 21 |
|
28 | 22 | context 'Default values (no parameters)' do
|
|
33 | 27 | end
|
34 | 28 |
|
35 | 29 | it {
|
36 |
| - is_expected.to contain_exec('patterndb::test::default').with( |
37 |
| - 'command' => %r{patterndb/default\.xml $}m |
| 30 | + is_expected.to contain_exec('patterndb::deploy::default').with( |
| 31 | + 'command' => 'pdbtool test /tmp/syslog-ng/patterndb/default.xml && cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml' |
38 | 32 | )
|
39 | 33 | }
|
40 | 34 | end
|
|
47 | 41 | end
|
48 | 42 |
|
49 | 43 | it {
|
50 |
| - is_expected.to contain_exec('patterndb::test::default').with( |
51 |
| - 'command' => %r{patterndb/default\.xml --module=foo --module=bar$}m |
| 44 | + is_expected.to contain_exec('patterndb::deploy::default').with( |
| 45 | + 'command' => 'pdbtool test /tmp/syslog-ng/patterndb/default.xml --module=foo --module=bar && cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml' |
52 | 46 | )
|
53 | 47 | }
|
54 | 48 | end
|
|
59 | 53 | end
|
60 | 54 |
|
61 | 55 | it {
|
62 |
| - is_expected.to contain_exec('patterndb::test::default').with( |
63 |
| - 'command' => %r{patterndb/default\.xml $}m |
| 56 | + is_expected.to contain_exec('patterndb::deploy::default').with( |
| 57 | + 'command' => 'pdbtool test /tmp/syslog-ng/patterndb/default.xml && cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml' |
64 | 58 | )
|
65 | 59 | }
|
66 | 60 |
|
67 | 61 | it {
|
68 |
| - is_expected.to contain_exec('patterndb::test::stage1').with( |
69 |
| - 'command' => %r{patterndb/stage1\.xml $}m |
| 62 | + is_expected.to contain_exec('patterndb::deploy::stage1').with( |
| 63 | + 'command' => 'pdbtool test /tmp/syslog-ng/patterndb/stage1.xml && cp //var/lib/syslog-ng/patterndb/stage1.xml //var/lib/syslog-ng/patterndb/stage1.xml' |
70 | 64 | )
|
71 | 65 | }
|
72 | 66 | end
|
|
78 | 72 | end
|
79 | 73 |
|
80 | 74 | it {
|
81 |
| - is_expected.to contain_exec('patterndb::test::default').with( |
82 |
| - 'command' => %r{patterndb/default\.xml --module=foo --module=bar$}m |
| 75 | + is_expected.to contain_exec('patterndb::deploy::default').with( |
| 76 | + 'command' => 'pdbtool test /tmp/syslog-ng/patterndb/default.xml --module=foo --module=bar && cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml' |
83 | 77 | )
|
84 | 78 | }
|
85 | 79 | end
|
|
90 | 84 | end
|
91 | 85 |
|
92 | 86 | it {
|
93 |
| - is_expected.to contain_exec('patterndb::test::default').with( |
94 |
| - 'command' => %r{patterndb/default\.xml $}m |
| 87 | + is_expected.to contain_exec('patterndb::deploy::default').with( |
| 88 | + 'command' => 'pdbtool test /tmp/syslog-ng/patterndb/default.xml && cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml' |
95 | 89 | )
|
96 | 90 | }
|
97 | 91 | end
|
98 | 92 |
|
99 |
| - context 'Without test_before_deploy' do |
| 93 | + context 'Without deploy' do |
100 | 94 | let :params do
|
101 | 95 | {
|
102 | 96 | test_before_deploy: false,
|
103 | 97 | }
|
104 | 98 | end
|
105 | 99 |
|
106 |
| - it { is_expected.to contain_exec('patterndb::merge::default').that_notifies('Exec[patterndb::deploy::default]') } |
| 100 | + it { is_expected.to contain_exec('patterndb::deploy::default').with(command: 'cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml') } |
107 | 101 | end
|
108 | 102 |
|
109 | 103 | context 'With test_before_deploy' do
|
|
113 | 107 | }
|
114 | 108 | end
|
115 | 109 |
|
116 |
| - it { is_expected.to contain_exec('patterndb::merge::default').that_notifies('Exec[patterndb::test::default]') } |
117 |
| - it { is_expected.to contain_exec('patterndb::test::default').that_notifies('Exec[patterndb::deploy::default]') } |
| 110 | + it { is_expected.to contain_exec('patterndb::deploy::default').with(command: 'pdbtool test /tmp/syslog-ng/patterndb/default.xml && cp //var/lib/syslog-ng/patterndb/default.xml //var/lib/syslog-ng/patterndb/default.xml') } |
118 | 111 | end
|
119 | 112 | end
|
120 | 113 | end
|
|
0 commit comments