summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluxin <luxin7@huawei.com>2018-02-09 15:38:49 +0800
committerluxin <luxin7@huawei.com>2018-02-09 15:46:19 +0800
commit19e5d9984c58fa10c554148684bd376d4ee42fff (patch)
tree97ddaf04b1d22a024c811b43451b965c2372e537
parenta2a8f5e656808766dd7afc0bcffe907c3056565d (diff)
Add test case for resmgr
Change-Id: I2818886baaa5d9b6a0be6324b8f991dc12700e0c Issue-ID: VFC-747 Signed-off-by: luxin <luxin7@huawei.com>
-rw-r--r--ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/group/impl/GrantResServiceImplTest.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/group/impl/GrantResServiceImplTest.java b/ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/group/impl/GrantResServiceImplTest.java
new file mode 100644
index 0000000..16690f0
--- /dev/null
+++ b/ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/group/impl/GrantResServiceImplTest.java
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2018 Huawei Technologies Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.vfc.nfvo.resmanagement.service.group.impl;
+
+import static org.junit.Assert.assertNotNull;
+
+import org.junit.Test;
+import org.onap.vfc.nfvo.resmanagement.common.VimUtil;
+import org.onap.vfc.nfvo.resmanagement.common.util.restclient.ServiceException;
+
+import mockit.Mock;
+import mockit.MockUp;
+import net.sf.json.JSONObject;
+
+public class GrantResServiceImplTest {
+
+ @Test
+ public void testGrantResource() throws ServiceException {
+ GrantResServiceImpl impl = new GrantResServiceImpl();
+ JSONObject obj = new JSONObject();
+ JSONObject vimObj = new JSONObject();
+ vimObj.put("vimId", "vimId");
+ obj.put("additionalParam", vimObj);
+ new MockUp<VimUtil>() {
+
+ @Mock
+ public JSONObject getVimById(String vimId) {
+ JSONObject vim = new JSONObject();
+ vim.put("tenant", "huawei");
+ return vim;
+ }
+ };
+ JSONObject result = impl.grantResource(obj);
+ assertNotNull(result);
+ }
+
+}