puppet-sahara/spec/shared_examples.rb
Yanis Guenane 038e352256 Creation of sahara::db::sync
In order to standardize the way dbsync are run across our modules,
we create a new class sahara::db::sync.
This class will be included if sync_db is enabled.

By making this transition the sahara::db::sync class
can be returned by the ENC.

A use case would be in an highly available environment, with 3 galera
nodes, include sahara on every node with sync_db set to false
and have the ENC return sahara::db::sync just for one node.

Change-Id: Ibdf6f86e546868b4fcfa0f530287e712934808fd
2015-08-04 14:52:18 +02:00

57 lines
1.6 KiB
Ruby

shared_examples_for "a Puppet::Error" do |description|
it "with message matching #{description.inspect}" do
expect { is_expected.to have_class_count(1) }.to raise_error(Puppet::Error, description)
end
end
shared_examples 'generic sahara service' do |service|
context 'with default parameters' do
it 'installs package and service' do
is_expected.to contain_package(service[:name]).with({
:name => service[:package_name],
:ensure => 'present',
:notify => ["Service[#{service[:name]}]", 'Exec[sahara-dbmanage]']
})
is_expected.to contain_service(service[:name]).with({
:name => service[:service_name],
:ensure => 'running',
:hasstatus => true,
:enable => true
})
end
end
context 'with overridden parameters' do
let :params do
{ :enabled => true,
:package_ensure => '2014.2-1' }
end
it 'installs package and service' do
is_expected.to contain_package(service[:name]).with({
:name => service[:package_name],
:ensure => '2014.2-1',
:notify => ["Service[#{service[:name]}]", 'Exec[sahara-dbmanage]']
})
is_expected.to contain_service(service[:name]).with({
:name => service[:service_name],
:ensure => 'running',
:hasstatus => true,
:enable => true
})
end
end
context 'while not managing service state' do
let :params do
{ :enabled => false,
:manage_service => false }
end
it 'does not control service state' do
is_expected.to contain_service(service[:name]).without_ensure
end
end
end