101 lines
3.1 KiB
Ruby
101 lines
3.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::server::config', :type => :class do
|
|
let (:pre_condition) do
|
|
"include postgresql::server"
|
|
end
|
|
|
|
describe 'on RedHat 7' do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:operatingsystem => 'CentOS',
|
|
:operatingsystemrelease => '7.0',
|
|
:concat_basedir => tmpfilename('server'),
|
|
:kernel => 'Linux',
|
|
:id => 'root',
|
|
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
|
}
|
|
end
|
|
it 'should have the correct systemd-override file' do
|
|
is_expected.to contain_file('systemd-override').with ({
|
|
:ensure => 'present',
|
|
:path => '/etc/systemd/system/postgresql.service',
|
|
:owner => 'root',
|
|
:group => 'root',
|
|
})
|
|
is_expected.to contain_file('systemd-override') \
|
|
.with_content(/.include \/usr\/lib\/systemd\/system\/postgresql.service/)
|
|
end
|
|
|
|
describe 'with manage_package_repo => true and a version' do
|
|
let (:pre_condition) do
|
|
<<-EOS
|
|
class { 'postgresql::globals':
|
|
manage_package_repo => true,
|
|
version => '9.4',
|
|
}->
|
|
class { 'postgresql::server': }
|
|
EOS
|
|
end
|
|
|
|
it 'should have the correct systemd-override file' do
|
|
is_expected.to contain_file('systemd-override').with ({
|
|
:ensure => 'present',
|
|
:path => '/etc/systemd/system/postgresql-9.4.service',
|
|
:owner => 'root',
|
|
:group => 'root',
|
|
})
|
|
is_expected.to contain_file('systemd-override') \
|
|
.with_content(/.include \/usr\/lib\/systemd\/system\/postgresql-9.4.service/)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'on Fedora 21' do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:operatingsystem => 'Fedora',
|
|
:operatingsystemrelease => '21',
|
|
:concat_basedir => tmpfilename('server'),
|
|
:kernel => 'Linux',
|
|
:id => 'root',
|
|
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
|
}
|
|
end
|
|
it 'should have the correct systemd-override file' do
|
|
is_expected.to contain_file('systemd-override').with ({
|
|
:ensure => 'present',
|
|
:path => '/etc/systemd/system/postgresql.service',
|
|
:owner => 'root',
|
|
:group => 'root',
|
|
})
|
|
is_expected.to contain_file('systemd-override') \
|
|
.with_content(/.include \/lib\/systemd\/system\/postgresql.service/)
|
|
end
|
|
|
|
describe 'with manage_package_repo => true and a version' do
|
|
let (:pre_condition) do
|
|
<<-EOS
|
|
class { 'postgresql::globals':
|
|
manage_package_repo => true,
|
|
version => '9.4',
|
|
}->
|
|
class { 'postgresql::server': }
|
|
EOS
|
|
end
|
|
|
|
it 'should have the correct systemd-override file' do
|
|
is_expected.to contain_file('systemd-override').with ({
|
|
:ensure => 'present',
|
|
:path => '/etc/systemd/system/postgresql-9.4.service',
|
|
:owner => 'root',
|
|
:group => 'root',
|
|
})
|
|
is_expected.to contain_file('systemd-override') \
|
|
.with_content(/.include \/lib\/systemd\/system\/postgresql-9.4.service/)
|
|
end
|
|
end
|
|
end
|
|
end
|