aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-25 10:11:38 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-25 10:13:10 +0530
commita7ce8e4a331e87e36e195c2cfeca4abefb54bbc0 (patch)
treeea054312d601370979484a0499db125ccdde5da7 /vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap
parent6c229996c496c46de935534b909401dc47f74553 (diff)
Fix the health check
Issue-ID: VNFSDK-305 Change-Id: Id482e8a26e9b65523a4abbba2b2ae9907f0455de Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap')
-rw-r--r--vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vnfsdk/marketplace/resource/HealthCheckTest.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vnfsdk/marketplace/resource/HealthCheckTest.java b/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vnfsdk/marketplace/resource/HealthCheckTest.java
new file mode 100644
index 00000000..92bf673b
--- /dev/null
+++ b/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vnfsdk/marketplace/resource/HealthCheckTest.java
@@ -0,0 +1,36 @@
+/**
+ * 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.vnfsdk.marketplace.resource;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class HealthCheckTest {
+ private PackageResource pkgRsc = null;
+
+ @Before
+ public void setUp() {
+ pkgRsc = new PackageResource();
+ }
+
+ @Test
+ public void testHealth() throws Exception {
+ assertEquals(200, pkgRsc.healthCheck().getStatus());
+ }
+}