Fix for remote policy filtering
[optf/osdf.git] / test / test_api_validation.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2017-2018 AT&T Intellectual Property
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17 #
18 import json
19 import unittest
20
21 from schematics.exceptions import DataError
22
23 from apps.placement.models.api.placementRequest import PlacementAPI
24 from apps.placement.models.api.placementResponse import PlacementResponse
25
26
27 class TestReqValidation(unittest.TestCase):
28
29     def test_req_validation(self):
30         req_file = "./test/placement-tests/request.json"
31         req_json = json.loads(open(req_file).read())
32         self.assertEqual(PlacementAPI(req_json).validate(), None)
33
34     def test_req_vfmod_validation(self):
35         req_file = "./test/placement-tests/request_vfmod.json"
36         req_json = json.loads(open(req_file).read())
37         self.assertEqual(PlacementAPI(req_json).validate(), None)
38
39     def test_req_failure(self):
40         req_json = {}
41         self.assertRaises(DataError, lambda: PlacementAPI(req_json).validate())
42
43
44 class TestResponseValidation(unittest.TestCase):
45
46     def test_res_validation(self):
47         req_file = "./test/placement-tests/response.json"
48         req_json = json.loads(open(req_file).read())
49         self.assertEqual(PlacementResponse(req_json).validate(), None)
50
51     def test_res_vfmod_validation(self):
52         req_file = "./test/placement-tests/response_vfmod.json"
53         req_json = json.loads(open(req_file).read())
54         self.assertEqual(PlacementResponse(req_json).validate(), None)
55
56     def test_invalid_response(self):
57         resp_json = {}
58         self.assertRaises(DataError, lambda: PlacementResponse(resp_json).validate())
59
60
61 if __name__ == "__main__":
62     unittest.main()