blob: c2515d2b06b592fc17f0fd1c1b6b7f285f8b0c24 [file] [log] [blame]
/*
* Copyright 2017 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.okhttp;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import io.grpc.okhttp.internal.OptionalMethod;
import java.lang.reflect.InvocationTargetException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* Tests for OptionalMethod.
*/
@RunWith(JUnit4.class)
public class OptionalMethodTest {
public static class DefaultClass {
public String testMethod(String arg) {
return arg;
}
}
public abstract static class PublicParent {
public abstract String testMethod(String arg);
}
private static class PrivateImpl extends PublicParent {
@Override
public String testMethod(String arg) {
return arg;
}
}
private static class PrivateClass {
public String testMethod(String arg) {
return arg;
}
}
@Test
public void isSupported() {
OptionalMethod<DefaultClass> defaultClassMethod = new OptionalMethod<DefaultClass>(
String.class, "testMethod", String.class);
assertTrue(defaultClassMethod.isSupported(new DefaultClass()));
OptionalMethod<PublicParent> privateImpl = new OptionalMethod<PublicParent>(
String.class, "testMethod", String.class);
assertTrue(privateImpl.isSupported(new PrivateImpl()));
OptionalMethod<PrivateClass> privateClass = new OptionalMethod<PrivateClass>(
String.class, "testMethod", String.class);
assertFalse(privateClass.isSupported(new PrivateClass()));
}
@Test
public void invokeOptional() throws InvocationTargetException {
OptionalMethod<DefaultClass> defaultClassMethod = new OptionalMethod<DefaultClass>(
String.class, "testMethod", String.class);
assertEquals("testArg", defaultClassMethod.invokeOptional(new DefaultClass(), "testArg"));
OptionalMethod<PublicParent> privateImpl = new OptionalMethod<PublicParent>(
String.class, "testMethod", String.class);
assertEquals("testArg", privateImpl.invokeOptional(new PrivateImpl(), "testArg"));
OptionalMethod<PrivateClass> privateClass = new OptionalMethod<PrivateClass>(
String.class, "testMethod", String.class);
assertEquals(null, privateClass.invokeOptional(new PrivateClass(), "testArg"));
}
}