Use anchor to require necessary packages/services

... so that correct packages and services are required according
without re-defining them in resource implementations.

Change-Id: I7e6a32128c0d652b7d69d676f4dfe4363f808c9b
This commit is contained in:
Takashi Kajinami 2020-05-04 02:44:30 +09:00
parent b43e5ee471
commit 019158284f
3 changed files with 15 additions and 4 deletions

View File

@ -46,8 +46,8 @@ Puppet::Type.newtype(:mistral_config) do
defaultto('<SERVICE DEFAULT>')
end
autorequire(:package) do
'mistral-common'
autorequire(:anchor) do
['mistral::install::end']
end
end

View File

@ -57,7 +57,7 @@ Puppet::Type.newtype(:mistral_workflow) do
end
# Require the Mistral API service to be running
autorequire(:service) do
['mistral-api']
autorequire(:anchor) do
['mistral::service::end']
end
end

View File

@ -49,4 +49,15 @@ describe 'Puppet::Type.type(:mistral_config)' do
@mistral_config[:ensure] = :latest
}.to raise_error(Puppet::Error, /Invalid value/)
end
it 'should autorequire the package that install the file' do
catalog = Puppet::Resource::Catalog.new
anchor = Puppet::Type.type(:anchor).new(:name => 'mistral::install::end')
catalog.add_resource anchor, @mistral_config
dependency = @mistral_config.autorequire
expect(dependency.size).to eq(1)
expect(dependency[0].target).to eq(@mistral_config)
expect(dependency[0].source).to eq(anchor)
end
end