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 46 47 48 49 50 51 52 53 54
|
require 'spec_helper'
set :os, :family => 'base'
describe service('sshd') do
it { should be_running }
end
describe service('sshd') do
let(:stdout) { "sshd is stopped\r\n" }
it { should be_running }
end
describe service('sshd') do
it { should be_running.under(:supervisor) }
end
describe service('sshd') do
it { should be_running.under(:upstart) }
end
describe service('sshd') do
it { should be_running.under(:daemontools) }
end
describe service('sshd') do
it {
expect {
should be_running.under('not implemented')
}.to raise_error(/is not implemented in Specinfra/)
}
end
describe service('sshd') do
let(:stdout) { "Process 'sshd'\r\n status running\r\n monitoring status monitored" }
it { should be_monitored_by(:monit) }
end
describe service('tinc') do
let(:stdout) { "Process 'tinc-myvpn'\r\n status running\r\n monitoring status monitored" }
it { should be_monitored_by(:monit).with_name('tinc-myvpn') }
end
describe service('unicorn') do
it { should be_monitored_by(:god) }
end
describe service('sshd') do
it {
expect {
should be_monitored_by('not implemented')
}.to raise_error(NotImplementedError)
}
end
|