aboutsummaryrefslogtreecommitdiffstats
path: root/python_moondb
diff options
context:
space:
mode:
authorRuan HE <ruan.he@orange.com>2018-01-03 20:34:39 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-03 20:34:39 +0000
commit6d614765337c892749d499068f5e98b46b1596ba (patch)
tree1a47005e39cf9943a23c4f9c86ebb30fcb7fca78 /python_moondb
parent822b8d1a288c9b2356a74c95e707d72f6f891487 (diff)
parente02142aee04bc1d9bf0c3309802ba1bce34f60f3 (diff)
Merge "Update test_pdp with more tests"
Diffstat (limited to 'python_moondb')
-rwxr-xr-xpython_moondb/tests/unit_python/test_pdp.py43
1 files changed, 43 insertions, 0 deletions
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