blob: c252aad61142eaff92139558b1a9f220e724a2d4 [file] [log] [blame]
/*
* Copyright 2015 The gRPC Authors
*
* Licensed 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 io.grpc;
import static org.mockito.Mockito.verify;
import io.grpc.ForwardingServerCallListener.SimpleForwardingServerCallListener;
import java.lang.reflect.Method;
import java.util.Collections;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
/**
* Unit tests for {@link ForwardingServerCallListener}.
*/
@RunWith(JUnit4.class)
public class ForwardingServerCallListenerTest {
@Mock private ServerCall.Listener<Integer> serverCallListener;
private ForwardingServerCallListener<Integer> forwarder;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
forwarder = new SimpleForwardingServerCallListener<Integer>(serverCallListener) {};
}
@Test
public void allMethodsForwarded() throws Exception {
ForwardingTestUtil.testMethodsForwarded(
ServerCall.Listener.class, serverCallListener, forwarder, Collections.<Method>emptyList());
}
@Test
public void onMessage() {
forwarder.onMessage(12345);
verify(serverCallListener).onMessage(12345);
}
}