ansible-role-bind/test/integration/bind/serverspec/bind_spec.rb

84 lines
2.4 KiB
Ruby
Raw Normal View History

2017-10-08 12:55:01 +00:00
require 'serverspec'
set :backend, :exec
puts
2018-03-16 23:33:54 +00:00
puts '================================'
puts %x(ansible --version)
2018-03-16 23:33:54 +00:00
puts '================================'
2017-10-08 12:55:01 +00:00
%w[
bind9
cron
].each do |package|
describe package(package) do
it { should be_installed }
end
end
%w[
db.test.local
db.test.local.signed
db.hello.local
].each do |file|
describe file("/etc/bind/zones/#{file}") do
it { should be_file }
it { should be_mode 644 }
it { should be_owned_by 'root' }
it { should be_grouped_into 'root' }
end
end
describe file('/etc/bind/named.conf.local') do
it { should be_file }
it { should be_mode 644 }
it { should be_owned_by 'root' }
it { should be_grouped_into 'root' }
it { should contain '4.2.2.4' }
end
describe file('/etc/bind/named.conf.options') do
it { should be_file }
it { should be_mode 644 }
it { should be_owned_by 'root' }
it { should be_grouped_into 'root' }
it { should contain 'listen-on { any; };' }
it { should contain 'listen-on-v6 { none; };' }
end
2017-10-15 20:47:13 +00:00
describe service('bind9') do
it { should be_enabled }
it { should be_running.under('systemd') }
end
2017-10-15 00:05:45 +00:00
describe port(53) do
it { should be_listening.with('tcp') }
it { should be_listening.with('udp') }
end
2018-03-16 23:33:54 +00:00
describe command('dig +nocmd +noall +answer hello.test.local @127.0.0.1') do
2017-10-08 12:55:01 +00:00
its(:exit_status) { should eq 0 }
2018-03-16 23:33:54 +00:00
its(:stdout) { should contain(/hello\.test\.local\.\s+300\s+IN\s+A\s+1\.2\.3\.4/) }
2017-10-08 12:55:01 +00:00
end
2018-03-16 23:33:54 +00:00
describe command('dig +nocmd +noall +answer -t mx test.local @127.0.0.1') do
2017-10-08 12:55:01 +00:00
its(:exit_status) { should eq 0 }
2018-03-16 23:33:54 +00:00
its(:stdout) { should contain(/test\.local\.\s+3600\s+IN\s+MX\s+20 mail\.test\.local\./) }
2017-10-08 12:55:01 +00:00
end
2017-10-15 07:03:46 +00:00
2018-03-17 09:47:25 +00:00
describe command('dig +nocmd +noall +answer -t caa hello.test.local @127.0.0.1') do
its(:exit_status) { should eq 0 }
its(:stdout) { should contain(/hello\.test\.local\.\s+3600\s+IN\s+CAA\s+0 issue "letsencrypt\.org"/) }
its(:stdout) { should contain(/hello\.test\.local\.\s+3600\s+IN\s+CAA\s+0 iodef "mailto:root@test\.local"/) }
end
2018-03-16 23:33:54 +00:00
describe command('dig +nocmd +noall +answer hello.hello.local @127.0.0.1') do
2017-10-15 07:03:46 +00:00
its(:exit_status) { should eq 0 }
2018-03-16 23:33:54 +00:00
its(:stdout) { should contain(/hello\.hello\.local\.\s+3600\s+IN\s+A\s+4\.3\.2\.1/) }
end
describe command('dig +nocmd +noall +answer -t txt hello.local @127.0.0.1') do
its(:exit_status) { should eq 0 }
its(:stdout) { should contain('"0L4M99yv8ZLptmS2GP6goHXZgTdFIyYCdfziQgoENcloUI3KshDscsoh6H6I2LA"') }
2017-10-15 07:03:46 +00:00
end