Search in sources :

Example 36 with StatementImpl

use of org.wikidata.wdtk.datamodel.implementation.StatementImpl in project OpenRefine by OpenRefine.

the class QuantityScrutinizerTest method testWrongUnit.

@Test
public void testWrongUnit() {
    ItemIdValue idA = TestingData.existingId;
    Snak mainSnak = Datamodel.makeValueSnak(propertyIdValue, wrongUnitValue);
    Statement statement = new StatementImpl("P1083", mainSnak, idA);
    TermedStatementEntityEdit update = new TermedStatementEntityEditBuilder(idA).addStatement(add(statement)).build();
    Snak qualifierSnak = Datamodel.makeValueSnak(itemParameterPID, allowedUnit);
    List<Snak> qualifierSnakList = Collections.singletonList(qualifierSnak);
    SnakGroup snakGroup1 = Datamodel.makeSnakGroup(qualifierSnakList);
    List<SnakGroup> constraintQualifiers = Collections.singletonList(snakGroup1);
    List<Statement> constraintDefinitions = constraintParameterStatementList(allowedUnitEntity, constraintQualifiers);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(propertyIdValue, ALLOWED_UNITS_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    setFetcher(fetcher);
    scrutinize(update);
    assertWarningsRaised(QuantityScrutinizer.invalidUnitType);
}
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) SnakGroup(org.wikidata.wdtk.datamodel.interfaces.SnakGroup) Test(org.testng.annotations.Test)

Example 37 with StatementImpl

use of org.wikidata.wdtk.datamodel.implementation.StatementImpl in project OpenRefine by OpenRefine.

the class RestrictedValuesScrutinizerTest method testAllowedValue.

@Test
public void testAllowedValue() {
    Snak mainSnak = Datamodel.makeValueSnak(allowedPropertyIdValue, allowedValue);
    Statement statement = new StatementImpl("P1622", mainSnak, qid);
    Snak qualifierSnak = Datamodel.makeValueSnak(itemParameterPID, allowedValue);
    List<SnakGroup> constraintQualifiers = makeSnakGroupList(qualifierSnak);
    List<Statement> constraintDefinitions = constraintParameterStatementList(allowedValueEntity, constraintQualifiers);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(allowedPropertyIdValue, ALLOWED_VALUES_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    when(fetcher.getConstraintsByType(allowedPropertyIdValue, DISALLOWED_VALUES_CONSTRAINT_QID)).thenReturn(new ArrayList<>());
    setFetcher(fetcher);
    scrutinize(statement);
    assertNoWarningRaised();
}
Also used : Snak(org.wikidata.wdtk.datamodel.interfaces.Snak) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) SnakGroup(org.wikidata.wdtk.datamodel.interfaces.SnakGroup) Test(org.testng.annotations.Test)

Example 38 with StatementImpl

use of org.wikidata.wdtk.datamodel.implementation.StatementImpl in project OpenRefine by OpenRefine.

the class RestrictedValuesScrutinizerTest method testAllowedValueFailing.

@Test
public void testAllowedValueFailing() {
    Snak mainSnak = Datamodel.makeSomeValueSnak(allowedPropertyIdValue);
    Statement statement = new StatementImpl("P1622", mainSnak, qid);
    Snak qualifierSnak = Datamodel.makeValueSnak(itemParameterPID, allowedValue);
    List<SnakGroup> constraintQualifiers = makeSnakGroupList(qualifierSnak);
    List<Statement> constraintDefinitions = constraintParameterStatementList(allowedValueEntity, constraintQualifiers);
    ConstraintFetcher fetcher = mock(ConstraintFetcher.class);
    when(fetcher.getConstraintsByType(allowedPropertyIdValue, ALLOWED_VALUES_CONSTRAINT_QID)).thenReturn(constraintDefinitions);
    when(fetcher.getConstraintsByType(allowedPropertyIdValue, DISALLOWED_VALUES_CONSTRAINT_QID)).thenReturn(new ArrayList<>());
    setFetcher(fetcher);
    scrutinize(statement);
    assertWarningsRaised(RestrictedValuesScrutinizer.type);
}
Also used : Snak(org.wikidata.wdtk.datamodel.interfaces.Snak) ConstraintFetcher(org.openrefine.wikidata.qa.ConstraintFetcher) Statement(org.wikidata.wdtk.datamodel.interfaces.Statement) StatementImpl(org.wikidata.wdtk.datamodel.implementation.StatementImpl) SnakGroup(org.wikidata.wdtk.datamodel.interfaces.SnakGroup) Test(org.testng.annotations.Test)

Example 39 with StatementImpl

use of org.wikidata.wdtk.datamodel.implementation.StatementImpl 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 40 with StatementImpl

use of org.wikidata.wdtk.datamodel.implementation.StatementImpl 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)

Aggregations

ConstraintFetcher (org.openrefine.wikidata.qa.ConstraintFetcher)48 Test (org.testng.annotations.Test)48 StatementImpl (org.wikidata.wdtk.datamodel.implementation.StatementImpl)48 Statement (org.wikidata.wdtk.datamodel.interfaces.Statement)48 TermedStatementEntityEdit (org.openrefine.wikidata.updates.TermedStatementEntityEdit)44 TermedStatementEntityEditBuilder (org.openrefine.wikidata.updates.TermedStatementEntityEditBuilder)44 ItemIdValue (org.wikidata.wdtk.datamodel.interfaces.ItemIdValue)44 Snak (org.wikidata.wdtk.datamodel.interfaces.Snak)43 SnakGroup (org.wikidata.wdtk.datamodel.interfaces.SnakGroup)28 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