From: yangyan Date: Thu, 7 Jun 2018 00:46:28 +0000 (+0800) Subject: remove swagger test function X-Git-Tag: 1.2.0~113^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vfc%2Fnfvo%2Flcm.git;a=commitdiff_plain;h=8183effdd2d2d855aa8a7b6c7a58d436783ef818 remove swagger test function Issue-ID: VFC-931 Change-Id: I88681de4d5b113e3b863a3719e2d0a8bdec168c9 Signed-off-by: yangyan --- diff --git a/lcm/ns/tests/test_ns_instant.py b/lcm/ns/tests/test_ns_instant.py index 544c3743..6e50cb6a 100644 --- a/lcm/ns/tests/test_ns_instant.py +++ b/lcm/ns/tests/test_ns_instant.py @@ -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) + """ diff --git a/lcm/ns/tests/test_ns_manual_scale.py b/lcm/ns/tests/test_ns_manual_scale.py index a5134c7d..6526ffca 100644 --- a/lcm/ns/tests/test_ns_manual_scale.py +++ b/lcm/ns/tests/test_ns_manual_scale.py @@ -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): diff --git a/lcm/swagger/tests.py b/lcm/swagger/tests.py index 4f2e6522..9bc1cef5 100644 --- a/lcm/swagger/tests.py +++ b/lcm/swagger/tests.py @@ -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)