blob: 65dc4336a0ece6d6cedc2325cab687cb3508288a [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.broker.service;
import static java.util.Collections.emptyMap;
import static org.apache.pulsar.client.api.MessageId.latest;
import static org.apache.pulsar.common.api.proto.CommandSubscribe.SubType.Exclusive;
import static org.apache.pulsar.common.api.proto.KeySharedMode.AUTO_SPLIT;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import static org.testng.Assert.assertEquals;
import java.net.SocketAddress;
import org.apache.pulsar.broker.PulsarService;
import org.apache.pulsar.broker.ServiceConfiguration;
import org.apache.pulsar.common.api.proto.CommandSubscribe;
import org.apache.pulsar.common.api.proto.KeySharedMeta;
import org.apache.pulsar.common.policies.data.stats.ConsumerStatsImpl;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
@Test(groups = "broker")
public class ConsumerTest {
private Consumer consumer;
private final ConsumerStatsImpl stats = new ConsumerStatsImpl();
@BeforeMethod
public void beforeMethod() {
Subscription subscription = mock(Subscription.class);
ServerCnx cnx = mock(ServerCnx.class);
SocketAddress address = mock(SocketAddress.class);
Topic topic = mock(Topic.class);
BrokerService brokerService = mock(BrokerService.class);
PulsarService pulsarService = mock(PulsarService.class);
ServiceConfiguration serviceConfiguration = mock(ServiceConfiguration.class);
when(cnx.clientAddress()).thenReturn(address);
when(subscription.getTopic()).thenReturn(topic);
when(topic.getBrokerService()).thenReturn(brokerService);
when(brokerService.getPulsar()).thenReturn(pulsarService);
when(pulsarService.getConfiguration()).thenReturn(serviceConfiguration);
consumer = new Consumer(subscription, Exclusive, "topic", 1, 0, "Cons1", 1, cnx, "myrole-1", emptyMap(), false,
CommandSubscribe.InitialPosition.Earliest, new KeySharedMeta().setKeySharedMode(AUTO_SPLIT), latest);
}
@Test
public void testGetMsgOutCounter() {
stats.msgOutCounter = 1L;
consumer.updateStats(stats);
assertEquals(consumer.getMsgOutCounter(), 1L);
}
@Test
public void testGetBytesOutCounter() {
stats.bytesOutCounter = 1L;
consumer.updateStats(stats);
assertEquals(consumer.getBytesOutCounter(), 1L);
}
}