aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/tests/unit/service/test_environment.py
blob: 779e6eaa03d212e3113b3dc0336a8644ac7d7bf0 (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
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd 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
##############################################################################

import mock

from yardstick.common import exceptions
from yardstick.service import environment
from yardstick.tests.unit import base as ut_base


class EnvironmentTestCase(ut_base.BaseUnitTestCase):

    def test_get_sut_info(self):
        pod_info = {
            'nodes': [
                {
                    'name': 'node1',
                    'host_name': 'host1',
                    'role': 'Controller',
                    'ip': '10.1.0.50',
                    'user': 'root',
                    'passward': 'root'
                }
            ]
        }

        with mock.patch.object(environment.AnsibleCommon,
                               'gen_inventory_ini_dict'), \
                mock.patch.object(environment.AnsibleCommon, 'get_sut_info',
                                  return_value={'node1': {}}), \
                mock.patch.object(environment.Environment, '_format_sut_info'):
            env = environment.Environment(pod=pod_info)
            env.get_sut_info()

    def test_get_sut_info_pod_str(self):
        pod_info = 'nodes'

        env = environment.Environment(pod=pod_info)
        with self.assertRaises(exceptions.UnsupportedPodFormatError):
            env.get_sut_info()