Skip to content
Snippets Groups Projects
Commit 8ccc7cd7 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

DOC: Added more in-code documentation.

parent 76b7a5f5
No related branches found
No related tags found
1 merge request!9Tests for obligatory properties
Pipeline #8944 passed
......@@ -40,7 +40,7 @@ def test_obl_missing_error():
rt1.add_property(name="TestOblProperty", importance=db.OBLIGATORY)
rt1.insert()
# normal behaviour
# normal behaviour, should be identical to "error" level
rt2 = db.RecordType(name="TestRecordType2")
rt2.add_parent("TestRecordType1", inheritance=db.NONE)
rt2.add_property("TestDummyProperty")
......@@ -64,7 +64,8 @@ def test_obl_missing_error():
rt2.set_flag("force-missing-obligatory", "warn")
with raises(db.TransactionError) as exc:
rt2.insert(strict=True)
assert exc.value.errors[0].msg == "A warning occured while processing an entity with the strict flag."
assert exc.value.errors[0].msg == (
"A warning occured while processing an entity with the strict flag.")
assert "An obligatory property is missing." in [
w.description for w in rt2.get_warnings()]
......@@ -75,8 +76,8 @@ def test_obl_missing_error():
rt2.set_flag("force-missing-obligatory", "warn")
rt2.insert()
assert len(rt2.get_errors()) == 0
assert rt2.get_warnings(
)[0].description == "An obligatory property is missing."
assert (rt2.get_warnings()[0].description
== "An obligatory property is missing.")
# insert silently
rt3 = db.RecordType(name="TestRecordType3")
......@@ -105,6 +106,8 @@ def test_obl_missing_parent_in_same_container():
def test_obl_missing_parent_in_same_container_override():
"""`force-missing-obligatory` flags of entities override flags of containing containers.
"""
p = db.Property(name="TestOblProperty", datatype=db.TEXT).insert()
rt1 = db.RecordType(name="TestRecordType1")
......@@ -122,6 +125,8 @@ def test_obl_missing_parent_in_same_container_override():
def test_sub_property_of_obl():
"""If p1 <|- p2, then p2 should work for an obligatory p1.
"""
p1 = db.Property(name="TestOblProperty1", datatype=db.TEXT).insert()
p2 = db.Property(name="TestOblProperty2", datatype=db.TEXT)
p2.add_parent("TestOblProperty1")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment