Support different user/project domain values
[functest.git] / functest / tests / unit / vnf / ims / test_ims_base.py
1 #!/usr/bin/env python
2
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7
8 # pylint: disable=missing-docstring
9
10 import logging
11 import unittest
12
13 import mock
14
15 from functest.opnfv_tests.vnf.ims import clearwater_ims_base as ims_base
16
17
18 class ClearwaterOnBoardingBaseTesting(unittest.TestCase):
19
20     def setUp(self):
21         with mock.patch('functest.opnfv_tests.vnf.ims.cloudify_ims.'
22                         'os.makedirs'):
23             self.ims_vnf = ims_base.ClearwaterOnBoardingBase()
24
25         self.mock_post = mock.Mock()
26         attrs = {'status_code': 201,
27                  'cookies': ""}
28         self.mock_post.configure_mock(**attrs)
29
30         self.mock_post_200 = mock.Mock()
31         attrs = {'status_code': 200,
32                  'cookies': ""}
33         self.mock_post_200.configure_mock(**attrs)
34
35         self.mock_post_500 = mock.Mock()
36         attrs = {'status_code': 500,
37                  'cookies': ""}
38         self.mock_post_200.configure_mock(**attrs)
39
40 if __name__ == "__main__":
41     logging.disable(logging.CRITICAL)
42     unittest.main(verbosity=2)