blob: ed623f3e93e1fc5d08de9407be2e927a42c81132 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.metron.enrichment.bolt;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.adrianwalker.multilinestring.Multiline;
import org.apache.metron.storm.common.message.MessageGetStrategy;
import org.apache.metron.test.bolt.BaseEnrichmentBoltTest;
import org.apache.storm.tuple.Tuple;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class EnrichmentJoinBoltTest extends BaseEnrichmentBoltTest {
private static final String enrichmentConfigPath = "../" + sampleSensorEnrichmentConfigPath;
/**
* {
* "enrichedField": "enrichedValue",
* "emptyEnrichedField": ""
* }
*/
@Multiline
private String enrichedMessageString;
/**
* {
* "ip_src_addr": "ip1",
* "ip_dst_addr": "ip2",
* "source.type": "test",
* "enrichedField": "enrichedValue"
* }
*/
@Multiline
private String expectedJoinedMessageString;
private JSONObject enrichedMessage;
private JSONObject expectedJoinedMessage;
@Before
public void parseMessages() throws ParseException {
JSONParser parser = new JSONParser();
enrichedMessage = (JSONObject) parser.parse(enrichedMessageString);
expectedJoinedMessage = (JSONObject) parser.parse(expectedJoinedMessageString);
}
@Test
public void test() throws IOException {
EnrichmentJoinBolt enrichmentJoinBolt = new EnrichmentJoinBolt("zookeeperUrl");
enrichmentJoinBolt.setCuratorFramework(client);
enrichmentJoinBolt.setZKCache(cache);
enrichmentJoinBolt.getConfigurations().updateSensorEnrichmentConfig(sensorType, new FileInputStream(enrichmentConfigPath));
enrichmentJoinBolt.withMaxCacheSize(100);
enrichmentJoinBolt.withMaxTimeRetain(10000);
enrichmentJoinBolt.prepare(new HashMap<>(), topologyContext, outputCollector);
Set<String> actualStreamIds = enrichmentJoinBolt.getStreamIds(sampleMessage);
Assert.assertEquals(joinStreamIds, actualStreamIds);
Map<String, Tuple> streamMessageMap = new HashMap<>();
MessageGetStrategy messageGetStrategy = mock(MessageGetStrategy.class);
Tuple sampleTuple = mock(Tuple.class);
when(messageGetStrategy.get(sampleTuple)).thenReturn(sampleMessage);
Tuple enrichedTuple = mock(Tuple.class);
when(messageGetStrategy.get(enrichedTuple)).thenReturn(enrichedMessage);
streamMessageMap.put("message", sampleTuple);
streamMessageMap.put("enriched", enrichedTuple);
JSONObject joinedMessage = enrichmentJoinBolt.joinMessages(streamMessageMap, messageGetStrategy);
removeTimingFields(joinedMessage);
Assert.assertEquals(expectedJoinedMessage, joinedMessage);
}
}