From b15b137b81bbdb7f6db0824dafdc62e27f5e562b Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Thu, 14 Dec 2017 16:24:28 +0100 Subject: Add unittests for moon_wrapper Change-Id: I8aa8c84552bd7ac952dc15b4e00e659fed8ed437 --- .../tests/unit_python/api/test_wrapper.py | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 moonv4/moon_wrapper/tests/unit_python/api/test_wrapper.py (limited to 'moonv4/moon_wrapper/tests/unit_python/api/test_wrapper.py') diff --git a/moonv4/moon_wrapper/tests/unit_python/api/test_wrapper.py b/moonv4/moon_wrapper/tests/unit_python/api/test_wrapper.py new file mode 100644 index 00000000..7e9a7421 --- /dev/null +++ b/moonv4/moon_wrapper/tests/unit_python/api/test_wrapper.py @@ -0,0 +1,28 @@ +import json + + +def get_json(data): + return json.loads(data.decode("utf-8")) + + +def test_authz_true(context): + import moon_wrapper.server + server = moon_wrapper.server.main() + client = server.app.test_client() + _target = { + 'target': { + "name": context.get('object_name'), + }, + "project_id": context.get('project_id'), + "user_id": context.get('subject_name') + } + authz_data = { + 'rule': context.get('action_name'), + 'target': json.dumps(_target), + 'credentials': 'null'} + req = client.post("/authz", data=json.dumps(authz_data)) + assert req.status_code == 200 + assert req.data + assert isinstance(req.data, bytes) + assert req.data == b"True" + -- cgit 1.2.3-korg