summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGao Weitao <victor.gao@huawei.com>2018-02-09 07:50:47 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-09 07:50:47 +0000
commit4209842da7841be035e811ce7052d5496523cb33 (patch)
treead8b45c1a4a4096d024e2dcfbb54868f8fb6d8ff
parent43d63193853d70b76a1500fd2d24ef90eb2eeb9e (diff)
parent19e5d9984c58fa10c554148684bd376d4ee42fff (diff)
Merge "Add test case for resmgr"
-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);
+ }
+
+}