summaryrefslogtreecommitdiff
path: root/glance_store/tests/unit/test_swift_store_utils.py
blob: b7b25f786779b44ced4f78e4dfe48d0f84e5dd8b (plain)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Copyright 2014 OpenStack Foundation
# All Rights Reserved.
#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

import fixtures

from glance_store._drivers.swift import utils as sutils
from glance_store import exceptions
from glance_store.tests import base


class TestSwiftParams(base.StoreBaseTest):

    def setUp(self):
        super(TestSwiftParams, self).setUp()
        conf_file = "glance-swift.conf"
        test_dir = self.useFixture(fixtures.TempDir()).path
        self.swift_config_file = self.copy_data_file(conf_file, test_dir)
        self.config(swift_store_config_file=self.swift_config_file)

    def test_multiple_swift_account_enabled(self):
        self.config(swift_store_config_file="glance-swift.conf")
        self.assertTrue(
            sutils.is_multiple_swift_store_accounts_enabled(self.conf))

    def test_multiple_swift_account_disabled(self):
        self.config(swift_store_config_file=None)
        self.assertFalse(
            sutils.is_multiple_swift_store_accounts_enabled(self.conf))

    def test_swift_config_file_doesnt_exist(self):
        self.config(swift_store_config_file='fake-file.conf')
        self.assertRaises(exceptions.BadStoreConfiguration,
                          sutils.SwiftParams, self.conf)

    def test_swift_config_uses_default_values_multiple_account_disabled(self):
        default_user = 'user_default'
        default_key = 'key_default'
        default_auth_address = 'auth@default.com'
        default_account_reference = 'ref_default'
        conf = {'swift_store_config_file': None,
                'swift_store_user': default_user,
                'swift_store_key': default_key,
                'swift_store_auth_address': default_auth_address,
                'default_swift_reference': default_account_reference}
        self.config(**conf)
        swift_params = sutils.SwiftParams(self.conf).params
        self.assertEqual(1, len(swift_params.keys()))
        self.assertEqual(default_user,
                         swift_params[default_account_reference]['user']
                         )
        self.assertEqual(default_key,
                         swift_params[default_account_reference]['key']
                         )
        self.assertEqual(default_auth_address,
                         swift_params[default_account_reference]
                         ['auth_address']
                         )

    def test_swift_store_config_validates_for_creds_auth_address(self):
        swift_params = sutils.SwiftParams(self.conf).params
        self.assertEqual('tenant:user1',
                         swift_params['ref1']['user']
                         )
        self.assertEqual('key1',
                         swift_params['ref1']['key']
                         )
        self.assertEqual('example.com',
                         swift_params['ref1']['auth_address'])
        self.assertEqual('user2',
                         swift_params['ref2']['user'])
        self.assertEqual('key2',
                         swift_params['ref2']['key'])
        self.assertEqual('http://example.com',
                         swift_params['ref2']['auth_address']
                         )

    def test_swift_store_config_validates_quotes_removal(self):
        swift_params = sutils.SwiftParams(self.conf).params
        self.assertEqual('user3',
                         swift_params['ref3']['user']
                         )
        self.assertEqual('key3',
                         swift_params['ref3']['key']
                         )
        self.assertEqual('http://example.com',
                         swift_params['ref3']['auth_address']
                         )

    def test_swift_store_config_without_domain(self):
        swift_params = sutils.SwiftParams(self.conf).params
        self.assertEqual('default', swift_params['ref1']['project_domain_id'])
        self.assertIsNone(swift_params['ref1']['project_domain_name'])
        self.assertEqual('default', swift_params['ref1']['user_domain_id'])
        self.assertIsNone(swift_params['ref1']['user_domain_name'])

    def test_swift_store_config_with_domain_ids(self):
        swift_params = sutils.SwiftParams(self.conf).params
        self.assertEqual('projdomainid',
                         swift_params['ref4']['project_domain_id'])
        self.assertIsNone(swift_params['ref4']['project_domain_name'])
        self.assertEqual('userdomainid',
                         swift_params['ref4']['user_domain_id'])
        self.assertIsNone(swift_params['ref4']['user_domain_name'])

    def test_swift_store_config_with_domain_names(self):
        swift_params = sutils.SwiftParams(self.conf).params
        self.assertIsNone(swift_params['ref5']['project_domain_id'])
        self.assertEqual('projdomain',
                         swift_params['ref5']['project_domain_name'])
        self.assertIsNone(swift_params['ref5']['user_domain_id'])
        self.assertEqual('userdomain',
                         swift_params['ref5']['user_domain_name'])


class TestSwiftConfigParser(base.StoreBaseTest):

    def setUp(self):
        super(TestSwiftConfigParser, self).setUp()
        self.method = sutils.SwiftConfigParser._process_quotes

    def test_quotes_processor(self):
        self.assertEqual('user', self.method('user'))
        self.assertEqual('user', self.method('"user"'))
        self.assertEqual("user", self.method("'user'"))
        self.assertEqual("user'", self.method("user'"))
        self.assertEqual('user"', self.method('user"'))

    def test_quotes_processor_negative(self):
        negative_values = [
            '\'user"', '"user\'', '\'user', '"user\'',
            "'user", '"user', '"', "'",
        ]
        for value in negative_values:
            self.assertRaises(ValueError, self.method, value)