use of com.hortonworks.streamline.streams.StreamlineEvent in project streamline by hortonworks.
the class SplitJoinTest method testStageProcessor.
@Test
public void testStageProcessor() {
final String enrichFieldName = "foo";
final String enrichedValue = "foo-enriched-value";
Map<Object, Object> data = new HashMap<Object, Object>() {
{
put("foo-value", enrichedValue);
}
};
InmemoryTransformDataProvider transformDataProvider = new InmemoryTransformDataProvider(data);
EnrichmentTransform enrichmentTransform = new EnrichmentTransform("enricher", Collections.singletonList(enrichFieldName), transformDataProvider);
StageAction stageAction = new StageAction(Collections.<Transform>singletonList(enrichmentTransform));
stageAction.setOutputStreams(Collections.singleton("output-stream"));
StageActionRuntime stageActionRuntime = new StageActionRuntime(stageAction);
stageActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(null, stageAction));
stageActionRuntime.initialize(Collections.<String, Object>emptyMap());
final List<Result> results = stageActionRuntime.execute(createRootEvent());
for (Result result : results) {
for (StreamlineEvent event : result.events) {
final Map enrichments = (Map) event.getAuxiliaryFieldsAndValues().get(EnrichmentTransform.ENRICHMENTS_FIELD_NAME);
Assert.assertEquals(enrichments.get(enrichFieldName), enrichedValue);
}
}
}
use of com.hortonworks.streamline.streams.StreamlineEvent in project streamline by hortonworks.
the class SplitJoinTest method testStageProcessorWithRules.
@Test
public void testStageProcessorWithRules() {
final String enrichFieldName = "foo";
final String enrichedValue = "foo-enriched-value";
Map<Object, Object> data = new HashMap<Object, Object>() {
{
put("foo-value", enrichedValue);
}
};
InmemoryTransformDataProvider transformDataProvider = new InmemoryTransformDataProvider(data);
EnrichmentTransform enrichmentTransform = new EnrichmentTransform("enricher", Collections.singletonList(enrichFieldName), transformDataProvider);
StageAction stageAction = new StageAction(Collections.<Transform>singletonList(enrichmentTransform));
SplitJoinRule stageRule = new SplitJoinRule("stage-1", stageAction, Collections.singleton("output-stream"));
StageActionRuntime stageActionRuntime = new StageActionRuntime(stageAction);
stageActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(stageRule, stageAction));
stageActionRuntime.initialize(Collections.<String, Object>emptyMap());
final List<Result> results = stageActionRuntime.execute(createRootEvent());
for (Result result : results) {
for (StreamlineEvent event : result.events) {
final Map enrichments = (Map) event.getAuxiliaryFieldsAndValues().get(EnrichmentTransform.ENRICHMENTS_FIELD_NAME);
Assert.assertEquals(enrichments.get(enrichFieldName), enrichedValue);
}
}
}
use of com.hortonworks.streamline.streams.StreamlineEvent in project streamline by hortonworks.
the class SplitJoinTest method runSplitJoin.
private void runSplitJoin(SplitJoinRule splitRule, SplitJoinRule joinRule, Map<String, Object> config) {
final SplitAction splitAction = (SplitAction) splitRule.getAction();
SplitActionRuntime splitActionRuntime = new SplitActionRuntime(splitAction);
splitActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(splitRule, splitAction));
splitActionRuntime.initialize(config);
StreamlineEvent streamlineEvent = createRootEvent();
final List<Result> results = splitActionRuntime.execute(streamlineEvent);
JoinAction joinAction = (JoinAction) joinRule.getAction();
JoinActionRuntime joinActionRuntime = new JoinActionRuntime(joinAction);
joinActionRuntime.setActionRuntimeContext(new ActionRuntimeContext(joinRule, joinAction));
joinActionRuntime.initialize(config);
List<Result> effectiveResult = null;
for (Result result : results) {
for (StreamlineEvent event : result.events) {
List<Result> processedResult = joinActionRuntime.execute(event);
if (processedResult != null) {
effectiveResult = processedResult;
}
}
}
Assert.assertNotNull(effectiveResult);
}
use of com.hortonworks.streamline.streams.StreamlineEvent in project streamline by hortonworks.
the class SubstituteTransformRuntimeTest method testSubstituteRefVars.
@Test
public void testSubstituteRefVars() throws Exception {
Map<String, Object> fieldsAndValues = new HashMap<>();
fieldsAndValues.put("1", "one");
fieldsAndValues.put("2", "${1} plus ${1}");
fieldsAndValues.put("3", "${1} plus ${2}");
StreamlineEvent event = StreamlineEventImpl.builder().fieldsAndValues(fieldsAndValues).dataSourceId("dsrcid").build();
TransformRuntime transformRuntime = new SubstituteTransformRuntime();
List<StreamlineEvent> result = transformRuntime.execute(event);
assertEquals(1, result.size());
assertEquals(3, result.get(0).size());
assertEquals("one", result.get(0).get("1"));
assertEquals("one plus one", result.get(0).get("2"));
assertEquals("one plus one plus one", result.get(0).get("3"));
}
use of com.hortonworks.streamline.streams.StreamlineEvent in project streamline by hortonworks.
the class SubstituteTransformRuntimeTest method testSubstituteSimpleObj.
@Test
public void testSubstituteSimpleObj() throws Exception {
Map<String, Object> fieldsAndValues = new HashMap<>();
fieldsAndValues.put("1", 1);
fieldsAndValues.put("2", 2);
fieldsAndValues.put("3", "${1} plus ${2}");
StreamlineEvent event = StreamlineEventImpl.builder().fieldsAndValues(fieldsAndValues).dataSourceId("dsrcid").build();
TransformRuntime transformRuntime = new SubstituteTransformRuntime();
List<StreamlineEvent> result = transformRuntime.execute(event);
assertEquals(1, result.size());
assertEquals(3, result.get(0).size());
assertEquals(1, result.get(0).get("1"));
assertEquals(2, result.get(0).get("2"));
assertEquals("1 plus 2", result.get(0).get("3"));
}
Aggregations