3cf985f57e
The parameter name used to enforce package state is inconsistent across manifests and modules. I settle on package_ensure since it's already widely used. Change-Id: I887e924d184d9b25c33b5fe617d82f170d0cee34 Closes-Bug: #1668732
61 lines
1.8 KiB
Ruby
61 lines
1.8 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 trove 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]}]",
|
|
:tag => ['openstack', 'trove-package'],
|
|
})
|
|
is_expected.to contain_service(service[:name]).with({
|
|
:name => service[:service_name],
|
|
:ensure => 'stopped',
|
|
:hasstatus => true,
|
|
:enable => false,
|
|
:tag => 'trove-service',
|
|
})
|
|
end
|
|
end
|
|
|
|
context 'with overridden parameters' do
|
|
let :params do
|
|
{ :enabled => true,
|
|
:package_ensure => '2014.1-1' }
|
|
end
|
|
|
|
it 'installs package and service' do
|
|
is_expected.to contain_package(service[:name]).with({
|
|
:name => service[:package_name],
|
|
:ensure => '2014.1-1',
|
|
:notify => "Service[#{service[:name]}]",
|
|
:tag => ['openstack', 'trove-package'],
|
|
})
|
|
is_expected.to contain_service(service[:name]).with({
|
|
:name => service[:service_name],
|
|
:ensure => 'running',
|
|
:hasstatus => true,
|
|
:enable => true,
|
|
:tag => 'trove-service',
|
|
})
|
|
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
|