blob: c4436ceb05167edf218a732eb7dd840ac0d5a885 [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.micrometer;
import io.micrometer.core.instrument.Meter;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Tags;
import org.apache.camel.Exchange;
import org.apache.camel.Message;
import org.apache.camel.Processor;
import org.apache.camel.Producer;
import org.apache.camel.RuntimeCamelException;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InOrder;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.junit.MockitoJUnitRunner;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
@RunWith(MockitoJUnitRunner.class)
public class MicrometerEndpointTest {
private static final String METRICS_NAME = "metrics.name";
@Mock
private MeterRegistry registry;
@Mock
private Processor processor;
@Mock
private Exchange exchange;
@Mock
private Message in;
private MicrometerEndpoint endpoint;
private InOrder inOrder;
@Before
public void setUp() {
endpoint = new MicrometerEndpoint(null, null, registry, Meter.Type.COUNTER, METRICS_NAME, Tags.empty()) {
@Override
public Producer createProducer() {
return null;
}
@Override
protected String createEndpointUri() {
return "not real endpoint";
}
};
inOrder = Mockito.inOrder(registry, processor, exchange, in);
}
@After
public void tearDown() {
inOrder.verifyNoMoreInteractions();
}
@Test
public void testAbstractMetricsEndpoint() {
assertThat(endpoint.getMetricsName(), is(METRICS_NAME));
assertThat(endpoint.getRegistry(), is(registry));
}
@Test(expected = RuntimeCamelException.class)
public void testCreateConsumer() {
endpoint.createConsumer(processor);
}
@Test
public void testIsSingleton() {
assertThat(endpoint.isSingleton(), is(true));
}
@Test
public void testGetRegistry() {
assertThat(endpoint.getRegistry(), is(registry));
}
@Test
public void testGetMetricsName() {
assertThat(endpoint.getMetricsName(), is(METRICS_NAME));
}
}