From 19e5d9984c58fa10c554148684bd376d4ee42fff Mon Sep 17 00:00:00 2001 From: luxin Date: Fri, 9 Feb 2018 15:38:49 +0800 Subject: Add test case for resmgr Change-Id: I2818886baaa5d9b6a0be6324b8f991dc12700e0c Issue-ID: VFC-747 Signed-off-by: luxin --- .../group/impl/GrantResServiceImplTest.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/group/impl/GrantResServiceImplTest.java 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() { + + @Mock + public JSONObject getVimById(String vimId) { + JSONObject vim = new JSONObject(); + vim.put("tenant", "huawei"); + return vim; + } + }; + JSONObject result = impl.grantResource(obj); + assertNotNull(result); + } + +} -- cgit 1.2.3-korg