X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Fswagger%2Ftests.py;h=bc0c0409ba815448e8083a5b09a395e1d4a50397;hb=e8a52563acd02575f0eb0f183488075d0c6b01ab;hp=9bc1cef5554b7353d60869986ac0bdcd0ba27d04;hpb=439dd5d538f23c0c10193f96260925bd153c7516;p=vfc%2Fnfvo%2Flcm.git diff --git a/lcm/swagger/tests.py b/lcm/swagger/tests.py index 9bc1cef5..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 django.test import Client +from rest_framework.test import APIClient # 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 - # 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))