59100fd6bc
Much like read-database.ini, we need to ensure the permissions for puppetdb.ini and others are set explicitly to ensure permissions are still correct after configuration. Without this users with different umask settings may find their files are no longer accessible after the module runs. This patch fixes the globally for all the ini files we currently manage (repl.ini is not managed fwiw). This also fixes a bug whereby we were missing puppetdb::server::global from the main server class, it adds this back and fixes the tests to ensure we don't lose it. Signed-off-by: Ken Barber <ken@bob.sh>
53 lines
1.6 KiB
Ruby
53 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'puppetdb', :type => :class do
|
|
ttl_args = ['node_ttl','node_purge_ttl','report_ttl']
|
|
|
|
context 'on a supported platform' do
|
|
let(:facts) do
|
|
{
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '6.0',
|
|
:kernel => 'Linux',
|
|
:concat_basedir => '/var/lib/puppet/concat',
|
|
:lsbdistid => 'Debian',
|
|
:lsbdistcodename => 'foo',
|
|
:id => 'root',
|
|
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
|
:selinux => false,
|
|
:iptables_persistent_version => '0.5.7',
|
|
}
|
|
end
|
|
|
|
describe 'when using default values for puppetdb class' do
|
|
it { should contain_class('puppetdb') }
|
|
it { should contain_class('puppetdb::server') }
|
|
it { should contain_class('puppetdb::database::postgresql') }
|
|
end
|
|
end
|
|
|
|
context 'with invalid arguments on a supported platform' do
|
|
let(:facts) do
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '6.0',
|
|
:kernel => 'Linux',
|
|
:concat_basedir => '/var/lib/puppet/concat',
|
|
:selinux => true,
|
|
:iptables_persistent_version => '0.5.7',
|
|
}
|
|
end
|
|
ttl_args.each do |ttl_arg|
|
|
let(:params) do
|
|
{
|
|
ttl_arg => 'invalid_value'
|
|
}
|
|
end
|
|
it "when using a value that does not match the validation regex for #{ttl_arg} puppetdb class" do
|
|
expect { should contain_class('puppetdb') }.to raise_error(Puppet::Error)
|
|
end
|
|
end
|
|
end
|
|
end
|