vnfmgr upgrade from python2 to python3
[vfc/gvnfm/vnfmgr.git] / mgr / mgr / pub / utils / tests.py
1 # Copyright 2018 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import unittest
16 from . import syscomm
17 from . import values
18 from . import enumutil
19
20
21 class UtilsTest(unittest.TestCase):
22     def setUp(self):
23         pass
24
25     def tearDown(self):
26         pass
27
28     def test_enum(self):
29         MY_TYPE = enumutil.enum(SAMLL=0, LARGE=1)
30         self.assertEqual(0, MY_TYPE.SAMLL)
31         self.assertEqual(1, MY_TYPE.LARGE)
32
33     def test_fun_name(self):
34         self.assertEqual("test_fun_name", syscomm.fun_name())
35
36     def test_ignore_case_get(self):
37         data = {
38             "Abc": "def",
39             "HIG": "klm"
40         }
41         self.assertEqual("def", values.ignore_case_get(data, 'ABC'))
42         self.assertEqual("def", values.ignore_case_get(data, 'abc'))
43         self.assertEqual("klm", values.ignore_case_get(data, 'hig'))
44         self.assertEqual("bbb", values.ignore_case_get(data, 'aaa', 'bbb'))