e7d670b13a
Moves all spec tests over to using rspec-puppet-facts and runs the tests for all our supported operating systems. Change-Id: Ie2d60acac835affaf46a5276c9755640a723bca4
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::swauth' do
|
|
shared_examples 'swift::proxy::swauth' do
|
|
it { is_expected.to contain_package('python-swauth').with_ensure('present') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:swauth/use').with_value('egg:swauth#swauth') }
|
|
|
|
describe 'with defaults' do
|
|
it { is_expected.to contain_swift_proxy_config('filter:swauth/default_swift_cluster').with_value('local#127.0.0.1') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:swauth/super_admin_key').with_value('swauthkey') }
|
|
end
|
|
|
|
describe 'with overridden parameters' do
|
|
let :params do
|
|
{:swauth_endpoint => '10.0.0.1',
|
|
:swauth_super_admin_key => 'foo',
|
|
:package_ensure => 'latest' }
|
|
end
|
|
|
|
it { is_expected.to contain_swift_proxy_config('filter:swauth/default_swift_cluster').with_value('local#10.0.0.1') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:swauth/super_admin_key').with_value('foo') }
|
|
|
|
it { is_expected.to contain_package('python-swauth').with_ensure('latest') }
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge(OSDefaults.get_facts())
|
|
end
|
|
|
|
it_configures 'swift::proxy::swauth'
|
|
end
|
|
end
|
|
end
|
|
|