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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
require 'spec_helper'
# hiera is not supported before 2.7
describe 'test::hiera', :if => Puppet.version.to_f >= 3.0 do
context 'with :hiera_config set' do
let(:hiera_config) { 'spec/fixtures/hiera.yaml' }
it { should contain_notify('foo') }
end
context 'without :hiera_config set' do
it { should contain_notify('not found') }
end
end
describe 'hiera_test', :if => Puppet::Util::Package.versioncmp(Puppet.version, '4.9.0') >= 0 do
before(:each) do
RSpec.configuration.disable_module_hiera = false
RSpec.configuration.use_fixture_spec_hiera = false
RSpec.configuration.fixture_hiera_configs = {}
RSpec.configuration.fallback_to_default_hiera = true
end
context 'without :hiera_config set' do
context 'with module eyaml hiera data enabled' do
it { should raise_error(Puppet::PreformattedError, %r{hiera_eyaml}) }
end
context 'with module eyaml hiera data disabled' do
before(:each) { RSpec.configuration.disable_module_hiera = true }
it { should raise_error(Puppet::ParseError) }
end
context 'with relative fixture hiera config path' do
before(:each) { RSpec.configuration.fixture_hiera_configs = {'hiera_test' => 'spec/module_hiera.yaml'} }
it { should contain_notify('module') }
end
context 'with absolute fixture hiera config path' do
before(:each) do
RSpec.configuration.fixture_hiera_configs = {
'hiera_test' => File.join(__FILE__, '../../fixtures/modules/hiera_test/spec/module_hiera.yaml')
}
end
it { should contain_notify('module') }
end
context 'with invalid fixture hiera config path' do
before(:each) { RSpec.configuration.fixture_hiera_configs = {'hiera_test' => 'non_existent.yaml'} }
it { should raise_error(Puppet::ParseError) }
end
context 'with :use_fixture_spec_hiera set' do
before(:each) { RSpec.configuration.use_fixture_spec_hiera = true }
it { should contain_notify('spec') }
end
end
context 'with :hiera_config set' do
let(:hiera_config) { 'spec/fixtures/hiera.yaml' }
context 'with module eyaml hiera data enabled' do
it { should raise_error(Puppet::PreformattedError, %r{hiera_eyaml}) }
end
context 'with module eyaml hiera data disabled' do
before(:each) { RSpec.configuration.disable_module_hiera = true }
it { should contain_notify('global') }
end
context 'with relative fixture hiera config path' do
before(:each) { RSpec.configuration.fixture_hiera_configs = {'hiera_test' => 'spec/module_hiera.yaml'} }
it { should contain_notify('global') }
end
context 'with absolute fixture hiera config path' do
before(:each) do
RSpec.configuration.fixture_hiera_configs = {
'hiera_test' => File.join(__FILE__, '../../fixtures/modules/hiera_test/spec/module_hiera.yaml')
}
end
it { should contain_notify('global') }
end
context 'with invalid fixture hiera config path' do
before(:each) { RSpec.configuration.fixture_hiera_configs = {'hiera_test' => 'non_existent.yaml'} }
it { should contain_notify('global') }
end
context 'with :use_fixture_spec_hiera set' do
before(:each) { RSpec.configuration.use_fixture_spec_hiera = true }
it { should contain_notify('global') }
end
end
end
describe 'hiera_test2', :if => Puppet::Util::Package.versioncmp(Puppet.version, '4.9.0') >= 0 do
before(:each) do
RSpec.configuration.disable_module_hiera = false
RSpec.configuration.use_fixture_spec_hiera = false
RSpec.configuration.fixture_hiera_configs = {}
RSpec.configuration.fallback_to_default_hiera = true
end
context 'without :hiera_config set' do
context 'with module-layer hiera enabled' do
it { should contain_notify('module') }
end
context 'with module-layer hiera disabled' do
before(:each) { RSpec.configuration.disable_module_hiera = true }
it { should raise_error(Puppet::ParseError) }
end
context 'with :use_fixture_spec_hiera set' do
before(:each) { RSpec.configuration.use_fixture_spec_hiera = true }
context 'with missing spec hiera.yaml and hiera fallback enabled' do
it { should contain_notify('module') }
end
context 'with missing spec hiera.yaml and hiera fallback disabled' do
before(:each) { RSpec.configuration.fallback_to_default_hiera = false }
it { should raise_error(Puppet::ParseError) }
end
end
end
context 'with :hiera_config set' do
let(:hiera_config) { 'spec/fixtures/hiera.yaml' }
context 'with module-layer hiera enabled' do
it { should contain_notify('global') }
end
context 'with module-layer hiera disabled' do
before(:each) { RSpec.configuration.disable_module_hiera = true }
it { should contain_notify('global') }
end
context 'with :use_fixture_spec_hiera set' do
before(:each) { RSpec.configuration.use_fixture_spec_hiera = true }
context 'with missing spec hiera.yaml and hiera fallback enabled' do
it { should contain_notify('global') }
end
context 'with missing spec hiera.yaml and hiera fallback disabled' do
before(:each) { RSpec.configuration.fallback_to_default_hiera = false }
it { should contain_notify('global') }
end
end
end
end
|