/* * * 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; import java.net.HttpURLConnection; /** * Test the constructors of the GenieException. * * @author tgianos * @since 2.0.0 */ @Category(UnitTest.class) public class GenieBadRequestExceptionUnitTests extends Exception { private static final String ERROR_MESSAGE = "Not Found"; private static final IOException IOE = new IOException("IOException"); /** * Test the constructor. * * @throws GenieBadRequestException For a bad request */ @Test(expected = GenieBadRequestException.class) public void testTwoArgConstructor() throws GenieBadRequestException { final GenieBadRequestException ge = new GenieBadRequestException(ERROR_MESSAGE, IOE); Assert.assertEquals(HttpURLConnection.HTTP_BAD_REQUEST, ge.getErrorCode()); Assert.assertEquals(ERROR_MESSAGE, ge.getMessage()); Assert.assertEquals(IOE, ge.getCause()); throw ge; } /** * Test the constructor. * * @throws GenieBadRequestException For a bad request */ @Test(expected = GenieBadRequestException.class) public void testMessageArgConstructor() throws GenieBadRequestException { final GenieBadRequestException ge = new GenieBadRequestException(ERROR_MESSAGE); Assert.assertEquals(HttpURLConnection.HTTP_BAD_REQUEST, ge.getErrorCode()); Assert.assertEquals(ERROR_MESSAGE, ge.getMessage()); Assert.assertNull(ge.getCause()); throw ge; } /** * Test the constructor. * * @throws GenieBadRequestException For a bad request */ @Test(expected = GenieBadRequestException.class) public void testThrowableArgConstructor() throws GenieBadRequestException { final GenieBadRequestException ge = new GenieBadRequestException(IOE); Assert.assertEquals(HttpURLConnection.HTTP_BAD_REQUEST, ge.getErrorCode()); Assert.assertEquals(IOE, ge.getCause()); throw ge; } }