diff options
Diffstat (limited to 'aai-schema-ingest/src/test/resources/edgeRules/containsValidationTest.json')
-rw-r--r-- | aai-schema-ingest/src/test/resources/edgeRules/containsValidationTest.json | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/aai-schema-ingest/src/test/resources/edgeRules/containsValidationTest.json b/aai-schema-ingest/src/test/resources/edgeRules/containsValidationTest.json new file mode 100644 index 00000000..06e599b1 --- /dev/null +++ b/aai-schema-ingest/src/test/resources/edgeRules/containsValidationTest.json @@ -0,0 +1,64 @@ +{ + "rules" : [ + { + "from": "human", + "to": "monster", + "label": "fights", + "direction": "OUT", + "multiplicity": "ONE2ONE", + "contains-other-v": "${direction}", + "delete-other-v": "NONE", + "prevent-delete": "NONE", + "default": "true", + "description":"valid set with one containment" + }, + { + "from": "human", + "to": "monster", + "label": "avoids", + "direction": "OUT", + "multiplicity": "ONE2ONE", + "contains-other-v": "NONE", + "delete-other-v": "NONE", + "prevent-delete": "NONE", + "default": "true", + "description":"valid set with one containment" + }, + { + "from": "cheese", + "to": "bread", + "label": "eatenWith", + "direction": "OUT", + "multiplicity": "ONE2ONE", + "contains-other-v": "NONE", + "delete-other-v": "NONE", + "prevent-delete": "NONE", + "default": "true", + "description":"valid set with no containment" + }, + { + "from": "box", + "to": "cat", + "label": "contains", + "direction": "OUT", + "multiplicity": "ONE2ONE", + "contains-other-v": "${direction}", + "delete-other-v": "NONE", + "prevent-delete": "NONE", + "default": "true", + "description":"invalid set with more than one containment" + }, + { + "from": "box", + "to": "cat", + "label": "encapsulates", + "direction": "OUT", + "multiplicity": "ONE2ONE", + "contains-other-v": "IN", + "delete-other-v": "NONE", + "prevent-delete": "NONE", + "default": "true", + "description":"invalid set with more than one containment" + } + ] +}
\ No newline at end of file |