From a7ce8e4a331e87e36e195c2cfeca4abefb54bbc0 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Tue, 25 Sep 2018 10:11:38 +0530 Subject: Fix the health check Issue-ID: VNFSDK-305 Change-Id: Id482e8a26e9b65523a4abbba2b2ae9907f0455de Signed-off-by: Kanagaraj Manickam k00365106 --- .../marketplace/resource/HealthCheckTest.java | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vnfsdk/marketplace/resource/HealthCheckTest.java (limited to 'vnfmarket-be/vnf-sdk-marketplace/src/test') 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()); + } +} -- cgit 1.2.3-korg