puppet-murano/spec/shared_examples.rb
Alexey Deryugin 0860bc269d Implementation of api and engine classes
Murano API & Engine services provide the core of Murano.
This patch adds implementation of murano service manifests:
 * murano::api installs and manages Murano API service
   which processes user requests;
 * murano::engine installs and manages Murano Engine service
   which handles background request processing.

Change-Id: I6430544eda4fc6b1b16aa53ff9e6c127c62a2e5d
Depends-On: If34c3b12afb2fe7a64b24a8660d6e8d1806bb8fd
2015-09-25 15:12:12 +00:00

55 lines
1.5 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 murano 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]}]"]
})
is_expected.to contain_service(service[:name]).with({
:name => service[:service_name],
:ensure => 'running',
: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]}]"]
})
is_expected.to contain_service(service[:name]).with({
:name => service[:service_name],
:ensure => 'running',
: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