Merge "Create a constants.py to manage constant variable consistently"
[yardstick.git] / tests / unit / benchmark / scenarios / dummy / test_dummy.py
1 #!/usr/bin/env python
2
3 ##############################################################################
4 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 # Unittest for yardstick.benchmark.scenarios.dummy.dummy
13
14 import unittest
15
16 from yardstick.benchmark.scenarios.dummy import dummy
17
18
19 class DummyTestCase(unittest.TestCase):
20
21     def setUp(self):
22         self.test_context = dummy.Dummy(None, None)
23
24         self.assertIsNone(self.test_context.scenario_cfg)
25         self.assertIsNone(self.test_context.context_cfg)
26         self.assertEqual(self.test_context.setup_done, False)
27
28     def test_run(self):
29         result = {}
30         self.test_context.run(result)
31
32         self.assertEqual(result["hello"], "yardstick")
33         self.assertEqual(self.test_context.setup_done, True)