aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/event_based_scan/test_network_delete.py
blob: 3e08af1a06d482cf9b2b4aac29c826bcbc71586f (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
###############################################################################
# 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_network_delete import EventNetworkDelete
from test.event_based_scan.test_data.event_payload_network_delete import EVENT_PAYLOAD_NETWORK_DELETE, \
    EVENT_PAYLOAD_NETWORK
from test.event_based_scan.test_event_delete_base import TestEventDeleteBase


class TestNetworkDelete(TestEventDeleteBase):

    def setUp(self):
        super().setUp()
        self.values = EVENT_PAYLOAD_NETWORK_DELETE
        self.set_item_for_deletion(object_type="network", document=EVENT_PAYLOAD_NETWORK)

    def test_handle_network_delete(self):
        self.handle_delete(handler=EventNetworkDelete())