use of com.vaticle.typedb.core.concept.type.EntityType in project grakn by graknlabs.
the class RuleTest method rule_when_that_cannot_be_satisfied_throws_an_error.
@Test
public void rule_when_that_cannot_be_satisfied_throws_an_error() throws IOException {
Util.resetDirectory(dataDir);
try (CoreDatabaseManager databaseMgr = CoreDatabaseManager.open(options)) {
databaseMgr.create(database);
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.SCHEMA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
final ConceptManager conceptMgr = txn.concepts();
final EntityType person = conceptMgr.putEntityType("person");
final EntityType dog = conceptMgr.putEntityType("dog");
final AttributeType name = conceptMgr.putAttributeType("name", AttributeType.ValueType.STRING);
person.setOwns(name);
// a when using an illegal comparator
assertThrowsTypeDBException(() -> txn.logic().putRule("two-unique-dogs-exist-called-fido", TypeQL.parsePattern("{$x isa dog; $y isa dog; $x != $y;}").asConjunction(), TypeQL.parseVariable("$x has name 'fido'").asThing()), RULE_WHEN_CANNOT_BE_SATISFIED.code());
}
}
}
}
use of com.vaticle.typedb.core.concept.type.EntityType in project grakn by graknlabs.
the class RuleTest method rule_indexes_created_and_readable.
// ------------ Rule conclusion indexing ------------
@Test
public void rule_indexes_created_and_readable() throws IOException {
Util.resetDirectory(dataDir);
try (CoreDatabaseManager databaseMgr = CoreDatabaseManager.open(options)) {
databaseMgr.create(database);
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.SCHEMA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
LogicManager logicMgr = txn.logic();
EntityType person = conceptMgr.putEntityType("person");
RelationType friendship = conceptMgr.putRelationType("friendship");
friendship.setRelates("friend");
RelationType marriage = conceptMgr.putRelationType("marriage");
AttributeType name = conceptMgr.putAttributeType("name", AttributeType.ValueType.STRING);
AttributeType age = conceptMgr.putAttributeType("age", AttributeType.ValueType.LONG);
marriage.setRelates("spouse");
person.setPlays(friendship.getRelates("friend"));
person.setPlays(marriage.getRelates("spouse"));
person.setOwns(name);
person.setOwns(age);
Rule marriageFriendsRule = logicMgr.putRule("marriage-is-friendship", TypeQL.parsePattern("{ $x isa person; $y isa person; (spouse: $x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("(friend: $x, friend: $y) isa friendship").asThing());
Conjunction marriageFriendsThen = marriageFriendsRule.then();
Variable marriageFriendsRelation = getVariable(marriageFriendsThen.variables(), Identifier.Variable.anon(0));
assertEquals(set(Label.of("friendship")), marriageFriendsRelation.inferredTypes());
Rule allFriendsRule = logicMgr.putRule("all-people-are-friends", TypeQL.parsePattern("{ $x isa person; $y isa person; $t type friendship; }").asConjunction(), TypeQL.parseVariable("(friend: $x, friend: $y) isa $t").asThing());
Conjunction allFriendsThen = allFriendsRule.then();
Variable allFriendsRelation = getVariable(allFriendsThen.variables(), Identifier.Variable.anon(0));
assertEquals(set(Label.of("friendship")), allFriendsRelation.inferredTypes());
Rule marriageSameName = logicMgr.putRule("marriage-same-name", TypeQL.parsePattern("{ $x isa person, has name $a; $y isa person; (spouse:$x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("$y has $a").asThing());
Conjunction sameName = marriageSameName.then();
Variable nameAttr = getVariable(sameName.variables(), Identifier.Variable.name("a"));
assertEquals(set(Label.of("name")), nameAttr.inferredTypes());
Rule peopleHaveAge10 = logicMgr.putRule("people-have-age-10", TypeQL.parsePattern("{ $x isa person; }").asConjunction(), TypeQL.parseVariable("$x has age 10").asThing());
Conjunction age10 = peopleHaveAge10.then();
Variable ageAttr = getVariable(age10.variables(), Identifier.Variable.anon(0));
assertEquals(set(Label.of("age")), ageAttr.inferredTypes());
txn.commit();
}
}
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.DATA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.READ)) {
LogicManager logicMgr = txn.logic();
Set<Rule> friendshipRules = logicMgr.rulesConcluding(Label.of("friendship")).toSet();
Rule marriageFriendsRule = txn.logic().getRule("marriage-is-friendship");
Rule allFriendsRule = txn.logic().getRule("all-people-are-friends");
assertEquals(set(marriageFriendsRule, allFriendsRule), friendshipRules);
Set<Rule> hasNameRules = logicMgr.rulesConcludingHas(Label.of("name")).toSet();
Rule marriageSameName = txn.logic().getRule("marriage-same-name");
assertEquals(set(marriageSameName), hasNameRules);
Set<Rule> hasAgeRules = logicMgr.rulesConcludingHas(Label.of("age")).toSet();
Set<Rule> ageRules = logicMgr.rulesConcluding(Label.of("age")).toSet();
Rule peopleHaveAge10 = txn.logic().getRule("people-have-age-10");
assertEquals(set(peopleHaveAge10), hasAgeRules);
assertEquals(set(peopleHaveAge10), ageRules);
}
}
}
}
use of com.vaticle.typedb.core.concept.type.EntityType in project grakn by graknlabs.
the class RuleTest method rule_contains_indexes_allow_deleting_type_after_deleting_rule.
@Test
public void rule_contains_indexes_allow_deleting_type_after_deleting_rule() throws IOException {
Util.resetDirectory(dataDir);
try (CoreDatabaseManager databaseMgr = CoreDatabaseManager.open(options)) {
databaseMgr.create(database);
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.SCHEMA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
LogicManager logicMgr = txn.logic();
GraphManager graphMgr = logicMgr.graph();
EntityType person = conceptMgr.putEntityType("person");
RelationType friendship = conceptMgr.putRelationType("friendship");
friendship.setRelates("friend");
RelationType marriage = conceptMgr.putRelationType("marriage");
AttributeType name = conceptMgr.putAttributeType("name", AttributeType.ValueType.STRING);
marriage.setRelates("spouse");
person.setPlays(friendship.getRelates("friend"));
person.setPlays(marriage.getRelates("spouse"));
person.setOwns(name);
Rule marriageFriendsRule = logicMgr.putRule("marriage-is-friendship", TypeQL.parsePattern("{ $x isa person; $y isa person; (spouse: $x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("(friend: $x, friend: $y) isa friendship").asThing());
assertIndexTypesContainRule(set(Label.of("person"), Label.of("spouse", "marriage"), Label.of("marriage"), Label.of("friend", "friendship"), Label.of("friendship")), marriageFriendsRule.getLabel(), graphMgr);
Rule marriageSameName = logicMgr.putRule("marriage-same-name", TypeQL.parsePattern("{ $x isa person, has name $a; $y isa person; (spouse:$x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("$y has $a").asThing());
assertIndexTypesContainRule(set(Label.of("person"), Label.of("spouse", "marriage"), Label.of("marriage"), Label.of("name")), marriageSameName.getLabel(), graphMgr);
txn.commit();
}
// check the rule index is still established after commit
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.READ)) {
Rule marriageFriendsRule = txn.logic().getRule("marriage-is-friendship");
assertIndexTypesContainRule(set(Label.of("person"), Label.of("spouse", "marriage"), Label.of("marriage"), Label.of("friend", "friendship"), Label.of("friendship")), marriageFriendsRule.getLabel(), txn.logic().graph());
Rule marriageSameName = txn.logic().getRule("marriage-same-name");
assertIndexTypesContainRule(set(Label.of("person"), Label.of("spouse", "marriage"), Label.of("marriage"), Label.of("name")), marriageSameName.getLabel(), txn.logic().graph());
}
// deleting a relation type used in a rule should throw
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
RelationType friendship = conceptMgr.getRelationType("friendship");
assertThrowsTypeDBException(friendship::delete, ErrorMessage.TypeWrite.TYPE_REFERENCED_IN_RULES.code());
assertTrue(!txn.isOpen());
}
// deleting an attribute type used in a rule should throw
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
AttributeType name = conceptMgr.getAttributeType("name");
assertThrowsTypeDBException(name::delete, ErrorMessage.TypeWrite.TYPE_REFERENCED_IN_RULES.code());
assertTrue(!txn.isOpen());
}
// deleting a rule, then an attribute type used in the rule is allowed
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
AttributeType name = conceptMgr.getAttributeType("name");
LogicManager logicMgr = txn.logic();
Rule marriageSameName = logicMgr.getRule("marriage-same-name");
marriageSameName.delete();
assertNotThrows(name::delete);
txn.commit();
}
// deleting a rule, then an entity type used in the rule is allowed
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
RelationType person = conceptMgr.getRelationType("friendship");
LogicManager logicMgr = txn.logic();
Rule marriageIsFriendship = logicMgr.getRule("marriage-is-friendship");
marriageIsFriendship.delete();
assertNotThrows(person::delete);
txn.commit();
}
// after all rules are deleted, no rules should exist in the index
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.READ)) {
LogicManager logicMgr = txn.logic();
GraphManager graphMgr = logicMgr.graph();
// no types should be in the index
graphMgr.schema().thingTypes().forEachRemaining(type -> {
assertFalse(graphMgr.schema().rules().references().get(graphMgr.schema().getType(type.properLabel())).hasNext());
});
}
}
}
}
use of com.vaticle.typedb.core.concept.type.EntityType in project grakn by graknlabs.
the class RuleTest method rule_indexes_update_on_rule_delete.
@Test
public void rule_indexes_update_on_rule_delete() throws IOException {
Util.resetDirectory(dataDir);
try (CoreDatabaseManager databaseMgr = CoreDatabaseManager.open(options)) {
databaseMgr.create(database);
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.SCHEMA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
LogicManager logicMgr = txn.logic();
EntityType person = conceptMgr.putEntityType("person");
RelationType friendship = conceptMgr.putRelationType("friendship");
friendship.setRelates("friend");
RelationType marriage = conceptMgr.putRelationType("marriage");
AttributeType name = conceptMgr.putAttributeType("name", AttributeType.ValueType.STRING);
marriage.setRelates("spouse");
person.setPlays(friendship.getRelates("friend"));
person.setPlays(marriage.getRelates("spouse"));
person.setOwns(name);
Rule marriageFriendsRule = logicMgr.putRule("marriage-is-friendship", TypeQL.parsePattern("{ $x isa person; $y isa person; (spouse: $x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("(friend: $x, friend: $y) isa friendship").asThing());
Conjunction marriageFriendsThen = marriageFriendsRule.then();
Variable marriageFriendsRelation = getVariable(marriageFriendsThen.variables(), Identifier.Variable.anon(0));
assertEquals(set(Label.of("friendship")), marriageFriendsRelation.inferredTypes());
Rule allFriendsRule = logicMgr.putRule("all-people-are-friends", TypeQL.parsePattern("{ $x isa person; $y isa person; $t type friendship; }").asConjunction(), TypeQL.parseVariable("(friend: $x, friend: $y) isa $t").asThing());
Conjunction allFriendsThen = allFriendsRule.then();
Variable allFriendsRelation = getVariable(allFriendsThen.variables(), Identifier.Variable.anon(0));
assertEquals(set(Label.of("friendship")), allFriendsRelation.inferredTypes());
Rule marriageSameName = logicMgr.putRule("marriage-same-name", TypeQL.parsePattern("{ $x isa person, has name $a; $y isa person; (spouse:$x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("$y has $a").asThing());
Conjunction sameName = marriageSameName.then();
Variable nameAttr = getVariable(sameName.variables(), Identifier.Variable.name("a"));
assertEquals(set(Label.of("name")), nameAttr.inferredTypes());
txn.commit();
}
// check index after commit, and delete some rules
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
LogicManager logicMgr = txn.logic();
Set<Rule> friendshipRules = logicMgr.rulesConcluding(Label.of("friendship")).toSet();
Rule marriageFriendsRule = txn.logic().getRule("marriage-is-friendship");
Rule allFriendsRule = txn.logic().getRule("all-people-are-friends");
assertEquals(set(marriageFriendsRule, allFriendsRule), friendshipRules);
allFriendsRule.delete();
Set<Rule> hasNameRules = logicMgr.rulesConcludingHas(Label.of("name")).toSet();
Rule marriageSameName = txn.logic().getRule("marriage-same-name");
assertEquals(set(marriageSameName), hasNameRules);
marriageSameName.delete();
txn.commit();
}
}
// check indexed types, should only includes rules that are still present
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.DATA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.READ)) {
LogicManager logicMgr = txn.logic();
Set<Rule> friendshipRules = logicMgr.rulesConcluding(Label.of("friendship")).toSet();
Rule marriageFriendsRule = txn.logic().getRule("marriage-is-friendship");
assertEquals(set(marriageFriendsRule), friendshipRules);
Set<Rule> hasNameRules = logicMgr.rulesConcludingHas(Label.of("name")).toSet();
assertEquals(set(), hasNameRules);
}
}
}
}
use of com.vaticle.typedb.core.concept.type.EntityType in project grakn by graknlabs.
the class RuleTest method rule_relation_does_not_materialise_when_present.
@Test
public void rule_relation_does_not_materialise_when_present() throws IOException {
Util.resetDirectory(dataDir);
try (CoreDatabaseManager databaseMgr = CoreDatabaseManager.open(options)) {
databaseMgr.create(database);
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.SCHEMA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
LogicManager logicMgr = txn.logic();
EntityType person = conceptMgr.putEntityType("person");
RelationType friendship = conceptMgr.putRelationType("friendship");
friendship.setRelates("friend");
RelationType marriage = conceptMgr.putRelationType("marriage");
marriage.setRelates("spouse");
person.setPlays(friendship.getRelates("friend"));
person.setPlays(marriage.getRelates("spouse"));
logicMgr.putRule("marriage-is-friendship", TypeQL.parsePattern("{ $x isa person; $y isa person; (spouse: $x, spouse: $y) isa marriage; }").asConjunction(), TypeQL.parseVariable("(friend: $x, friend: $y) isa friendship").asThing());
txn.commit();
}
}
try (CoreSession session = databaseMgr.session(database, Arguments.Session.Type.DATA)) {
try (CoreTransaction txn = session.transaction(Arguments.Transaction.Type.WRITE)) {
ConceptManager conceptMgr = txn.concepts();
RelationType friendship = conceptMgr.getRelationType("friendship");
txn.query().insert(TypeQL.parseQuery("insert $x isa person; $y isa person; " + "(spouse: $x, spouse: $y) isa marriage;" + "(friend: $x, friend: $y) isa friendship;").asInsert());
List<? extends Relation> friendshipInstances = friendship.getInstances().toList();
assertEquals(1, friendshipInstances.size());
EntityType person = conceptMgr.getEntityType("person");
List<? extends Entity> people = person.getInstances().toList();
assertEquals(2, people.size());
Rule rule = txn.logic().getRule("marriage-is-friendship");
ConceptMap whenAnswer = new ConceptMap(map(pair(Identifier.Variable.name("x"), people.get(0)), pair(Identifier.Variable.name("y"), people.get(1))));
List<Map<Identifier.Variable, Concept>> materialisations = rule.conclusion().materialise(whenAnswer, txn.traversal(), conceptMgr).toList();
assertEquals(1, materialisations.size());
assertEquals(5, materialisations.get(0).size());
friendshipInstances = friendship.getInstances().toList();
assertEquals(1, friendshipInstances.size());
assertEquals(friendshipInstances.get(0), materialisations.get(0).get(Identifier.Variable.anon(0)));
assertEquals(friendship, materialisations.get(0).get(Identifier.Variable.label("friendship")));
}
}
}
}
Aggregations