File: swift_proxy_swauth_spec.rb

package info (click to toggle)
puppet-module-swift 25.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: ruby: 9,593; python: 38; sh: 10; makefile: 10
file content (39 lines) | stat: -rw-r--r-- 1,354 bytes parent folder | download | duplicates (4)
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
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