2012-04-22 12:11:27 -07:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'swift::proxy::keystone' do
|
|
|
|
|
2012-05-08 15:51:51 -07:00
|
|
|
let :facts do
|
2014-08-12 16:59:04 +02:00
|
|
|
{}
|
2012-05-08 15:51:51 -07:00
|
|
|
end
|
|
|
|
|
2012-04-22 12:11:27 -07:00
|
|
|
let :fragment_file do
|
|
|
|
'/var/lib/puppet/concat/_etc_swift_proxy-server.conf/fragments/79_swift_keystone'
|
|
|
|
end
|
|
|
|
|
|
|
|
let :pre_condition do
|
2013-10-29 22:56:31 -04:00
|
|
|
'
|
|
|
|
include concat::setup
|
|
|
|
concat { "/etc/swift/proxy-server.conf": }
|
|
|
|
'
|
2012-04-22 12:11:27 -07:00
|
|
|
end
|
|
|
|
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/[filter:keystone]/) }
|
2012-04-22 12:11:27 -07:00
|
|
|
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/use = egg:swift#keystoneauth/) }
|
2012-04-22 12:11:27 -07:00
|
|
|
|
|
|
|
describe 'with defaults' do
|
|
|
|
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/operator_roles = admin, SwiftOperator/) }
|
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/is_admin = true/) }
|
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/reseller_prefix = AUTH_/) }
|
2012-04-22 12:11:27 -07:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with parameter overrides' do
|
|
|
|
|
|
|
|
let :params do
|
|
|
|
{
|
2014-09-05 18:42:04 -04:00
|
|
|
:operator_roles => 'foo',
|
|
|
|
:is_admin => 'false',
|
|
|
|
:reseller_prefix => 'SWIFT_'
|
2012-04-22 12:11:27 -07:00
|
|
|
}
|
|
|
|
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/operator_roles = foo/) }
|
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/is_admin = false/) }
|
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/reseller_prefix = SWIFT_/) }
|
2012-04-22 12:11:27 -07:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|