From 465eb4854169b1dc6dd8f2575752914cfbb7adab Mon Sep 17 00:00:00 2001 From: fujinhua Date: Wed, 3 Apr 2019 10:48:43 +0800 Subject: [PATCH] Fix health check api Change-Id: I6d3e887697c6e45d23b58c56fa88efc2fea4e49d Issue-ID: VFC-1306 Signed-off-by: fujinhua --- lcm/ns/tests/test_sol_health_check.py | 31 +++++++++++++++++++++++++++++++ lcm/ns/views/sol/health_check.py | 11 +++++++++-- 2 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 lcm/ns/tests/test_sol_health_check.py 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"}) -- 2.16.6