Update test_pdp with more tests 73/49973/1
authorReemMahmoud <rfawzy.ext@orange.com>
Wed, 3 Jan 2018 19:42:37 +0000 (21:42 +0200)
committerReemMahmoud <rfawzy.ext@orange.com>
Wed, 3 Jan 2018 19:42:37 +0000 (21:42 +0200)
Change-Id: I08efe91b658dcf7a2342d0bfb528a2c5e0c45c46
Signed-off-by: ReemMahmoud <rfawzy.ext@orange.com>
python_moondb/tests/unit_python/test_pdp.py

index cb206d3..5134c0f 100755 (executable)
@@ -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