/* * * Copyright 2015 Netflix, Inc. * * 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 com.netflix.genie.common.exceptions; import com.netflix.genie.test.categories.UnitTest; import org.junit.Assert; import org.junit.Test; import org.junit.experimental.categories.Category; import java.io.IOException; /** * Test the constructors of the GenieException. * * @author tgianos * @since 2.0.0 */ @Category(UnitTest.class) public class GenieExceptionUnitTests extends Exception { private static final int ERROR_CODE = 404; private static final String ERROR_MESSAGE = "Not Found"; private static final IOException IOE = new IOException("IOException"); /** * Test the constructor. * * @throws GenieException On exception */ @Test(expected = GenieException.class) public void testThreeArgConstructor() throws GenieException { final GenieException ge = new GenieException(ERROR_CODE, ERROR_MESSAGE, IOE); Assert.assertEquals(ERROR_CODE, ge.getErrorCode()); Assert.assertEquals(ERROR_MESSAGE, ge.getMessage()); Assert.assertEquals(IOE, ge.getCause()); throw ge; } /** * Test the constructor. * * @throws GenieException On exception */ @Test(expected = GenieException.class) public void testTwoArgConstructorWithMessage() throws GenieException { final GenieException ge = new GenieException(ERROR_CODE, ERROR_MESSAGE); Assert.assertEquals(ERROR_CODE, ge.getErrorCode()); Assert.assertEquals(ERROR_MESSAGE, ge.getMessage()); Assert.assertNull(ge.getCause()); throw ge; } /** * Test the constructor. * * @throws GenieException On exception */ @Test(expected = GenieException.class) public void testTwoArgConstructorWithThrowable() throws GenieException { final GenieException ge = new GenieException(ERROR_CODE, IOE); Assert.assertEquals(ERROR_CODE, ge.getErrorCode()); Assert.assertEquals(String.valueOf(ERROR_CODE), ge.getMessage()); Assert.assertEquals(IOE, ge.getCause()); throw ge; } }