aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/fetch/db_fetch/test_db_fetch_aggregate_hosts.py
blob: 8fccaf4e476a83f7e6dfb776c8ccb434d38bd391 (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
###############################################################################
# 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.fetchers.db.db_fetch_aggregate_hosts import DbFetchAggregateHosts
from test.fetch.test_fetch import TestFetch
from test.fetch.db_fetch.test_data.db_fetch_aggregate_hosts import *
from unittest.mock import MagicMock


class TestDbFetchAggregateHosts(TestFetch):

    def setUp(self):
        super().setUp()
        self.configure_environment()
        self.fetcher = DbFetchAggregateHosts()

    def check_get_results_is_correct(self,
                                     objects_list,
                                     host_in_inventory,
                                     expected_result,
                                     err_msg):
        self.fetcher.get_objects_list_for_id = MagicMock(return_value=objects_list)
        self.inv.get_by_id = MagicMock(return_value=host_in_inventory)
        result = self.fetcher.get(AGGREGATE["id"])

        self.assertEqual(result, expected_result, err_msg)

    def test_get(self):
        test_cases = [
            {
                "objects_list": HOSTS,
                "host_in_inventory": HOST_IN_INVENTORY,
                "expected_result": HOSTS_RESULT,
                "err_msg": "Can't get correct hosts info"
            },
            {
                "objects_list": [],
                "host_in_inventory": None,
                "expected_result": [],
                "err_msg": "Can't get [] when the "
                           "returned objects list is empty"
            },
            {
                "objects_list": HOSTS,
                "host_in_inventory": [],
                "expected_result": HOSTS,
                "err_msg": "Can't get correct hosts info "
                           "when the host doesn't exist in the inventory"
            }
        ]
        for test_case in test_cases:
            self.check_get_results_is_correct(test_case["objects_list"],
                                              test_case["host_in_inventory"],
                                              test_case["expected_result"],
                                              test_case["err_msg"])