Aligning ESR REST interface
[vfc/nfvo/lcm.git] / lcm / ns / tests / sfcs / test_create_flow_classifier.py
1 # Copyright 2016 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 # import mock
15 # import json
16 # from test_data import nsd_model
17 # from rest_framework import status
18 # from lcm.pub.utils import restcall
19 # from lcm.pub.database.models import FPInstModel
20 # from django.test import Client
21 # from django.test import TestCase
22 #
23 #
24 # class TestSfc(TestCase):
25 #     def setUp(self):
26 #         self.client = Client()
27 #         FPInstModel.objects.all().delete()
28 #         FPInstModel(fpinstid="fp_inst_1", fpid="fpd_1", sdncontrollerid="test").save()
29 #
30 #     def tearDown(self):
31 #         FPInstModel.objects.all().delete()
32 #
33 #     @mock.patch.object(restcall, 'call_req')
34 #     def test_create_flow_classifier_success(self, mock_call_req):
35 #         data = {
36 #             "fpinstid": "fp_inst_1",
37 #             "context": json.dumps(nsd_model)
38 #         }
39 #         mock_vals = {
40 #             "/api/aai-esr-server/v1/sdncontrollers/test":
41 #                 [0, json.JSONEncoder().encode({"url": "url_1"}), '200'],
42 #             "/api/sdncdriver/v1.0/createflowclassfier":
43 #                 [0, json.JSONEncoder().encode({"id": "test_id_1"}), '200'],
44 #             "/api/microservices/v1/services":
45 #                 [0, None, '200']
46 #
47 #         }
48 #
49 #         def side_effect(*args):
50 #             return mock_vals[args[4]]
51 #
52 #         mock_call_req.side_effect = side_effect
53 #         resp = self.client.post("/api/nslcm/v1/ns/create_flow_classifier", data)
54 #         ret = FPInstModel.objects.get(fpinstid="fp_inst_1")
55 #         self.assertEqual(resp.status_code, status.HTTP_200_OK)
56 #         self.assertEqual("test_id_1", ret.flowclassifiers)