From 6e1b4c913377735203b48c12d9c80b1ce5d7d3f9 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Thu, 22 Mar 2018 05:24:32 +0000 Subject: Improve code coverage Improve code coverage. Change-Id: Id5b1e921264a9d1702c1cbf5f451490c1b4a309d Issue-ID: SO-369 Signed-off-by: subhash kumar singh --- .../requestsdb/MsoRequestsDbAdapterImplTest.java | 74 ++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 adapters/mso-requests-db-adapter/src/test/java/org/openecomp/mso/adapters/requestsdb/MsoRequestsDbAdapterImplTest.java (limited to 'adapters') diff --git a/adapters/mso-requests-db-adapter/src/test/java/org/openecomp/mso/adapters/requestsdb/MsoRequestsDbAdapterImplTest.java b/adapters/mso-requests-db-adapter/src/test/java/org/openecomp/mso/adapters/requestsdb/MsoRequestsDbAdapterImplTest.java new file mode 100644 index 0000000000..506b3bd95f --- /dev/null +++ b/adapters/mso-requests-db-adapter/src/test/java/org/openecomp/mso/adapters/requestsdb/MsoRequestsDbAdapterImplTest.java @@ -0,0 +1,74 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + */ +package org.openecomp.mso.adapters.requestsdb; + +import org.junit.Test; + +public class MsoRequestsDbAdapterImplTest { + + // TODO: following test case is done for coverage + // later it should be modified for proper test. + MsoRequestsDbAdapterImpl msoRequestsDbAdapter = new MsoRequestsDbAdapterImpl(); + + @Test(expected = NullPointerException.class) + public void updateInfraRequest() throws Exception { + msoRequestsDbAdapter.updateInfraRequest("test", "test", + "test", "test", RequestStatusType.COMPLETE, "test", + "test", "test", "test", "test", + "test", "test", "test", + "test", "test", "tets"); + } + + @Test(expected = NullPointerException.class) + public void getInfraRequest() throws Exception { + msoRequestsDbAdapter.getInfraRequest("test"); + } + + @Test(expected = NullPointerException.class) + public void getSiteStatus() throws Exception { + msoRequestsDbAdapter.getSiteStatus("test"); + } + + @Test(expected = NullPointerException.class) + public void updateServiceOperationStatus() throws Exception { + msoRequestsDbAdapter.updateServiceOperationStatus("test", "test", + "test", "test", "test", "test", + "test", "test"); + } + + @Test(expected = NullPointerException.class) + public void initResourceOperationStatus() throws Exception { + msoRequestsDbAdapter.initResourceOperationStatus("test", "test", "test", "uuid"); + } + + @Test(expected = NullPointerException.class) + public void getResourceOperationStatus() throws Exception { + msoRequestsDbAdapter.getResourceOperationStatus("test", "test", "uuid"); + } + + @Test(expected = NullPointerException.class) + public void updateResourceOperationStatus() throws Exception { + msoRequestsDbAdapter.updateResourceOperationStatus("test", "test", + "uuid", "type", "instance-id", + "jobid", "test", "progress", "errorcode", + "status-desc"); + } + +} \ No newline at end of file -- cgit 1.2.3-korg