blob: 9bfe17183bfc33d489288a9896ec1ce6f09c1b30 [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.camel.component.influxdb;
import java.util.HashMap;
import java.util.Map;
import org.apache.camel.EndpointInject;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.junit.Before;
import org.junit.Test;
public class InfluxDbProducerTest extends AbstractInfluxDbTest {
@EndpointInject(uri = "mock:test")
MockEndpoint successEndpoint;
@EndpointInject(uri = "mock:error")
MockEndpoint errorEndpoint;
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() {
errorHandler(deadLetterChannel("mock:error").redeliveryDelay(0).maximumRedeliveries(0));
//test route
from("direct:test")
.to("influxdb:influxDbBean?databaseName={{influxdb.testDb}}")
.to("mock:test");
}
};
}
@Before
public void resetEndpoints() {
errorEndpoint.reset();
successEndpoint.reset();
}
@Test
public void writePointFromMapAndStaticDbName() throws InterruptedException {
errorEndpoint.expectedMessageCount(0);
successEndpoint.expectedMessageCount(1);
Map<String, Object> pointMap = createMapPoint();
sendBody("direct:test", pointMap);
errorEndpoint.assertIsSatisfied();
successEndpoint.assertIsSatisfied();
}
@Test
public void writePointFromMapAndDynamicDbName() throws InterruptedException {
errorEndpoint.expectedMessageCount(0);
successEndpoint.expectedMessageCount(1);
Map<String, Object> pointMap = createMapPoint();
Map<String, Object> header = createHeader();
sendBody("direct:test", pointMap, header);
errorEndpoint.assertIsSatisfied();
successEndpoint.assertIsSatisfied();
}
@Test
public void missingMeassurementNameFails() throws InterruptedException {
errorEndpoint.expectedMessageCount(1);
successEndpoint.expectedMessageCount(0);
Map<String, Object> pointMap = new HashMap<>();
pointMap.remove(InfluxDbConstants.MEASUREMENT_NAME);
sendBody("direct:test", pointMap);
errorEndpoint.assertIsSatisfied();
successEndpoint.assertIsSatisfied();
}
private Map<String, Object> createHeader() {
Map<String, Object> header = new HashMap<>();
header.put(InfluxDbConstants.DBNAME_HEADER, "myOtherDatabase");
return header;
}
private Map<String, Object> createMapPoint() {
Map<String, Object> pointMap = new HashMap<>();
pointMap.put(InfluxDbConstants.MEASUREMENT_NAME, "MyTestMeasurement");
pointMap.put("CPU", 1);
return pointMap;
}
}