diff options
author | Maryam Tahhan <maryam.tahhan@intel.com> | 2017-11-15 10:19:45 +0000 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2017-11-15 10:21:25 +0000 |
commit | cea670d32822b35502898c46a5a4b20b7363d46d (patch) | |
tree | 56d6a6d87efda583cea03e3fbea1dab7520d6c5f /puppet-barometer/spec/classes/barometer_keystone_auth_spec.rb | |
parent | ecf1ba1c5000718d1f0d90270af33039b488c835 (diff) |
puppet-barometer: add puppet module to barometer
Port puppet module from https://github.com/johnhinman/puppet-barometer to
barometer.
Change-Id: I48499382307a184a34591a7202c439cd7c341c39
Signed-off-by: jhinman1 <john.hinman@intel.com>
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'puppet-barometer/spec/classes/barometer_keystone_auth_spec.rb')
-rw-r--r-- | puppet-barometer/spec/classes/barometer_keystone_auth_spec.rb | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/puppet-barometer/spec/classes/barometer_keystone_auth_spec.rb b/puppet-barometer/spec/classes/barometer_keystone_auth_spec.rb new file mode 100644 index 00000000..b54849d6 --- /dev/null +++ b/puppet-barometer/spec/classes/barometer_keystone_auth_spec.rb @@ -0,0 +1,141 @@ +# +# Unit tests for barometer::keystone::auth +# + +require 'spec_helper' + +describe 'barometer::keystone::auth' do + shared_examples_for 'barometer-keystone-auth' do + context 'with default class parameters' do + let :params do + { :password => 'barometer_password', + :tenant => 'foobar' } + end + + it { is_expected.to contain_keystone_user('barometer').with( + :ensure => 'present', + :password => 'barometer_password', + ) } + + it { is_expected.to contain_keystone_user_role('barometer@foobar').with( + :ensure => 'present', + :roles => ['admin'] + )} + + it { is_expected.to contain_keystone_service('barometer::nfv-orchestration').with( + :ensure => 'present', + :description => 'barometer NFV orchestration Service' + ) } + + it { is_expected.to contain_keystone_endpoint('RegionOne/barometer::nfv-orchestration').with( + :ensure => 'present', + :public_url => 'http://127.0.0.1:9890', + :admin_url => 'http://127.0.0.1:9890', + :internal_url => 'http://127.0.0.1:9890', + ) } + end + + context 'when overriding URL parameters' do + let :params do + { :password => 'barometer_password', + :public_url => 'https://10.10.10.10:80', + :internal_url => 'http://10.10.10.11:81', + :admin_url => 'http://10.10.10.12:81', } + end + + it { is_expected.to contain_keystone_endpoint('RegionOne/barometer::nfv-orchestration').with( + :ensure => 'present', + :public_url => 'https://10.10.10.10:80', + :internal_url => 'http://10.10.10.11:81', + :admin_url => 'http://10.10.10.12:81', + ) } + end + + context 'when overriding auth name' do + let :params do + { :password => 'foo', + :auth_name => 'barometery' } + end + + it { is_expected.to contain_keystone_user('barometery') } + it { is_expected.to contain_keystone_user_role('barometery@services') } + it { is_expected.to contain_keystone_service('barometer::nfv-orchestration') } + it { is_expected.to contain_keystone_endpoint('RegionOne/barometer::nfv-orchestration') } + end + + context 'when overriding service name' do + let :params do + { :service_name => 'barometer_service', + :auth_name => 'barometer', + :password => 'barometer_password' } + end + + it { is_expected.to contain_keystone_user('barometer') } + it { is_expected.to contain_keystone_user_role('barometer@services') } + it { is_expected.to contain_keystone_service('barometer_service::nfv-orchestration') } + it { is_expected.to contain_keystone_endpoint('RegionOne/barometer_service::nfv-orchestration') } + end + + context 'when disabling user configuration' do + + let :params do + { + :password => 'barometer_password', + :configure_user => false + } + end + + it { is_expected.not_to contain_keystone_user('barometer') } + it { is_expected.to contain_keystone_user_role('barometer@services') } + it { is_expected.to contain_keystone_service('barometer::nfv-orchestration').with( + :ensure => 'present', + :description => 'barometer NFV orchestration Service' + ) } + + end + + context 'when disabling user and user role configuration' do + + let :params do + { + :password => 'barometer_password', + :configure_user => false, + :configure_user_role => false + } + end + + it { is_expected.not_to contain_keystone_user('barometer') } + it { is_expected.not_to contain_keystone_user_role('barometer@services') } + it { is_expected.to contain_keystone_service('barometer::nfv-orchestration').with( + :ensure => 'present', + :description => 'barometer NFV orchestration Service' + ) } + + end + + context 'when using ensure absent' do + + let :params do + { + :password => 'barometer_password', + :ensure => 'absent' + } + end + + it { is_expected.to contain_keystone__resource__service_identity('barometer').with_ensure('absent') } + + 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_behaves_like 'barometer-keystone-auth' + end + end +end |