Release vnflcm version 1.4.3
[vfc/gvnfm/vnflcm.git] / lcm / lcm / swagger / tests.py
index f65f699..87c71e0 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2017 ZTE Corporation.
+# Copyright (C) 2019 ZTE. All Rights Reserved
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import unittest
-
+from django.test import TestCase
 from django.test import Client
 from rest_framework import status
 
 
-class SwaggerViewTest(unittest.TestCase):
+class TestSwagger(TestCase):
     def setUp(self):
         self.client = Client()
 
     def tearDown(self):
         pass
 
-    def test_swagger(self):
-        response = self.client.get("/api/vnflcm/v1/swagger.json")
-        self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)
+    def test_swagger_json(self):
+        url = "/api/vnflcm/v1/swagger.json"
+        response = self.client.get(url, format='json')
+        self.assertEqual(response.status_code, status.HTTP_200_OK)
+        self.assertEqual("2.0", response.data.get("swagger"))