File: test_floating_ip_nova.py

package info (click to toggle)
python-openstacksdk 4.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,352 kB
  • sloc: python: 122,960; sh: 153; makefile: 23
file content (440 lines) | stat: -rw-r--r-- 13,612 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
#
# 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.

"""
test_floating_ip_nova
----------------------------------

Tests Floating IP resource methods for nova-network
"""

from openstack.tests import fakes
from openstack.tests.unit import base


def get_fake_has_service(has_service):
    def fake_has_service(s):
        if s == 'network':
            return False
        return has_service(s)

    return fake_has_service


class TestFloatingIP(base.TestCase):
    mock_floating_ip_list_rep = [
        {
            'fixed_ip': None,
            'id': 1,
            'instance_id': None,
            'ip': '203.0.113.1',
            'pool': 'nova',
        },
        {
            'fixed_ip': None,
            'id': 2,
            'instance_id': None,
            'ip': '203.0.113.2',
            'pool': 'nova',
        },
        {
            'fixed_ip': '192.0.2.3',
            'id': 29,
            'instance_id': 'myself',
            'ip': '198.51.100.29',
            'pool': 'black_hole',
        },
    ]

    mock_floating_ip_pools = [
        {'id': 'pool1_id', 'name': 'nova'},
        {'id': 'pool2_id', 'name': 'pool2'},
    ]

    def assertAreInstances(self, elements, elem_type):
        for e in elements:
            self.assertIsInstance(e, elem_type)

    def setUp(self):
        super().setUp()

        self.fake_server = fakes.make_fake_server(
            'server-id',
            '',
            'ACTIVE',
            addresses={
                'test_pnztt_net': [
                    {
                        'OS-EXT-IPS:type': 'fixed',
                        'addr': '192.0.2.129',
                        'version': 4,
                        'OS-EXT-IPS-MAC:mac_addr': 'fa:16:3e:ae:7d:42',
                    }
                ]
            },
        )

        self.cloud.has_service = get_fake_has_service(self.cloud.has_service)

    def test_list_floating_ips(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
            ]
        )
        floating_ips = self.cloud.list_floating_ips()

        self.assertIsInstance(floating_ips, list)
        self.assertEqual(3, len(floating_ips))
        self.assertAreInstances(floating_ips, dict)

        self.assert_calls()

    def test_list_floating_ips_with_filters(self):
        self.assertRaisesRegex(
            ValueError,
            "nova-network doesn't support server-side floating IPs filtering. "
            "Use the 'search_floating_ips' method instead",
            self.cloud.list_floating_ips,
            filters={'Foo': 42},
        )

    def test_search_floating_ips(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
            ]
        )

        floating_ips = self.cloud.search_floating_ips(
            filters={'attached': False}
        )

        self.assertIsInstance(floating_ips, list)
        self.assertEqual(2, len(floating_ips))
        self.assertAreInstances(floating_ips, dict)

        self.assert_calls()

    def test_get_floating_ip(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
            ]
        )

        floating_ip = self.cloud.get_floating_ip(id='29')

        self.assertIsInstance(floating_ip, dict)
        self.assertEqual('198.51.100.29', floating_ip['floating_ip_address'])

        self.assert_calls()

    def test_get_floating_ip_not_found(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
            ]
        )

        floating_ip = self.cloud.get_floating_ip(id='666')

        self.assertIsNone(floating_ip)

        self.assert_calls()

    def test_get_floating_ip_by_id(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips', '1']
                    ),
                    json={'floating_ip': self.mock_floating_ip_list_rep[0]},
                ),
            ]
        )

        floating_ip = self.cloud.get_floating_ip_by_id(id='1')

        self.assertIsInstance(floating_ip, dict)
        self.assertEqual('203.0.113.1', floating_ip['floating_ip_address'])
        self.assert_calls()

    def test_create_floating_ip(self):
        self.register_uris(
            [
                dict(
                    method='POST',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ip': self.mock_floating_ip_list_rep[1]},
                    validate=dict(json={'pool': 'nova'}),
                ),
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips', '2']
                    ),
                    json={'floating_ip': self.mock_floating_ip_list_rep[1]},
                ),
            ]
        )

        self.cloud.create_floating_ip(network='nova')

        self.assert_calls()

    def test_available_floating_ip_existing(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep[:1]},
                ),
            ]
        )

        ip = self.cloud.available_floating_ip(network='nova')

        self.assertEqual(
            self.mock_floating_ip_list_rep[0]['ip'], ip['floating_ip_address']
        )
        self.assert_calls()

    def test_available_floating_ip_new(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': []},
                ),
                dict(
                    method='POST',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ip': self.mock_floating_ip_list_rep[0]},
                    validate=dict(json={'pool': 'nova'}),
                ),
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips', '1']
                    ),
                    json={'floating_ip': self.mock_floating_ip_list_rep[0]},
                ),
            ]
        )

        ip = self.cloud.available_floating_ip(network='nova')

        self.assertEqual(
            self.mock_floating_ip_list_rep[0]['ip'], ip['floating_ip_address']
        )
        self.assert_calls()

    def test_delete_floating_ip_existing(self):
        self.register_uris(
            [
                dict(
                    method='DELETE',
                    uri=self.get_mock_url(
                        'compute',
                        append=['os-floating-ips', 'a-wild-id-appears'],
                    ),
                ),
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': []},
                ),
            ]
        )

        ret = self.cloud.delete_floating_ip(floating_ip_id='a-wild-id-appears')

        self.assertTrue(ret)
        self.assert_calls()

    def test_delete_floating_ip_not_found(self):
        self.register_uris(
            [
                dict(
                    method='DELETE',
                    uri=self.get_mock_url(
                        'compute',
                        append=['os-floating-ips', 'a-wild-id-appears'],
                    ),
                    status_code=404,
                ),
            ]
        )

        ret = self.cloud.delete_floating_ip(floating_ip_id='a-wild-id-appears')

        self.assertFalse(ret)
        self.assert_calls()

    def test_attach_ip_to_server(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
                dict(
                    method='POST',
                    uri=self.get_mock_url(
                        'compute',
                        append=['servers', self.fake_server['id'], 'action'],
                    ),
                    validate=dict(
                        json={
                            "addFloatingIp": {
                                "address": "203.0.113.1",
                                "fixed_address": "192.0.2.129",
                            }
                        }
                    ),
                ),
            ]
        )

        self.cloud._attach_ip_to_server(
            server=self.fake_server,
            floating_ip=self.cloud._normalize_floating_ip(
                self.mock_floating_ip_list_rep[0]
            ),
            fixed_address='192.0.2.129',
        )

        self.assert_calls()

    def test_detach_ip_from_server(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
                dict(
                    method='POST',
                    uri=self.get_mock_url(
                        'compute',
                        append=['servers', self.fake_server['id'], 'action'],
                    ),
                    validate=dict(
                        json={
                            "removeFloatingIp": {
                                "address": "203.0.113.1",
                            }
                        }
                    ),
                ),
            ]
        )

        self.cloud.detach_ip_from_server(
            server_id='server-id', floating_ip_id=1
        )
        self.assert_calls()

    def test_add_ip_from_pool(self):
        self.register_uris(
            [
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
                dict(
                    method='GET',
                    uri=self.get_mock_url(
                        'compute', append=['os-floating-ips']
                    ),
                    json={'floating_ips': self.mock_floating_ip_list_rep},
                ),
                dict(
                    method='POST',
                    uri=self.get_mock_url(
                        'compute',
                        append=['servers', self.fake_server['id'], 'action'],
                    ),
                    validate=dict(
                        json={
                            "addFloatingIp": {
                                "address": "203.0.113.1",
                                "fixed_address": "192.0.2.129",
                            }
                        }
                    ),
                ),
            ]
        )

        server = self.cloud._add_ip_from_pool(
            server=self.fake_server,
            network='nova',
            fixed_address='192.0.2.129',
        )

        self.assertEqual(server, self.fake_server)
        self.assert_calls()

    def test_cleanup_floating_ips(self):
        # This should not call anything because it's unsafe on nova.
        self.assertFalse(self.cloud.delete_unattached_floating_ips())