summaryrefslogtreecommitdiff
path: root/spec/classes/ntp_config_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/classes/ntp_config_spec.rb')
-rw-r--r--spec/classes/ntp_config_spec.rb89
1 files changed, 56 insertions, 33 deletions
diff --git a/spec/classes/ntp_config_spec.rb b/spec/classes/ntp_config_spec.rb
index 53836a0..51db491 100644
--- a/spec/classes/ntp_config_spec.rb
+++ b/spec/classes/ntp_config_spec.rb
@@ -167,62 +167,85 @@ describe 'ntp::config' do
(content.split("\n") & expected_lines).should == expected_lines
end
end
- end
- ['Debian', 'RedHat','SuSE', 'FreeBSD', 'Archlinux'].each do |osfamily|
- describe "keys for osfamily #{osfamily}" do
+ ['Debian', 'RedHat','SuSE', 'FreeBSD', 'Archlinux'].each do |osfamily|
+
+ describe "keys for osfamily #{osfamily}" do
+ context "when enabled" do
+ let(:facts) {{ :osfamily => osfamily }}
+ let(:params) {{
+ :keys_enable => true,
+ :keys_file => '/etc/ntp/ntp.keys',
+ :keys_trusted => ['1', '2', '3'],
+ :keys_controlkey => '2',
+ :keys_requestkey => '3',
+ }}
+
+ it { should contain_file('/etc/ntp').with({
+ 'ensure' => 'directory'})
+ }
+ it { should contain_file('/etc/ntp.conf').with({
+ 'content' => /trustedkey 1 2 3/})
+ }
+ it { should contain_file('/etc/ntp.conf').with({
+ 'content' => /controlkey 2/})
+ }
+ it { should contain_file('/etc/ntp.conf').with({
+ 'content' => /requestkey 3/})
+ }
+ end
+ end
- context "when enabled" do
+ context "when disabled" do
let(:facts) {{ :osfamily => osfamily }}
let(:params) {{
- :keys_enable => true,
+ :keys_enable => false,
:keys_file => '/etc/ntp/ntp.keys',
:keys_trusted => ['1', '2', '3'],
:keys_controlkey => '2',
:keys_requestkey => '3',
}}
- it { should contain_file('/etc/ntp').with({
+ it { should_not contain_file('/etc/ntp').with({
'ensure' => 'directory'})
}
- it { should contain_file('/etc/ntp.conf').with({
+ it { should_not contain_file('/etc/ntp.conf').with({
'content' => /trustedkey 1 2 3/})
}
- it { should contain_file('/etc/ntp.conf').with({
+ it { should_not contain_file('/etc/ntp.conf').with({
'content' => /controlkey 2/})
}
- it { should contain_file('/etc/ntp.conf').with({
+ it { should_not contain_file('/etc/ntp.conf').with({
'content' => /requestkey 3/})
}
end
end
- context "when disabled" do
- let(:facts) {{ :osfamily => osfamily }}
- let(:params) {{
- :keys_enable => false,
- :keys_file => '/etc/ntp/ntp.keys',
- :keys_trusted => ['1', '2', '3'],
- :keys_controlkey => '2',
- :keys_requestkey => '3',
- }}
+ describe 'preferred servers' do
+ context "when set" do
+ let(:facts) {{ :osfamily => osfamily }}
+ let(:params) {{
+ :servers => ['a', 'b', 'c', 'd'],
+ :preferred_servers => ['a', 'b']
+ }}
+
+ it { should contain_file('/etc/ntp.conf').with({
+ 'content' => /server a prefer\nserver b prefer\nserver c\nserver d/})
+ }
+ end
+ context "when not set" do
+ let(:facts) {{ :osfamily => osfamily }}
+ let(:params) {{
+ :servers => ['a', 'b', 'c', 'd'],
+ :preferred_servers => []
+ }}
- it { should_not contain_file('/etc/ntp').with({
- 'ensure' => 'directory'})
- }
- it { should_not contain_file('/etc/ntp.conf').with({
- 'content' => /trustedkey 1 2 3/})
- }
- it { should_not contain_file('/etc/ntp.conf').with({
- 'content' => /controlkey 2/})
- }
- it { should_not contain_file('/etc/ntp.conf').with({
- 'content' => /requestkey 3/})
- }
+ it { should_not contain_file('/etc/ntp.conf').with({
+ 'content' => /server a prefer/})
+ }
+ end
end
end
-
-
-
end
+
end