use of org.apache.rya.streams.kafka.processors.ProcessorResult.UnaryResult in project incubator-rya by apache.
the class MultiProjectionProcessorTest method showProjectionFunctionIsCalled.
@Test
public void showProjectionFunctionIsCalled() throws Exception {
// The SPARQL that will define the projection.
final MultiProjection multiProjection = RdfTestUtil.getMultiProjection("CONSTRUCT {" + "_:b a <urn:movementObservation> ; " + "<urn:location> ?location ; " + "<urn:direction> ?direction ; " + "}" + "WHERE {" + "?thing <urn:corner> ?location ." + "?thing <urn:compass> ?direction." + "}");
// Create a Binding Set that contains the result of the WHERE clause.
final ValueFactory vf = new ValueFactoryImpl();
final MapBindingSet inputBs = new MapBindingSet();
inputBs.addBinding("location", vf.createURI("urn:corner1"));
inputBs.addBinding("direction", vf.createURI("urn:NW"));
final VisibilityBindingSet inputVisBs = new VisibilityBindingSet(inputBs, "a|b");
// Make the expected results.
final Set<VisibilityBindingSet> expected = new HashSet<>();
final String blankNodeId = UUID.randomUUID().toString();
final BNode blankNode = vf.createBNode(blankNodeId);
MapBindingSet expectedBs = new MapBindingSet();
expectedBs.addBinding("subject", blankNode);
expectedBs.addBinding("predicate", RDF.TYPE);
expectedBs.addBinding("object", vf.createURI("urn:movementObservation"));
expected.add(new VisibilityBindingSet(expectedBs, "a|b"));
expectedBs = new MapBindingSet();
expectedBs.addBinding("subject", blankNode);
expectedBs.addBinding("predicate", vf.createURI("urn:direction"));
expectedBs.addBinding("object", vf.createURI("urn:NW"));
expected.add(new VisibilityBindingSet(expectedBs, "a|b"));
expectedBs = new MapBindingSet();
expectedBs.addBinding("subject", blankNode);
expectedBs.addBinding("predicate", vf.createURI("urn:location"));
expectedBs.addBinding("object", vf.createURI("urn:corner1"));
expected.add(new VisibilityBindingSet(expectedBs, "a|b"));
// Mock the processor context that will be invoked.
final ProcessorContext context = mock(ProcessorContext.class);
// Run the test.
final MultiProjectionProcessor processor = new MultiProjectionProcessor(MultiProjectionEvaluator.make(multiProjection, () -> blankNodeId), result -> ProcessorResult.make(new UnaryResult(result)));
processor.init(context);
processor.process("key", ProcessorResult.make(new UnaryResult(inputVisBs)));
final ArgumentCaptor<ProcessorResult> results = ArgumentCaptor.forClass(ProcessorResult.class);
verify(context, times(3)).forward(any(), results.capture());
final Set<VisibilityBindingSet> resultBindingSets = results.getAllValues().stream().map(result -> {
return (result.getType() == ResultType.UNARY) ? result.getUnary().getResult() : result.getBinary().getResult();
}).collect(Collectors.toSet());
assertEquals(expected, resultBindingSets);
}
use of org.apache.rya.streams.kafka.processors.ProcessorResult.UnaryResult in project incubator-rya by apache.
the class StatementOutputFormatterTest method predicateWrongType.
@Test
public void predicateWrongType() {
// Create the input binding set.
final ValueFactory vf = new ValueFactoryImpl();
final MapBindingSet bindingSet = new MapBindingSet();
bindingSet.addBinding("subject", vf.createURI("urn:Alice"));
bindingSet.addBinding("predicate", vf.createLiteral("age"));
bindingSet.addBinding("object", vf.createLiteral(34));
final VisibilityBindingSet visBs = new VisibilityBindingSet(bindingSet, "a");
// Mock the processor context that will be invoked.
final ProcessorContext context = mock(ProcessorContext.class);
// Run the test.
final StatementOutputFormatter formatter = new StatementOutputFormatter();
formatter.init(context);
formatter.process("key", ProcessorResult.make(new UnaryResult(visBs)));
// Verify the mock was never invoked.
verify(context, times(0)).forward(any(), any());
}
use of org.apache.rya.streams.kafka.processors.ProcessorResult.UnaryResult in project incubator-rya by apache.
the class StatementOutputFormatterTest method missingPredicate.
@Test
public void missingPredicate() {
// Create the input binding set.
final ValueFactory vf = new ValueFactoryImpl();
final MapBindingSet bindingSet = new MapBindingSet();
bindingSet.addBinding("subject", vf.createURI("urn:Alice"));
bindingSet.addBinding("object", vf.createLiteral(34));
final VisibilityBindingSet visBs = new VisibilityBindingSet(bindingSet, "a");
// Mock the processor context that will be invoked.
final ProcessorContext context = mock(ProcessorContext.class);
// Run the test.
final StatementOutputFormatter formatter = new StatementOutputFormatter();
formatter.init(context);
formatter.process("key", ProcessorResult.make(new UnaryResult(visBs)));
// Verify the mock was never invoked.
verify(context, times(0)).forward(any(), any());
}
use of org.apache.rya.streams.kafka.processors.ProcessorResult.UnaryResult in project incubator-rya by apache.
the class ProjectionProcessorTest method showProjectionFunctionIsCalled.
@Test
public void showProjectionFunctionIsCalled() throws Exception {
// A query whose projection does not change anything.
final Projection projection = RdfTestUtil.getProjection("SELECT (?person AS ?p) (?employee AS ?e) ?business " + "WHERE { " + "?person <urn:talksTo> ?employee . " + "?employee <urn:worksAt> ?business . " + "}");
// Create a Binding Set that contains the result of the WHERE clause.
final ValueFactory vf = new ValueFactoryImpl();
final MapBindingSet inputBs = new MapBindingSet();
inputBs.addBinding("person", vf.createURI("urn:Alice"));
inputBs.addBinding("employee", vf.createURI("urn:Bob"));
inputBs.addBinding("business", vf.createURI("urn:TacoJoint"));
final VisibilityBindingSet inputVisBs = new VisibilityBindingSet(inputBs, "a");
// The expected binding set changes the "person" binding name to "p" and "employee" to "e".
final MapBindingSet expectedBs = new MapBindingSet();
expectedBs.addBinding("p", vf.createURI("urn:Alice"));
expectedBs.addBinding("e", vf.createURI("urn:Bob"));
expectedBs.addBinding("business", vf.createURI("urn:TacoJoint"));
final VisibilityBindingSet expectedVisBs = new VisibilityBindingSet(expectedBs, "a");
// Show it resulted in the correct output BindingSet.
final ProcessorContext context = mock(ProcessorContext.class);
final ProjectionProcessor processor = new ProjectionProcessor(ProjectionEvaluator.make(projection), result -> ProcessorResult.make(new UnaryResult(result)));
processor.init(context);
processor.process("key", ProcessorResult.make(new UnaryResult(inputVisBs)));
// Verify the expected binding set was emitted.
final ProcessorResult expected = ProcessorResult.make(new UnaryResult(expectedVisBs));
verify(context, times(1)).forward(eq("key"), eq(expected));
}
use of org.apache.rya.streams.kafka.processors.ProcessorResult.UnaryResult in project incubator-rya by apache.
the class FilterProcessorTest method showFilterFunctionIsCalled.
@Test
public void showFilterFunctionIsCalled() throws Exception {
// Read the filter object from a SPARQL query.
final Filter filter = RdfTestUtil.getFilter("SELECT * " + "WHERE { " + "FILTER(?age < 10)" + "?person <urn:age> ?age " + "}");
// Create a Binding Set that will be passed into the Filter function based on the where clause.
final ValueFactory vf = new ValueFactoryImpl();
final MapBindingSet bs = new MapBindingSet();
bs.addBinding("person", vf.createURI("urn:Alice"));
bs.addBinding("age", vf.createLiteral(9));
final VisibilityBindingSet inputVisBs = new VisibilityBindingSet(bs, "a");
// Mock the processor context that will be invoked.
final ProcessorContext context = mock(ProcessorContext.class);
// Run the test.
final FilterProcessor processor = new FilterProcessor(FilterEvaluator.make(filter), result -> ProcessorResult.make(new UnaryResult(result)));
processor.init(context);
processor.process("key", ProcessorResult.make(new UnaryResult(inputVisBs)));
// Verify the binding set was passed through.
verify(context, times(1)).forward(eq("key"), eq(ProcessorResult.make(new UnaryResult(inputVisBs))));
}
Aggregations