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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
##############################################################################
# Copyright (c) 2015 Ericsson AB 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
##############################################################################
# Unittest for yardstick.common.utils
from __future__ import absolute_import
import os
import mock
import unittest
from yardstick.common import utils
class IterSubclassesTestCase(unittest.TestCase):
# Disclaimer: this class is a modified copy from
# rally/tests/unit/common/plugin/test_discover.py
# Copyright 2015: Mirantis Inc.
def test_itersubclasses(self):
class A(object):
pass
class B(A):
pass
class C(A):
pass
class D(C):
pass
self.assertEqual([B, C, D], list(utils.itersubclasses(A)))
class TryAppendModuleTestCase(unittest.TestCase):
@mock.patch('yardstick.common.utils.importutils')
def test_try_append_module_not_in_modules(self, mock_importutils):
modules = {}
name = 'foo'
utils.try_append_module(name, modules)
mock_importutils.import_module.assert_called_with(name)
@mock.patch('yardstick.common.utils.importutils')
def test_try_append_module_already_in_modules(self, mock_importutils):
modules = {'foo'}
name = 'foo'
utils.try_append_module(name, modules)
self.assertFalse(mock_importutils.import_module.called)
class ImportModulesFromPackageTestCase(unittest.TestCase):
@mock.patch('yardstick.common.utils.os.walk')
@mock.patch('yardstick.common.utils.try_append_module')
def test_import_modules_from_package_no_mod(self, mock_append, mock_walk):
sep = os.sep
mock_walk.return_value = ([
('..' + sep + 'foo', ['bar'], ['__init__.py']),
('..' + sep + 'foo' + sep + 'bar', [], ['baz.txt', 'qux.rst'])
])
utils.import_modules_from_package('foo.bar')
self.assertFalse(mock_append.called)
@mock.patch('yardstick.common.utils.os.walk')
@mock.patch('yardstick.common.utils.importutils')
def test_import_modules_from_package(self, mock_importutils, mock_walk):
sep = os.sep
mock_walk.return_value = ([
('foo' + sep + '..' + sep + 'bar', [], ['baz.py'])
])
utils.import_modules_from_package('foo.bar')
mock_importutils.import_module.assert_called_with('bar.baz')
class GetParaFromYaml(unittest.TestCase):
@mock.patch('yardstick.common.utils.os.environ.get')
def test_get_param_para_not_found(self, get_env):
file_path = 'config_sample.yaml'
get_env.return_value = self._get_file_abspath(file_path)
args = 'releng.file'
default = 'hello'
self.assertTrue(utils.get_param(args, default), default)
@mock.patch('yardstick.common.utils.os.environ.get')
def test_get_param_para_exists(self, get_env):
file_path = 'config_sample.yaml'
get_env.return_value = self._get_file_abspath(file_path)
args = 'releng.dir'
para = '/home/opnfv/repos/releng'
self.assertEqual(para, utils.get_param(args))
def _get_file_abspath(self, filename):
curr_path = os.path.dirname(os.path.abspath(__file__))
file_path = os.path.join(curr_path, filename)
return file_path
def main():
unittest.main()
if __name__ == '__main__':
main()
|