From 0e1f816f012a92b6e2283bb300fbe1b054138941 Mon Sep 17 00:00:00 2001 From: Ethan Lynn Date: Sun, 25 Mar 2018 22:53:09 -0700 Subject: [PATCH] Add test_call_req_success Add test_call_req_success for restcall.py Change-Id: Ie09e8b0fb8bf88e9123af261a367d2efdafc17bf Issue-ID: MULTICLOUD-198 Signed-off-by: Ethan Lynn --- multivimbroker/multivimbroker/tests/test_restcall.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/multivimbroker/multivimbroker/tests/test_restcall.py b/multivimbroker/multivimbroker/tests/test_restcall.py index 235d58a..2052208 100644 --- a/multivimbroker/multivimbroker/tests/test_restcall.py +++ b/multivimbroker/multivimbroker/tests/test_restcall.py @@ -53,3 +53,15 @@ class TestRestCall(unittest.TestCase): mock_call.assert_called_once_with( expect_url, "", "", restcall.rest_no_auth, res, method, content, headers) + + @mock.patch("httplib2.Http.request") + def test_call_req_success(self, mock_req): + mock_resp = { + "status": "200" + } + resp_content = "hello" + mock_req.return_value = mock_resp, resp_content + expect_ret = [0, resp_content, "200", mock_resp] + ret = restcall.call_req("http://onap.org/", "user", "pass", + restcall.rest_no_auth, "vim", "GET") + self.assertEqual(expect_ret, ret) -- 2.16.6