blob: e4243842b8bd73869269689d27f137382eb58c91 [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.kafka.common.protocol;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNull;
import java.util.HashSet;
import java.util.Set;
import org.apache.kafka.common.errors.ApiException;
import org.apache.kafka.common.errors.TimeoutException;
import org.junit.Test;
public class ErrorsTest {
@Test
public void testUniqueErrorCodes() {
Set<Short> codeSet = new HashSet<>();
for (Errors error : Errors.values()) {
codeSet.add(error.code());
}
assertEquals("Error codes must be unique", codeSet.size(), Errors.values().length);
}
@Test
public void testUniqueExceptions() {
Set<Class> exceptionSet = new HashSet<>();
for (Errors error : Errors.values()) {
if (error != Errors.NONE)
exceptionSet.add(error.exception().getClass());
}
assertEquals("Exceptions must be unique", exceptionSet.size(), Errors.values().length - 1); // Ignore NONE
}
@Test
public void testExceptionsAreNotGeneric() {
for (Errors error : Errors.values()) {
if (error != Errors.NONE)
assertNotEquals("Generic ApiException should not be used", error.exception().getClass(), ApiException.class);
}
}
@Test
public void testNoneException() {
assertNull("The NONE error should not have an exception", Errors.NONE.exception());
}
@Test
public void testForExceptionInheritance() {
class ExtendedTimeoutException extends TimeoutException { }
Errors expectedError = Errors.forException(new TimeoutException());
Errors actualError = Errors.forException(new ExtendedTimeoutException());
assertEquals("forException should match super classes", expectedError, actualError);
}
@Test
public void testForExceptionDefault() {
Errors error = Errors.forException(new ApiException());
assertEquals("forException should default to unknown", Errors.UNKNOWN_SERVER_ERROR, error);
}
@Test
public void testExceptionName() {
String exceptionName = Errors.UNKNOWN_SERVER_ERROR.exceptionName();
assertEquals("org.apache.kafka.common.errors.UnknownServerException", exceptionName);
exceptionName = Errors.NONE.exceptionName();
assertNull(exceptionName);
exceptionName = Errors.INVALID_TOPIC_EXCEPTION.exceptionName();
assertEquals("org.apache.kafka.common.errors.InvalidTopicException", exceptionName);
}
}