blob: 0f1cc8abfa348a31db111cf984d96028d615863f [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.pulsar.tests.integration.io;
import static org.testng.Assert.assertTrue;
import static org.testng.Assert.fail;
import java.util.Map;
import org.apache.http.HttpHost;
import org.apache.pulsar.tests.integration.containers.ElasticSearchContainer;
import org.apache.pulsar.tests.integration.topologies.PulsarCluster;
import org.elasticsearch.action.search.SearchRequest;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestClientBuilder;
import org.elasticsearch.client.RestHighLevelClient;
public class ElasticSearchSinkTester extends SinkTester<ElasticSearchContainer> {
private RestHighLevelClient elasticClient;
public ElasticSearchSinkTester() {
super(ElasticSearchContainer.NAME, SinkType.ELASTIC_SEARCH);
sinkConfig.put("elasticSearchUrl", "http://" + ElasticSearchContainer.NAME + ":9200");
sinkConfig.put("indexName", "test-index");
}
@Override
protected ElasticSearchContainer createSinkService(PulsarCluster cluster) {
return new ElasticSearchContainer(cluster.getClusterName());
}
@Override
public void prepareSink() throws Exception {
RestClientBuilder builder = RestClient.builder(
new HttpHost(
"localhost",
serviceContainer.getMappedPort(9200),
"http"));
elasticClient = new RestHighLevelClient(builder);
}
@Override
public void validateSinkResult(Map<String, String> kvs) {
SearchRequest searchRequest = new SearchRequest("test-index");
searchRequest.types("doc");
try {
SearchResponse searchResult = elasticClient.search(searchRequest, RequestOptions.DEFAULT);
assertTrue(searchResult.getHits().getTotalHits().value > 0, searchResult.toString());
} catch (Exception e) {
fail("Encountered exception on validating elastic search results", e);
}
}
}