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
|
###############################################################################
# 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 unittest.mock import MagicMock
from discover.events.event_subnet_add import EventSubnetAdd
from discover.fetchers.api.api_access import ApiAccess
from discover.find_links_for_pnics import FindLinksForPnics
from discover.find_links_for_vservice_vnics import FindLinksForVserviceVnics
from test.event_based_scan.test_data.event_payload_subnet_add import EVENT_PAYLOAD_SUBNET_ADD,\
EVENT_PAYLOAD_REGION, NETWORK_DOC
from test.event_based_scan.test_event import TestEvent
class TestSubnetAdd(TestEvent):
def test_handle_subnet_add(self):
self.values = EVENT_PAYLOAD_SUBNET_ADD
self.payload = self.values['payload']
self.subnet = self.payload['subnet']
self.subnet_id = self.subnet['id']
self.network_id = self.subnet['network_id']
self.item_ids.append(self.network_id)
network_document = self.inv.get_by_id(self.env, self.network_id)
if network_document:
# check subnet in network first.
self.assertNotIn(self.subnet['cidr'], network_document['cidrs'])
else:
self.log.info("network document is not found, add it first.")
self.set_item(NETWORK_DOC)
# check network document
network_document = self.inv.get_by_id(self.env, self.network_id)
self.assertIsNotNone(network_document)
# check region data.
if not ApiAccess.regions:
ApiAccess.regions = EVENT_PAYLOAD_REGION
# Mock function instead of get children data. They should be test in their unit test.
# add subnet document for updating network
handler = EventSubnetAdd()
handler.add_children_documents = MagicMock()
original_add_pnic_links = FindLinksForPnics.add_links
FindLinksForPnics.add_links = MagicMock()
original_add_vservice_links = FindLinksForVserviceVnics.add_links
FindLinksForVserviceVnics.add_links = MagicMock()
handler.handle(self.env, self.values)
# reset the methods back
FindLinksForPnics.add_links = original_add_pnic_links
FindLinksForVserviceVnics.add_links = original_add_vservice_links
# check network document
network_document = self.inv.get_by_id(self.env, self.network_id)
self.assertIn(self.subnet['cidr'], network_document['cidrs'])
self.assertIn(self.subnet['name'], network_document['subnets'])
#tearDown method has been implemented in class testEvent.
|