X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Fswagger%2Ftests.py;h=bc0c0409ba815448e8083a5b09a395e1d4a50397;hb=refs%2Fchanges%2F90%2F83690%2F2;hp=4f2e652298cd49aec27e61f457a5ab94acc06dac;hpb=12f8357386eefb363bdedd8d651bc914f537cfcb;p=vfc%2Fnfvo%2Flcm.git diff --git a/lcm/swagger/tests.py b/lcm/swagger/tests.py index 4f2e6522..bc0c0409 100644 --- a/lcm/swagger/tests.py +++ b/lcm/swagger/tests.py @@ -8,20 +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 +from rest_framework.test import APIClient +# from rest_framework import status -from django.test import Client -from rest_framework import status - -class SwaggerViewTest(unittest.TestCase): +class SwaggerViewTest(TestCase): def setUp(self): - self.client = Client() + self.client = APIClient() def tearDown(self): pass - def test_swagger(self): - response = self.client.get("/api/nslcm/v1/swagger.json") - self.assertEqual(status.HTTP_200_OK, response.status_code, response.content) + # 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))