remove swagger test function 71/50871/3
authoryangyan <yangyanyj@chinamobile.com>
Thu, 7 Jun 2018 00:46:28 +0000 (08:46 +0800)
committeryangyan <yangyanyj@chinamobile.com>
Thu, 7 Jun 2018 02:14:41 +0000 (10:14 +0800)
Issue-ID: VFC-931
Change-Id: I88681de4d5b113e3b863a3719e2d0a8bdec168c9
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
lcm/ns/tests/test_ns_instant.py
lcm/ns/tests/test_ns_manual_scale.py
lcm/swagger/tests.py

index 544c374..6e50cb6 100644 (file)
@@ -11,7 +11,8 @@
 # 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.
-from rest_framework import status
+
+# from rest_framework import status
 from django.test import TestCase
 from django.test import Client
 
@@ -55,8 +56,9 @@ class TestNsInstant(TestCase):
                 'additionalParamForNs': "[{\"a\":3},{\"e\":{\"f\":\"4\"}}]", 'flavorParams': ""}
         resp = self.client.post("/api/nslcm/v1/ns/123/instantiate", data, format='json')
         self.assertEqual(resp.status_code, status.HTTP_200_OK)
-    """
+
 
     def test_swagger_ok(self):
         resp = self.client.get("/api/nslcm/v1/swagger.json", format='json')
         self.assertEqual(resp.status_code, status.HTTP_200_OK)
+    """
index a5134c7..6526ffc 100644 (file)
@@ -280,9 +280,9 @@ class TestNsManualScale(TestCase):
                 id=self.ns_inst_id).status,
             NS_INST_STATUS.ACTIVE)
 
-    def test_swagger_ok(self):
-        resp = self.client.get("/api/nslcm/v1/swagger.json", format='json')
-        self.assertEqual(resp.status_code, status.HTTP_200_OK)
+    def test_swagger_ok(self):
+    # resp = self.client.get("/api/nslcm/v1/swagger.json", format='json')
+    # self.assertEqual(resp.status_code, status.HTTP_200_OK)
 
     @mock.patch.object(NSManualScaleService, 'start')
     def test_ns_manual_scale_empty_data(self, mock_start):
index 4f2e652..9bc1cef 100644 (file)
@@ -12,7 +12,7 @@
 import unittest
 
 from django.test import Client
-from rest_framework import status
+from rest_framework import status
 
 
 class SwaggerViewTest(unittest.TestCase):
@@ -22,6 +22,6 @@ class SwaggerViewTest(unittest.TestCase):
     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)
+    # test_swagger(self):
+    # response = self.client.get("/api/nslcm/v1/swagger.json")
+    # self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)