blob: 2749db950674376fbe870242d518a59c74f80e21 (
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
|
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) #
# and others #
# #
# All rights reserved. This program and the accompanying materials #
# are made available under the terms of the Apache License, Version 2.0 #
# which accompanies this distribution, and is available at #
# http://www.apache.org/licenses/LICENSE-2.0 #
###############################################################################
from discover.events.event_subnet_update import EventSubnetUpdate
from discover.fetchers.api.api_access import ApiAccess
from test.event_based_scan.test_data.event_payload_subnet_add import \
EVENT_PAYLOAD_REGION
from test.event_based_scan.test_data.event_payload_subnet_update import \
EVENT_PAYLOAD_SUBNET_UPDATE, NETWORK_DOC, HOST_DOC
from test.event_based_scan.test_event import TestEvent
class TestSubnetUpdate(TestEvent):
def get_by_id(self, env, object_id):
if object_id == self.network_id:
return NETWORK_DOC
elif object_id == self.host_id:
return HOST_DOC
else:
return None
def test_handle_subnet_add(self):
self.values = EVENT_PAYLOAD_SUBNET_UPDATE
self.payload = self.values['payload']
self.subnet = self.payload['subnet']
self.subnet_id = self.subnet['id']
self.network_id = self.subnet['network_id']
self.host_id = self.values["publisher_id"].replace("network.", "", 1)
old_subnet_name = list(NETWORK_DOC['subnets'].keys())[0]
new_subnet_name = self.subnet['name']
self.inv.get_by_id.side_effect = self.get_by_id
if not ApiAccess.regions:
ApiAccess.regions = EVENT_PAYLOAD_REGION
res = EventSubnetUpdate().handle(self.env, self.values)
self.assertTrue(res.result)
updated_network = [call[0][0] for call in self.inv.set.call_args_list
if call[0][0]['type'] == 'network']
self.assertTrue(updated_network)
self.assertFalse(updated_network[0]['subnets'].get(old_subnet_name))
self.assertTrue(updated_network[0]['subnets'].get(new_subnet_name))
if ApiAccess.regions == EVENT_PAYLOAD_REGION:
ApiAccess.regions = None
# TODO: write tests for "enable_dhcp" change handling
|