/** * 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.elasticsearch5; import java.io.IOException; import java.net.InetAddress; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.apache.camel.CamelContext; import org.apache.camel.test.AvailablePortFinder; import org.apache.camel.test.junit4.CamelTestSupport; import org.elasticsearch.client.transport.TransportClient; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.transport.InetSocketTransportAddress; import org.elasticsearch.node.InternalSettingsPreparer; import org.elasticsearch.node.Node; import org.elasticsearch.plugins.Plugin; import org.elasticsearch.transport.Netty4Plugin; import org.elasticsearch.transport.client.PreBuiltTransportClient; import org.junit.AfterClass; import org.junit.BeforeClass; public class ElasticsearchBaseTest extends CamelTestSupport { public static Node node; public static TransportClient client; protected static final int ES_TRANSPORT_PORT = AvailablePortFinder.getNextAvailable(); private static class PluginConfigurableNode extends Node { PluginConfigurableNode(Settings settings, Collection<Class<? extends Plugin>> classpathPlugins) { super(InternalSettingsPreparer.prepareEnvironment(settings, null), classpathPlugins); } } @SuppressWarnings("resource") @BeforeClass public static void cleanupOnce() throws Exception { deleteDirectory("target/data"); // create an embedded node to resume node = new PluginConfigurableNode(Settings.builder() .put("http.enabled", true) .put("path.data", "target/data") .put("path.home", "target/home") .put("transport.profiles.default.port", ES_TRANSPORT_PORT) .build(), Arrays.asList(Netty4Plugin.class)).start(); client = new PreBuiltTransportClient(Settings.EMPTY).addTransportAddress(new InetSocketTransportAddress(InetAddress.getByName("localhost"), ES_TRANSPORT_PORT)); } @AfterClass public static void teardownOnce() throws IOException { 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(); 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() + "-"; } }