/**
* 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.camel.component.elasticsearch;
import java.util.HashMap;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.elasticsearch.client.Client;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.node.Node;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import static org.elasticsearch.node.NodeBuilder.nodeBuilder;
public class ElasticsearchBaseTest extends CamelTestSupport {
public static Node node;
public static Client client;
@BeforeClass
public static void cleanupOnce() {
deleteDirectory("target/data");
// create an embedded node to resue
node = nodeBuilder().local(true)
.settings(Settings.settingsBuilder().put("http.enabled", false).put("path.data", "target/data").put("path.home", "target/home"))
.node();
client = node.client();
}
@AfterClass
public static void teardownOnce() {
if (client != null) {
client.close();
}
if (node != null) {
node.close();
}
}
@Override
public boolean isCreateCamelContextPerClass() {
// let's speed up the tests using the same context
return true;
}
@Override
protected CamelContext createCamelContext() throws Exception {
CamelContext context = super.createCamelContext();
// reuse existing client
ElasticsearchComponent es = context.getComponent("elasticsearch", ElasticsearchComponent.class);
es.setClient(client);
return context;
}
/**
* As we don't delete the {@code target/data} folder for <b>each</b> test
* below (otherwise they would run much slower), we need to make sure
* there's no side effect of the same used data through creating unique
* indexes.
*/
Map<String, String> createIndexedData(String... additionalPrefixes) {
String prefix = createPrefix();
// take over any potential prefixes we may have been asked for
if (additionalPrefixes.length > 0) {
StringBuilder sb = new StringBuilder(prefix);
for (String additionalPrefix : additionalPrefixes) {
sb.append(additionalPrefix).append("-");
}
prefix = sb.toString();
}
String key = prefix + "key";
String value = prefix + "value";
log.info("Creating indexed data using the key/value pair {} => {}", key, value);
Map<String, String> map = new HashMap<String, String>();
map.put(key, value);
return map;
}
String createPrefix() {
// make use of the test method name to avoid collision
return getTestMethodName().toLowerCase() + "-";
}
}