aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryunlong ying <ying.yunlong@zte.com.cn>2019-04-03 04:06:00 +0000
committerGerrit Code Review <gerrit@onap.org>2019-04-03 04:06:00 +0000
commit12d1a18d4d03702ea6d0ff57d4c121aa67831e0d (patch)
tree249409798b5b16ff0d9e2f8cd84008f3f0b3d5b7
parent654f33811cdf4db794f2956727c4c222ccc64eac (diff)
parent465eb4854169b1dc6dd8f2575752914cfbb7adab (diff)
Merge "Fix health check api"
-rw-r--r--lcm/ns/tests/test_sol_health_check.py31
-rw-r--r--lcm/ns/views/sol/health_check.py11
2 files changed, 40 insertions, 2 deletions
diff --git a/lcm/ns/tests/test_sol_health_check.py b/lcm/ns/tests/test_sol_health_check.py
new file mode 100644
index 00000000..ccdd29cd
--- /dev/null
+++ b/lcm/ns/tests/test_sol_health_check.py
@@ -0,0 +1,31 @@
+# Copyright 2019 ZTE Corporation.
+#
+# 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.
+import json
+
+from django.test import TestCase, Client
+from rest_framework import status
+
+
+class TestSolHealthCheck(TestCase):
+ def setUp(self):
+ self.client = Client()
+
+ def tearDown(self):
+ pass
+
+ def test_health_check(self):
+ response = self.client.get("/api/nslcm/v1/health_check")
+ self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)
+ resp_data = json.loads(response.content)
+ self.assertEqual({"status": "active"}, resp_data)
diff --git a/lcm/ns/views/sol/health_check.py b/lcm/ns/views/sol/health_check.py
index 863ef597..87b99834 100644
--- a/lcm/ns/views/sol/health_check.py
+++ b/lcm/ns/views/sol/health_check.py
@@ -14,11 +14,18 @@
import logging
+from drf_yasg.utils import swagger_auto_schema
+from rest_framework import status
+from rest_framework.response import Response
from rest_framework.views import APIView
logger = logging.getLogger(__name__)
class HealthCheckView(APIView):
- logger.debug("Health check.")
- pass
+ @swagger_auto_schema(
+ responses={
+ status.HTTP_200_OK: 'Active'})
+ def get(self, request, format=None):
+ logger.debug("Health check.")
+ return Response({"status": "active"})