20e0e07090
As far as i know there's no other puppet-dsl-like way to get parameter of defined resource, so that's why i implemented getparam function, which takes resource reference and parameter name and returns parameter value. Here's another example why this function is really useful: define config($path, $config_param1, $config_param2) { } define example_resource($config) { $path = getparam($config, "path") notice("Path is $path") } define example_resource2($example_resource, $config = getparam($example_resource, "config")) { $config_param1 = getparam($config, "config_param1") notice("Config parameter is $config_param1") } define example_resource3($example_resource, $config = getparam($example_resource, "config")) { $config_param2 = getparam($config, "config_param2") notice("Config parameter is $config_param2") } class test_getparam { config { "config_instance": path => "/some/config/path", config_param1 => "someconfigtext1", config_param2 => "someconfigtext2", } example_resource { "example_resource_instance": config => Config["config_instance"] } example_resource2 { "example_resource_instance": example_resource => Example_resource["example_resource_instance"] } example_resource3 { "example_resource_instance": example_resource => Example_resource2["example_resource_instance"] } } class { "test_getparam": }
34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
#! /usr/bin/env ruby -S rspec
|
|
require 'spec_helper'
|
|
|
|
require 'rspec-puppet'
|
|
describe 'getparam' do
|
|
describe 'when a resource is not specified' do
|
|
it do
|
|
should run.with_params().and_raise_error(ArgumentError)
|
|
should run.with_params('User[dan]').and_raise_error(ArgumentError)
|
|
should run.with_params('User[dan]', {}).and_raise_error(ArgumentError)
|
|
should run.with_params('User[dan]', '').and_return('')
|
|
end
|
|
end
|
|
describe 'when compared against a resource with no params' do
|
|
let :pre_condition do
|
|
'user { "dan": }'
|
|
end
|
|
it do
|
|
should run.with_params('User[dan]', 'shell').and_return('')
|
|
end
|
|
end
|
|
|
|
describe 'when compared against a resource with params' do
|
|
let :pre_condition do
|
|
'user { "dan": ensure => present, shell => "/bin/sh", managehome => false}'
|
|
end
|
|
it do
|
|
should run.with_params('User[dan]', 'shell').and_return('/bin/sh')
|
|
should run.with_params('User[dan]', '').and_return('')
|
|
should run.with_params('User[dan]', 'ensure').and_return('present')
|
|
should run.with_params('User[dan]', 'managehome').and_return(false)
|
|
end
|
|
end
|
|
end
|