Adding/updating copyrights plus some unittests
[optf/osdf.git] / test / operation / test_responses.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 unittest
19 import json
20 import yaml
21
22 from osdf.adapters.local_data import local_policies
23
24
25 class TestLocalPolicies(unittest.TestCase):
26
27     def __init__(self, *args, **kwargs):
28         super(self.__class__, self).__init__(*args, **kwargs)
29         self.folder = './test/policy-local-files'
30         self.invalid_policies = ['INVALID-one.json', 'INVALID-two.json']
31         self.valid_policies = ['CloudAttributePolicy_vG_1.json', 'CloudAttributePolicy_vGMuxInfra_1.json']
32        
33     def test_get_local_policies_no_policies(self):
34         with self.assertRaises(FileNotFoundError):
35              res = local_policies.get_local_policies(self.folder, self.invalid_policies)
36              assert res is None
37
38     def test_get_local_valid_policies(self):
39         res = local_policies.get_local_policies(self.folder, self.valid_policies)
40         assert len(res) == len(self.valid_policies)
41
42     def test_get_subset_valid_policies(self):
43         wanted = [ x[:-5] for x in self.valid_policies[:1] ]
44         res = local_policies.get_local_policies(self.folder, self.valid_policies, wanted)
45         assert len(res) == len(wanted)
46
47
48 if __name__ == "__main__":
49     unittest.main()
50
51 from flask import Response
52
53 from osdf import ACCEPTED_MESSAGE_TEMPLATE
54
55
56 def osdf_response_for_request_accept(req_id="", text="", response_code=202, as_http=True):
57     """Helper method to create a response object for request acceptance, so that the object can be sent to a client
58     :param req_id: request ID provided by the caller
59     :param text: extra text description about accepting the request (e.g. "Request accepted")
60     :param response_code: the HTTP status code to send -- default is 202 (accepted)
61     :param as_http: whether to send response as HTTP response object or as a string
62     :return: if as_http is True, return a HTTP Response object. Otherwise, return json-encoded-message
63     """
64     response_message = ACCEPTED_MESSAGE_TEMPLATE.render(description=text, request_id=req_id)
65     if not as_http:
66         return response_message
67
68     response = Response(response_message, content_type='application/json; charset=utf-8')
69     response.headers.add('content-length', len(response_message))
70     response.status_code = response_code
71     return response