summaryrefslogtreecommitdiff
path: root/designate/tests/unit/backend/test_akamai_v2.py
blob: 4725ff7033a44520a2f688fc10b73a688b46f22a (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
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
# Copyright 2019 Cloudification GmbH
#
# Author: Sergey Kraynev <contact@cloudification.io>
#
# 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 json
from unittest import mock

import oslotest.base
import requests

from designate.backend import impl_akamai_v2 as akamai
from designate import context
from designate import exceptions
from designate import objects
from designate.tests import fixtures


class AkamaiBackendTestCase(oslotest.base.BaseTestCase):
    def setUp(self):
        super(AkamaiBackendTestCase, self).setUp()

        self.admin_context = mock.Mock()
        mock.patch.object(
            context.DesignateContext, 'get_admin_context',
            return_value=self.admin_context).start()

        self.zone = objects.Zone(
            id='cca7908b-dad4-4c50-adba-fb67d4c556e8',
            name='example.com.',
            email='example@example.com'
        )
        self.target = {
            'id': '4588652b-50e7-46b9-b688-a9bad40a873e',
            'type': 'akamai_v2',
            'masters': [
                {'host': '192.168.1.1', 'port': 53},
                {'host': '192.168.1.2', 'port': 35}
            ],
            'options': [
                {'key': 'host', 'value': '192.168.2.3'},
                {'key': 'port', 'value': '53'},
                {'key': 'akamai_client_secret', 'value': 'client_secret'},
                {'key': 'akamai_host', 'value': 'host_value'},
                {'key': 'akamai_access_token', 'value': 'access_token'},
                {'key': 'akamai_client_token', 'value': 'client_token'},
                {'key': 'akamai_contract_id', 'value': 'G-XYW'},
                {'key': 'akamai_gid', 'value': '777'}
            ],
        }

    def gen_response(self, status_code, reason, json_data=None):
        response = requests.models.Response()
        response.status_code = status_code
        response.reason = reason
        response._content = json.dumps(json_data or {}).encode('utf-8')
        return response

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_create_zone_missed_contract_id(self, mock_post, mock_auth):
        self.target['options'].remove(
            {'key': 'akamai_contract_id', 'value': 'G-XYW'})
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(
            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        with fixtures.random_seed(0):
            self.assertRaisesRegex(
                exceptions.Backend,
                'contractId is required for zone creation',
                backend.create_zone, self.admin_context, self.zone)

        mock_post.assert_not_called()

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_create_zone(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(
            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        with fixtures.random_seed(0):
            backend.create_zone(self.admin_context, self.zone)

        project_id = self.admin_context.project_id or self.zone.tenant_id
        mock_post.assert_called_once_with(
            json={
                'comment': 'Created by Designate for Tenant %s' % project_id,
                'masters': ['192.168.1.1', '192.168.1.2'],
                'type': 'secondary', 'zone': 'example.com.'
            },
            params={
                'gid': '777',
                'contractId': 'G-XYW'
            },
            url='https://host_value/config-dns/v2/zones'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_create_zone_duplicate_zone(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(
            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.return_value = self.gen_response(409, 'Conflict')

        with fixtures.random_seed(0):
            backend.create_zone(self.admin_context, self.zone)

        project_id = self.admin_context.project_id or self.zone.tenant_id
        mock_post.assert_called_once_with(
            json={
                'comment': 'Created by Designate for Tenant %s' % project_id,
                'masters': ['192.168.1.1', '192.168.1.2'],
                'type': 'secondary', 'zone': 'example.com.'
            },
            params={
                'gid': '777',
                'contractId': 'G-XYW'
            },
            url='https://host_value/config-dns/v2/zones'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_create_zone_with_tsig_key(self, mock_post, mock_auth):
        self.target['options'].extend([
            {'key': 'tsig_key_name', 'value': 'test_key'},
            {'key': 'tsig_key_algorithm', 'value': 'hmac-sha512'},
            {'key': 'tsig_key_secret', 'value': 'aaaabbbbccc'}
        ])
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(
            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        with fixtures.random_seed(0):
            backend.create_zone(self.admin_context, self.zone)

        project_id = self.admin_context.project_id or self.zone.tenant_id
        mock_post.assert_called_once_with(
            json={
                'comment': 'Created by Designate for Tenant %s' % project_id,
                'masters': ['192.168.1.1', '192.168.1.2'],
                'type': 'secondary',
                'zone': 'example.com.',
                'tsigKey': {
                    'name': 'test_key',
                    'algorithm': 'hmac-sha512',
                    'secret': 'aaaabbbbccc',
                }
            },
            params={
                'gid': '777',
                'contractId': 'G-XYW'
            },
            url='https://host_value/config-dns/v2/zones'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_create_zone_raise_error(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        json_data = {
            'title': 'Missing parameter',
            'detail': 'Missed A option'
        }
        mock_post.return_value = self.gen_response(
            400, 'Bad Request', json_data)

        with fixtures.random_seed(0):
            self.assertRaisesRegex(
                exceptions.Backend,
                'Zone creation failed due to: Missed A option',
                backend.create_zone, self.admin_context, self.zone)

        project_id = self.admin_context.project_id or self.zone.tenant_id
        mock_post.assert_called_once_with(
            json={
                'comment': 'Created by Designate for Tenant %s' % project_id,
                'masters': ['192.168.1.1', '192.168.1.2'],
                'type': 'secondary', 'zone': 'example.com.'
            },
            params={
                'gid': '777',
                'contractId': 'G-XYW'
            },
            url='https://host_value/config-dns/v2/zones'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_force_delete_zone(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.return_value = self.gen_response(200, 'Success')

        with fixtures.random_seed(0):
            backend.delete_zone(self.admin_context, self.zone)

        mock_post.assert_called_once_with(
            json={
                'zones': ['example.com.']
            },
            params={
                'force': True
            },
            url='https://host_value/config-dns/v2/zones/delete-requests'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_force_delete_zone_raise_error(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.return_value = self.gen_response(
            403, 'Bad Request', {'detail': 'Unexpected error'})

        with fixtures.random_seed(0):
            self.assertRaisesRegex(
                exceptions.Backend,
                'Zone deletion failed due to: Unexpected error',
                backend.delete_zone, self.admin_context, self.zone)

        mock_post.assert_called_once_with(
            json={
                'zones': ['example.com.']
            },
            params={
                'force': True
            },
            url='https://host_value/config-dns/v2/zones/delete-requests'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_force_delete_zone_raise_error_404(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.return_value = self.gen_response(
            404, 'Bad Request', {'detail': 'Unexpected error'})

        with fixtures.random_seed(0):
            backend.delete_zone(self.admin_context, self.zone)

        mock_post.assert_called_once_with(
            json={
                'zones': ['example.com.']
            },
            params={
                'force': True
            },
            url='https://host_value/config-dns/v2/zones/delete-requests'
        )

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    @mock.patch.object(akamai.requests.Session, 'get')
    def test_soft_delete_zone(self, mock_get, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.side_effect = [
            # emulate, when Force=True is forbidden
            self.gen_response(403, 'Forbidden'),
            # emulate request, when Force=False
            self.gen_response(200, 'Success', {'requestId': 'nice_id'}),
        ]

        # emulate max 9 failed attempts and 1 success
        mock_get.side_effect = 9 * [
            self.gen_response(200, 'Success', {'isComplete': False})
        ] + [
            self.gen_response(200, 'Success', {'isComplete': True})
        ]

        with fixtures.random_seed(0), \
                mock.patch.object(akamai.time, 'sleep') as mock_sleep:
            mock_sleep.return_value = None
            backend.delete_zone(self.admin_context, self.zone)

        self.assertEqual(10, mock_sleep.call_count)

        url = 'https://host_value/config-dns/v2/zones/delete-requests/nice_id'
        mock_get.assert_has_calls(9 * [mock.call(url=url)])

        mock_post.assert_has_calls([
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': True},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            ),
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': False},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            )
        ])

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    @mock.patch.object(akamai.requests.Session, 'get')
    def test_soft_delete_zone_failed_after_10_attempts(
            self, mock_get, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.side_effect = [
            # emulate, when Force=True is forbidden
            self.gen_response(403, 'Forbidden'),
            # emulate request, when Force=False
            self.gen_response(200, 'Success', {'requestId': 'nice_id'}),
        ]

        # emulate max 10 failed attempts
        mock_get.side_effect = 10 * [
            self.gen_response(200, 'Success', {'isComplete': False})
        ]

        with fixtures.random_seed(0), \
                mock.patch.object(akamai.time, 'sleep') as mock_sleep:
            mock_sleep.return_value = None
            self.assertRaisesRegex(
                exceptions.Backend,
                'Zone was not deleted after 10 attempts',
                backend.delete_zone, self.admin_context, self.zone)

        self.assertEqual(10, mock_sleep.call_count)

        url = 'https://host_value/config-dns/v2/zones/delete-requests/nice_id'
        mock_get.assert_has_calls(10 * [mock.call(url=url)])

        mock_post.assert_has_calls([
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': True},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            ),
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': False},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            )
        ])

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_soft_delete_zone_raise_error(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.side_effect = [
            # emulate, when Force=True is forbidden
            self.gen_response(403, 'Forbidden'),
            # emulate request, when Force=False
            self.gen_response(409, 'Conflict', {'detail': 'Intenal Error'})
        ]

        with fixtures.random_seed(0):
            self.assertRaisesRegex(
                exceptions.Backend,
                'Zone deletion failed due to: Intenal Error',
                backend.delete_zone, self.admin_context, self.zone)

        mock_post.assert_has_calls([
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': True},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            ),
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': False},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            )
        ])

    @mock.patch.object(akamai, 'edgegrid')
    @mock.patch.object(akamai.requests.Session, 'post')
    def test_soft_delete_zone_missed_request_id(self, mock_post, mock_auth):
        backend = akamai.AkamaiBackend(
            objects.PoolTarget.from_dict(self.target)
        )
        mock_auth.EdgeGridAuth.assert_called_once_with(

            access_token='access_token',
            client_secret='client_secret',
            client_token='client_token'
        )

        mock_post.side_effect = [
            # emulate, when Force=True is forbidden
            self.gen_response(403, 'Forbidden'),
            # emulate request, when Force=False
            self.gen_response(200, 'Success')
        ]

        with fixtures.random_seed(0):
            self.assertRaisesRegex(
                exceptions.Backend,
                'Zone deletion failed due to: requestId missed in response',
                backend.delete_zone, self.admin_context, self.zone)

        mock_post.assert_has_calls([
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': True},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            ),
            mock.call(
                json={'zones': ['example.com.']},
                params={'force': False},
                url='https://host_value/config-dns/v2/zones/delete-requests'
            )
        ])