blob: 65bef92dc919cec0a50e66c281c54c67c7ce1983 [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.utils;
import junit.framework.Assert;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.test.TestingServer;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
public class ConfigurationsUtilsTest {
public String sampleConfigRoot = "../Metron-Testing/src/main/resources/sample/config/";
private TestingServer testZkServer;
private String zookeeperUrl;
private CuratorFramework client;
private byte[] testGlobalConfig;
private Map<String, byte[]> testSensorConfigMap;
@Before
public void setup() throws Exception {
testZkServer = new TestingServer(true);
zookeeperUrl = testZkServer.getConnectString();
client = ConfigurationsUtils.getClient(zookeeperUrl);
client.start();
testGlobalConfig = ConfigurationsUtils.readGlobalConfigFromFile(sampleConfigRoot);
testSensorConfigMap = ConfigurationsUtils.readSensorEnrichmentConfigsFromFile(sampleConfigRoot);
}
@Test
public void test() throws Exception {
Assert.assertTrue(testGlobalConfig.length > 0);
ConfigurationsUtils.writeGlobalConfigToZookeeper(testGlobalConfig, zookeeperUrl);
byte[] readGlobalConfigBytes = ConfigurationsUtils.readGlobalConfigBytesFromZookeeper(client);
Assert.assertTrue(Arrays.equals(testGlobalConfig, readGlobalConfigBytes));
Assert.assertTrue(testSensorConfigMap.size() > 0);
String testSensorType = "yaf";
byte[] testSensorConfigBytes = testSensorConfigMap.get(testSensorType);
ConfigurationsUtils.writeSensorEnrichmentConfigToZookeeper(testSensorType, testSensorConfigBytes, zookeeperUrl);
byte[] readSensorConfigBytes = ConfigurationsUtils.readSensorEnrichmentConfigBytesFromZookeeper(testSensorType, client);
Assert.assertTrue(Arrays.equals(testSensorConfigBytes, readSensorConfigBytes));
String name = "testConfig";
Map<String, Object> testConfig = new HashMap<>();
testConfig.put("stringField", "value");
testConfig.put("intField", 1);
testConfig.put("doubleField", 1.1);
ConfigurationsUtils.writeConfigToZookeeper(name, testConfig, zookeeperUrl);
byte[] readConfigBytes = ConfigurationsUtils.readConfigBytesFromZookeeper(name, client);
Assert.assertTrue(Arrays.equals(JSONUtils.INSTANCE.toJSON(testConfig), readConfigBytes));
}
@Test
public void testCmdLine() throws Exception {
String[] args = {"-z", zookeeperUrl, "-p", sampleConfigRoot};
ConfigurationsUtils.main(args);
byte[] readGlobalConfigBytes = ConfigurationsUtils.readGlobalConfigBytesFromZookeeper(client);
Assert.assertTrue(Arrays.equals(testGlobalConfig, readGlobalConfigBytes));
for(String sensorType: testSensorConfigMap.keySet()) {
byte[] readSensorConfigBytes = ConfigurationsUtils.readSensorEnrichmentConfigBytesFromZookeeper(sensorType, client);
Assert.assertTrue(Arrays.equals(testSensorConfigMap.get(sensorType), readSensorConfigBytes));
}
}
@After
public void tearDown() throws IOException {
client.close();
testZkServer.close();
testZkServer.stop();
}
}