From e02142aee04bc1d9bf0c3309802ba1bce34f60f3 Mon Sep 17 00:00:00 2001 From: ReemMahmoud Date: Wed, 3 Jan 2018 21:42:37 +0200 Subject: Update test_pdp with more tests Change-Id: I08efe91b658dcf7a2342d0bfb528a2c5e0c45c46 Signed-off-by: ReemMahmoud --- python_moondb/tests/unit_python/test_pdp.py | 43 +++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'python_moondb') diff --git a/python_moondb/tests/unit_python/test_pdp.py b/python_moondb/tests/unit_python/test_pdp.py index cb206d3d..5134c0fb 100755 --- a/python_moondb/tests/unit_python/test_pdp.py +++ b/python_moondb/tests/unit_python/test_pdp.py @@ -1,3 +1,6 @@ +import pytest + + def update_pdp(pdp_id, value): from python_moondb.core import PDPManager return PDPManager.update_pdp("", pdp_id, value) @@ -31,6 +34,19 @@ def test_update_pdp(db): assert pdp +def test_update_pdp_with_invalid_id(db): + pdp_id = "pdp_id1" + value = { + "name": "test_pdp", + "security_pipeline": ["policy_id_1", "policy_id_2"], + "keystone_project_id": "keystone_project_id1", + "description": "...", + } + with pytest.raises(Exception) as exception_info: + update_pdp(pdp_id, value) + assert str(exception_info.value) == '400: Pdp Unknown' + + def test_delete_pdp(db): pdp_id = "pdp_id1" value = { @@ -44,6 +60,13 @@ def test_delete_pdp(db): assert len(get_pdp(pdp_id)) == 0 +def test_delete_pdp_with_invalid_id(db): + pdp_id = "pdp_id1" + with pytest.raises(Exception) as exception_info: + delete_pdp(pdp_id) + assert str(exception_info.value) == '400: Pdp Unknown' + + def test_add_pdp(db): pdp_id = "pdp_id1" value = { @@ -56,6 +79,20 @@ def test_add_pdp(db): assert pdp +def test_add_pdp_twice_with_same_id(db): + pdp_id = "pdp_id1" + value = { + "name": "test_pdp", + "security_pipeline": ["policy_id_1", "policy_id_2"], + "keystone_project_id": "keystone_project_id1", + "description": "...", + } + add_pdp(pdp_id, value) + with pytest.raises(Exception) as exception_info: + add_pdp(pdp_id, value) + assert str(exception_info.value) == '409: Pdp Error' + + def test_get_pdp(db): pdp_id = "pdp_id1" value = { @@ -67,3 +104,9 @@ def test_get_pdp(db): add_pdp(pdp_id, value) pdp = get_pdp(pdp_id) assert len(pdp) == 1 + + +def test_get_pdp_with_invalid_id(db): + pdp_id = "invalid" + pdp = get_pdp(pdp_id) + assert len(pdp) == 0 -- cgit 1.2.3-korg