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
|
#!/usr/bin/env python
##############################################################################
# Copyright (c) 2015 Huawei Technologies Co.,Ltd and other.
#
# 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.benchmark.scenarios.parser.Parser
import mock
import unittest
import json
from yardstick.benchmark.scenarios.parser import parser
@mock.patch('yardstick.benchmark.scenarios.parser.parser.subprocess')
class ParserTestCase(unittest.TestCase):
def setUp(self):
pass
def test_parser_successful_setup(self, mock_subprocess):
p = parser.Parser({}, {})
mock_subprocess.call().return_value = 0
p.setup()
self.assertEqual(p.setup_done, True)
def test_parser_successful(self, mock_subprocess):
args = {
'options': {'yangfile':'/root/yardstick/samples/yang.yaml',
'toscafile':'/root/yardstick/samples/tosca.yaml'},
}
p = parser.Parser(args, {})
result = {}
mock_subprocess.call().return_value = 0
sample_output = '{"yangtotosca": "success"}'
p.run(result)
expected_result = json.loads(sample_output)
def test_parser_teardown_successful(self, mock_subprocess):
p = parser.Parser({}, {})
mock_subprocess.call().return_value = 0
p.teardown()
self.assertEqual(p.teardown_done, True)
def main():
unittest.main()
if __name__ == '__main__':
main()
|