diff options
author | Liang Ke <lokyse@163.com> | 2018-03-26 02:08:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-26 02:08:55 +0000 |
commit | a2be701e860a06df93083888e7d5f8c64cea4183 (patch) | |
tree | bb2ca219063a19122909c11fd5335461ea864ab4 | |
parent | bb74f6c1fab0460686fb0985d27e48566a7fc693 (diff) | |
parent | 0ed08905a821ab0c1d1a2ed5cc1d4fe605d94e64 (diff) |
Merge "Add test_get_res_from_aai"
-rw-r--r-- | multivimbroker/multivimbroker/tests/test_restcall.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/multivimbroker/multivimbroker/tests/test_restcall.py b/multivimbroker/multivimbroker/tests/test_restcall.py index b76b0a6..4ecf04e 100644 --- a/multivimbroker/multivimbroker/tests/test_restcall.py +++ b/multivimbroker/multivimbroker/tests/test_restcall.py @@ -8,6 +8,7 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +import mock import unittest from multivimbroker.pub.utils import restcall @@ -22,3 +23,21 @@ class TestRestCall(unittest.TestCase): expected = "http://a.com/test/resource" for i in range(len(url)): self.assertEqual(expected, restcall.combine_url(url[i], res[i])) + + @mock.patch.object(restcall, "call_req") + def test_get_res_from_aai(self, mock_call): + res = "cloud-regions" + content = "" + expect_url = "https://aai.api.simpledemo.openecomp.org:8443/aai/v13" + expect_user = "AAI" + expect_pass = "AAI" + expect_headers = { + 'X-FromAppId': 'MultiCloud', + 'X-TransactionId': '9001', + 'content-type': 'application/json', + 'accept': 'application/json' + } + restcall.get_res_from_aai(res, content=content) + mock_call.assert_called_once_with( + expect_url, expect_user, expect_pass, restcall.rest_no_auth, + res, "GET", content, expect_headers) |