Search in sources :

Example 26 with ConstraintFetcher

use of org.openrefine.wikidata.qa.ConstraintFetcher in project OpenRefine by OpenRefine.

the class MultiValueScrutinizerTest method testExistingItemTrigger.

@Test
public void testExistingItemTrigger() {
    ItemIdValue idA = TestingData.existingId;
    ItemIdValue idB = TestingData.matchedId;
    Snak mainSnakValue = Datamodel.makeValueSnak(propertyIdValue, valueSnak);
    Statement statement = new StatementImpl("P1963", mainSnakValue, idA);
    TermedStatementEntityEdit updateA = new TermedStatementEntityEditBuilder(idA).addStatement(add(TestingData.generateStatement(idA, idB))).addStatement(add(statement)).build();
    TermedStatementEntityEdit updateB = new TermedStatementEntityEditBuilder(idB).addStatement(add(TestingData.generateStatement(idB, idB))).build();
    List<Statement> constraintDefinitions = constraintParameterStatementList(entityIdValue, new ArrayList<>());
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(propertyIdValue, MULTI_VALUE_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    setFetcher(fetcher);
    scrutinize(updateA, updateB);
    assertWarningsRaised(MultiValueScrutinizer.existing_type);
}
Also used : ItemIdValue(org.wikidata.wdtk.datamodel.interfaces.ItemIdValue) Snak(org.wikidata.wdtk.datamodel.interfaces.Snak) TermedStatementEntityEditBuilder(org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) TermedStatementEntityEdit(org.openrefine.wikidata.updates.TermedStatementEntityEdit) Test(org.testng.annotations.Test)

Example 27 with ConstraintFetcher

use of org.openrefine.wikidata.qa.ConstraintFetcher in project OpenRefine by OpenRefine.

the class FormatScrutinizerTest method testIncompleteMatch.

@Test
public void testIncompleteMatch() {
    ItemIdValue idA = TestingData.existingId;
    ValueSnak value = Datamodel.makeValueSnak(propertyIdValue, incompleteMatchValue);
    Statement statement = new StatementImpl("P18", value, idA);
    TermedStatementEntityEdit updateA = new TermedStatementEntityEditBuilder(idA).addStatement(add(statement)).build();
    List<Statement> constraintDefinitions = generateFormatConstraint(regularExpression);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(propertyIdValue, FORMAT_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    setFetcher(fetcher);
    scrutinize(updateA);
    assertWarningsRaised(FormatScrutinizer.type);
}
Also used : ItemIdValue(org.wikidata.wdtk.datamodel.interfaces.ItemIdValue) TermedStatementEntityEditBuilder(org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) TermedStatementEntityEdit(org.openrefine.wikidata.updates.TermedStatementEntityEdit) ValueSnak(org.wikidata.wdtk.datamodel.interfaces.ValueSnak) Test(org.testng.annotations.Test)

Example 28 with ConstraintFetcher

use of org.openrefine.wikidata.qa.ConstraintFetcher in project OpenRefine by OpenRefine.

the class FormatScrutinizerTest method testNoIssue.

@Test
public void testNoIssue() {
    ItemIdValue idA = TestingData.existingId;
    ValueSnak value = Datamodel.makeValueSnak(propertyIdValue, completeMatchValue);
    Statement statement = new StatementImpl("P18", value, idA);
    TermedStatementEntityEdit updateA = new TermedStatementEntityEditBuilder(idA).addStatement(add(statement)).build();
    List<Statement> constraintDefinitions = generateFormatConstraint(regularExpression);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(propertyIdValue, FORMAT_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    setFetcher(fetcher);
    scrutinize(updateA);
    assertNoWarningRaised();
}
Also used : ItemIdValue(org.wikidata.wdtk.datamodel.interfaces.ItemIdValue) TermedStatementEntityEditBuilder(org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) TermedStatementEntityEdit(org.openrefine.wikidata.updates.TermedStatementEntityEdit) ValueSnak(org.wikidata.wdtk.datamodel.interfaces.ValueSnak) Test(org.testng.annotations.Test)

Example 29 with ConstraintFetcher

use of org.openrefine.wikidata.qa.ConstraintFetcher in project OpenRefine by OpenRefine.

the class FormatScrutinizerTest method testTrigger.

@Test
public void testTrigger() {
    ItemIdValue idA = TestingData.existingId;
    ValueSnak value = Datamodel.makeValueSnak(propertyIdValue, noMatchValue);
    Statement statement = new StatementImpl("P18", value, idA);
    TermedStatementEntityEdit updateA = new TermedStatementEntityEditBuilder(idA).addStatement(add(statement)).build();
    List<Statement> constraintDefinitions = generateFormatConstraint(regularExpression);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(propertyIdValue, FORMAT_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    setFetcher(fetcher);
    scrutinize(updateA);
    assertWarningsRaised(FormatScrutinizer.type);
}
Also used : ItemIdValue(org.wikidata.wdtk.datamodel.interfaces.ItemIdValue) TermedStatementEntityEditBuilder(org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) TermedStatementEntityEdit(org.openrefine.wikidata.updates.TermedStatementEntityEdit) ValueSnak(org.wikidata.wdtk.datamodel.interfaces.ValueSnak) Test(org.testng.annotations.Test)

Example 30 with ConstraintFetcher

use of org.openrefine.wikidata.qa.ConstraintFetcher in project OpenRefine by OpenRefine.

the class FormatScrutinizerTest method testInvalidRegex.

@Test
public void testInvalidRegex() {
    ItemIdValue idA = TestingData.existingId;
    ValueSnak value = Datamodel.makeValueSnak(propertyIdValue, incompleteMatchValue);
    Statement statement = new StatementImpl("P18", value, idA);
    TermedStatementEntityEdit updateA = new TermedStatementEntityEditBuilder(idA).addStatement(add(statement)).build();
    List<Statement> constraintDefinitions = generateFormatConstraint(invalidRegularExpression);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(propertyIdValue, FORMAT_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    setFetcher(fetcher);
    scrutinize(updateA);
    assertNoWarningRaised();
}
Also used : ItemIdValue(org.wikidata.wdtk.datamodel.interfaces.ItemIdValue) TermedStatementEntityEditBuilder(org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) TermedStatementEntityEdit(org.openrefine.wikidata.updates.TermedStatementEntityEdit) ValueSnak(org.wikidata.wdtk.datamodel.interfaces.ValueSnak) Test(org.testng.annotations.Test)

Aggregations

ConstraintFetcher (org.openrefine.wikidata.qa.ConstraintFetcher)58 Test (org.testng.annotations.Test)58 Statement (org.wikidata.wdtk.datamodel.interfaces.Statement)56 TermedStatementEntityEdit (org.openrefine.wikidata.updates.TermedStatementEntityEdit)52 TermedStatementEntityEditBuilder (org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder)52 ItemIdValue (org.wikidata.wdtk.datamodel.interfaces.ItemIdValue)52 Snak (org.wikidata.wdtk.datamodel.interfaces.Snak)51 StatementImpl (org.wikidata.wdtk.datamodel.implementation.StatementImpl)48 SnakGroup (org.wikidata.wdtk.datamodel.interfaces.SnakGroup)36 ValueSnak (org.wikidata.wdtk.datamodel.interfaces.ValueSnak)18 NoValueSnak (org.wikidata.wdtk.datamodel.interfaces.NoValueSnak)5 ArrayList (java.util.ArrayList)4 TimeValueImpl (org.wikidata.wdtk.datamodel.implementation.TimeValueImpl)2 TimeValue (org.wikidata.wdtk.datamodel.interfaces.TimeValue)2