1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
### Specifying the environment name
If the manifest being tested expects to evaluate the environment name, it can
be specified using `let(:environment)`.
{% highlight ruby %}
let(:environment) { 'production' }
{% endhighlight %}
### Specifying node parameters
Node parameters (or top-scope variables) such as would be provided by an ENC
can be specified as a hash of values using `let(:node_params)`.
{% highlight ruby %}
let(:node_params) { {'hostgroup' => 'web', 'rack' => 'KK04' } }
{% endhighlight %}
These node parameters will be merged into the default node parameters (if set),
with these values taking precedence over the default node parameters in the
event of a conflict.
If have nested RSpec contexts to test the behaviour of different node parameter
values, you can partially override the node parameters by merging the changed
parameters into `super()` in your `let(:node_params)` block.
{% highlight ruby %}
describe 'My::Class' do
let(:node_params) do
{
'some_common_param' => 'value',
'role' => 'default',
}
end
context 'with role => web' do
let(:node_params) do
super().merge({ 'role' => 'web' })
end
it { should compile }
end
end
{% endhighlight %}
### Specifying code to include before
If the manifest being tested relies on some existing state (another class being
included, variables to be set, etc), this can be specified using
`let(:pre_condition)`.
{% highlight ruby %}
let(:pre_condition) { 'include some::other_class' }
{% endhighlight %}
The value may be a string or an array of strings that will be concatenated, and
then be evaluated before the manifest being tested.
### Specifying code to include after
If the manifest being tested depends on being evaluated before another
manifest, this can be specified using `let(:post_condition)`.
{% highlight ruby %}
let(:post_condition) { 'include some::other_class::after' }
{% endhighlight %}
The value may be a string or an array of strings that will be concatenated, and
then be evaluated after the manifest being tested.
|