aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/event_based_scan/test_instance_delete.py
blob: 1572e9da5b9f92e310ac2f7c7a6c9dc8fe91136d (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_instance_delete import EventInstanceDelete
from test.event_based_scan.test_data.event_payload_instance_delete import EVENT_PAYLOAD_INSTANCE_DELETE, \
    INSTANCE_DOCUMENT
from test.event_based_scan.test_event_delete_base import TestEventDeleteBase


class TestInstanceDelete(TestEventDeleteBase):

    def setUp(self):
        super().setUp()
        self.values = EVENT_PAYLOAD_INSTANCE_DELETE
        self.set_item_for_deletion(object_type="instance", document=INSTANCE_DOCUMENT)

    def test_handle_instance_delete(self):
        self.handle_delete(handler=EventInstanceDelete())