3306f1f265
Since version 3.0.0 is now released, we want to pin against the old revision everywhere. We already pin in the Modulefile and unit tests, we just forgot to do it for the rspec-system tests. Signed-off-by: Ken Barber <ken@bob.sh>
69 lines
1.7 KiB
Ruby
69 lines
1.7 KiB
Ruby
require 'spec_helper_system'
|
|
|
|
describe 'basic tests:' do
|
|
it 'make sure we have copied the module across' do
|
|
# No point diagnosing any more if the module wasn't copied properly
|
|
system_run("ls /etc/puppet/modules/puppetdb") do |r|
|
|
r[:exit_code].should == 0
|
|
r[:stdout].should =~ /Modulefile/
|
|
r[:stderr].should == ''
|
|
end
|
|
end
|
|
|
|
it 'make sure a puppet agent has ran' do
|
|
puppet_agent do |r|
|
|
r[:stderr].should == ''
|
|
r[:exit_code].should == 0
|
|
end
|
|
end
|
|
|
|
describe 'single node setup' do
|
|
let(:pp) do
|
|
pp = <<-EOS
|
|
# Single node setup
|
|
class { 'puppetdb': }
|
|
class { 'puppetdb::master::config': }
|
|
EOS
|
|
end
|
|
|
|
it 'make sure it runs without error' do
|
|
system_run('puppet module install puppetlabs/stdlib')
|
|
system_run('puppet module install puppetlabs/postgresql --version 2.5.0')
|
|
system_run('puppet module install puppetlabs/firewall')
|
|
system_run('puppet module install puppetlabs/inifile')
|
|
|
|
puppet_apply(pp) do |r|
|
|
r[:exit_code].should_not eq(1)
|
|
end
|
|
end
|
|
|
|
it 'should be idempotent' do
|
|
puppet_apply(:code => pp, :debug => true) do |r|
|
|
r[:exit_code].should == 0
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'enabling report processor' do
|
|
let(:pp) do
|
|
pp = <<-EOS
|
|
class { 'puppetdb::master::config':
|
|
manage_report_processor => true,
|
|
enable_reports => true
|
|
}
|
|
EOS
|
|
end
|
|
|
|
it 'should add the puppetdb report processor to puppet.conf' do
|
|
puppet_apply(pp) do |r|
|
|
r[:exit_code].should_not eq(1)
|
|
end
|
|
|
|
system_run("cat /etc/puppet/puppet.conf") do |r|
|
|
r[:stdout].should =~ /^reports\s*=\s*([^,]+,)*puppetdb(,[^,]+)*$/
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|