X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Fswagger%2Ftests.py;h=bc0c0409ba815448e8083a5b09a395e1d4a50397;hb=0876c326a9f9809fbb35d512a4a95f9fad00e445;hp=b877609ac935d2edd75430be75bb77bd8cc5673d;hpb=9c3f78942507bfebaca73c9a9c363198d52742e8;p=vfc%2Fnfvo%2Flcm.git diff --git a/lcm/swagger/tests.py b/lcm/swagger/tests.py index b877609a..bc0c0409 100644 --- a/lcm/swagger/tests.py +++ b/lcm/swagger/tests.py @@ -8,23 +8,22 @@ # 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. +# import json +from django.test import TestCase -import unittest -import json -from django.test import Client -from rest_framework import status +from rest_framework.test import APIClient +# from rest_framework import status -class SampleViewTest(unittest.TestCase): +class SwaggerViewTest(TestCase): def setUp(self): - self.client = Client() + self.client = APIClient() def tearDown(self): pass - def test_sample(self): - response = self.client.get("/api/nslcm/v1/swagger.json") - print response - self.assertEqual(status.HTTP_200_OK, response.status_code, response.content) -# resp_data = json.loads(response.content) -# self.assertEqual({"status": "active"}, resp_data) + # def test_swagger(self): + # response = self.client.get("/api/nslcm/v1/swagger.json") + # self.assertEqual(status.HTTP_200_OK, response.status_code, response.content) + # with open('vfc.json', 'w') as swagger_file: + # swagger_file.write(json.dumps(response.data))