aboutsummaryrefslogtreecommitdiffstats
path: root/adapters
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2018-03-22 05:24:32 +0000
committersubhash kumar singh <subhash.kumar.singh@huawei.com>2018-03-22 05:24:32 +0000
commit6e1b4c913377735203b48c12d9c80b1ce5d7d3f9 (patch)
tree391a2a50bf2d3b8a3697751809eef94bededf3d1 /adapters
parented452d870d7bffc37eab1284756b2f97bc2af628 (diff)
Improve code coverage
Improve code coverage. Change-Id: Id5b1e921264a9d1702c1cbf5f451490c1b4a309d Issue-ID: SO-369 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'adapters')
-rw-r--r--adapters/mso-requests-db-adapter/src/test/java/org/openecomp/mso/adapters/requestsdb/MsoRequestsDbAdapterImplTest.java74
1 files changed, 74 insertions, 0 deletions
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