Test case for vesagent getBacklogsOneVIM 31/54931/1
authorYun Huang <yun.huang@windriver.com>
Fri, 15 Jun 2018 06:06:39 +0000 (14:06 +0800)
committerYun Huang <yun.huang@windriver.com>
Fri, 15 Jun 2018 06:06:39 +0000 (14:06 +0800)
Change-Id: I542e95fc830d7f64d4e1cdc9dfa5436efbea72f4
Issue-ID: MULTICLOUD-230
Signed-off-by: Yun Huang <yun.huang@windriver.com>
windriver/titanium_cloud/vesagent/tests.py

index c7c95ed..f06ecd4 100644 (file)
@@ -87,3 +87,13 @@ class VesAgentCtrlTest(unittest.TestCase):
         self.assertEquals(status.HTTP_200_OK, response.status_code)
 
         pass
+
+    @mock.patch.object(cache, 'get')
+    def test_getBacklogsOneVIM(self, mock_get):
+        mock_vesagent_config = {"backlogs": [{"backlog_uuid": "ce2d7597-22e1-4239-890f-bc303bd67076", "server_id": "c4b575fa-ed85-4642-ab4b-335cb5744721", "tenant_id": "0e148b76ee8c42f78d37013bf6b7b1ae", "api_method": "GET", "source": "onap-aaf", "api_link": "/onaplab_RegionOne/compute/v2.1/0e148b76ee8c42f78d37013bf6b7b1ae/servers/c4b575fa-ed85-4642-ab4b-335cb5744721", "domain": "fault", "type": "vm", "tenant": "VIM"}], "poll_interval_default": 10, "vimid": "onaplab_RegionOne", "subscription": {"username": "user", "password": "password", "endpoint": "http://127.0.0.1:9005/sample"}}
+        mock_get.return_value = json.dumps(mock_vesagent_config)
+
+        vesAgentConfig = self.view.getBacklogsOneVIM(vimid="windriver-hudson-dc_RegionOne")
+        self.assertEquals(vesAgentConfig, mock_vesagent_config)
+
+        pass