/** * 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.metrics; import com.codahale.metrics.MetricRegistry; 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.runners.MockitoJUnitRunner; import static org.hamcrest.Matchers.is; import static org.junit.Assert.assertThat; import static org.mockito.Mockito.when; @RunWith(MockitoJUnitRunner.class) public class MetricsEndpointTest { private static final String METRICS_NAME = "metrics.name"; @Mock private MetricRegistry registry; @Mock private Processor processor; @Mock private Exchange exchange; @Mock private Message in; private MetricsEndpoint endpoint; private InOrder inOrder; @Before public void setUp() throws Exception { endpoint = new MetricsEndpoint(null, null, registry, MetricsType.METER, METRICS_NAME) { @Override public Producer createProducer() throws Exception { return null; } @Override protected String createEndpointUri() { return "not real endpoint"; } }; inOrder = Mockito.inOrder(registry, processor, exchange, in); when(exchange.getIn()).thenReturn(in); } @After public void tearDown() throws Exception { inOrder.verifyNoMoreInteractions(); } @Test public void testAbstractMetricsEndpoint() throws Exception { assertThat(endpoint.getMetricsName(), is(METRICS_NAME)); assertThat(endpoint.getRegistry(), is(registry)); } @Test(expected = RuntimeCamelException.class) public void testCreateConsumer() throws Exception { endpoint.createConsumer(processor); } @Test public void testIsSingleton() throws Exception { assertThat(endpoint.isSingleton(), is(true)); } @Test public void testGetRegistry() throws Exception { assertThat(endpoint.getRegistry(), is(registry)); } @Test public void testGetMetricsName() throws Exception { assertThat(endpoint.getMetricsName(), is(METRICS_NAME)); } }