blob: 66d35e39fa87e18da33a3aedcf47fa3fe070f2ec (
plain)
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
|
#!/usr/bin/env python
# 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
import logging
import unittest
import mock
from functest.opnfv_tests.vnf.ims import clearwater_ims_base as ims_base
class ClearwaterOnBoardingBaseTesting(unittest.TestCase):
def setUp(self):
with mock.patch('functest.opnfv_tests.vnf.ims.cloudify_ims.'
'os.makedirs'):
self.ims_vnf = ims_base.ClearwaterOnBoardingBase()
self.mock_post = mock.Mock()
attrs = {'status_code': 201,
'cookies': ""}
self.mock_post.configure_mock(**attrs)
self.mock_post_200 = mock.Mock()
attrs = {'status_code': 200,
'cookies': ""}
self.mock_post_200.configure_mock(**attrs)
self.mock_post_500 = mock.Mock()
attrs = {'status_code': 500,
'cookies': ""}
self.mock_post_200.configure_mock(**attrs)
if __name__ == "__main__":
logging.disable(logging.CRITICAL)
unittest.main(verbosity=2)
|