File: manila_keystone_auth_spec.rb

package info (click to toggle)
puppet-module-manila 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,852 kB
  • sloc: ruby: 5,060; python: 33; makefile: 10; sh: 10
file content (128 lines) | stat: -rw-r--r-- 5,258 bytes parent folder | download
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
#
# Unit tests for manila::keystone::auth
#

require 'spec_helper'

describe 'manila::keystone::auth' do
  shared_examples_for 'manila::keystone::auth' do
    context 'with default class parameters' do
      let :params do
        { :password => 'manila_password' }
      end

      it { is_expected.to contain_keystone__resource__service_identity('manila').with(
        :configure_user      => true,
        :configure_user_role => true,
        :configure_endpoint  => true,
        :configure_service   => true,
        :service_name        => 'manila',
        :service_type        => 'share',
        :service_description => 'Manila Service',
        :region              => 'RegionOne',
        :auth_name           => 'manila',
        :password            => 'manila_password',
        :email               => 'manila@localhost',
        :tenant              => 'services',
        :roles               => ['admin', 'service'],
        :system_scope        => 'all',
        :system_roles        => [],
        :public_url          => 'http://127.0.0.1:8786/v1/%(tenant_id)s',
        :internal_url        => 'http://127.0.0.1:8786/v1/%(tenant_id)s',
        :admin_url           => 'http://127.0.0.1:8786/v1/%(tenant_id)s',
      ) }

      it { is_expected.to contain_keystone__resource__service_identity('manilav2').with(
        :configure_user      => false,
        :configure_user_role => false,
        :configure_endpoint  => true,
        :configure_service   => true,
        :service_name        => 'manilav2',
        :service_type        => 'sharev2',
        :service_description => 'Manila Service v2',
        :region              => 'RegionOne',
        :public_url          => 'http://127.0.0.1:8786/v2',
        :internal_url        => 'http://127.0.0.1:8786/v2',
        :admin_url           => 'http://127.0.0.1:8786/v2',
      ) }
    end

    context 'when overriding parameters' do
      let :params do
        { :password               => 'manila_password',
          :auth_name              => 'alt_manila',
          :email                  => 'alt_manila@alt_localhost',
          :tenant                 => 'alt_service',
          :roles                  => ['admin'],
          :system_scope           => 'alt_all',
          :system_roles           => ['admin', 'member', 'reader'],
          :configure_endpoint     => false,
          :configure_user         => false,
          :configure_user_role    => false,
          :configure_service      => false,
          :service_description    => 'Alternative Manila Service',
          :service_name           => 'alt_service',
          :service_type           => 'alt_share',
          :region                 => 'RegionTwo',
          :public_url             => 'https://10.10.10.10:80',
          :internal_url           => 'http://10.10.10.11:81',
          :admin_url              => 'http://10.10.10.12:81',
          :configure_endpoint_v2  => false,
          :configure_service_v2   => false,
          :service_description_v2 => 'Alternative Manila Service v2',
          :service_name_v2        => 'alt_servicev2',
          :service_type_v2        => 'alt_sharev2',
          :public_url_v2          => 'https://10.10.10.20:80',
          :internal_url_v2        => 'http://10.10.10.21:81',
          :admin_url_v2           => 'http://10.10.10.22:81' }
      end

      it { is_expected.to contain_keystone__resource__service_identity('manila').with(
        :configure_user      => false,
        :configure_user_role => false,
        :configure_endpoint  => false,
        :configure_service   => false,
        :service_name        => 'alt_service',
        :service_type        => 'alt_share',
        :service_description => 'Alternative Manila Service',
        :region              => 'RegionTwo',
        :auth_name           => 'alt_manila',
        :password            => 'manila_password',
        :email               => 'alt_manila@alt_localhost',
        :tenant              => 'alt_service',
        :roles               => ['admin'],
        :system_scope        => 'alt_all',
        :system_roles        => ['admin', 'member', 'reader'],
        :public_url          => 'https://10.10.10.10:80',
        :internal_url        => 'http://10.10.10.11:81',
        :admin_url           => 'http://10.10.10.12:81',
      ) }

      it { is_expected.to contain_keystone__resource__service_identity('manilav2').with(
        :configure_user      => false,
        :configure_user_role => false,
        :configure_endpoint  => false,
        :configure_service   => false,
        :service_name        => 'alt_servicev2',
        :service_type        => 'alt_sharev2',
        :service_description => 'Alternative Manila Service v2',
        :region              => 'RegionTwo',
        :public_url          => 'https://10.10.10.20:80',
        :internal_url        => 'http://10.10.10.21:81',
        :admin_url           => 'http://10.10.10.22:81',
      ) }
    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 'manila::keystone::auth'
    end
  end
end