/* * Copyright (C) 2008 The Android Open Source Project * * 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 libcore.java.net; import java.net.HttpRetryException; import junit.framework.TestCase; public class OldHttpRetryExceptionTest extends TestCase { public void test_ConstructorLStringI() { String [] message = {"Test message", "", "Message", "~!@#$% &*(", null}; int [] codes = {400, 404, 200, 500, 0}; for(int i = 0; i < message.length; i++) { HttpRetryException hre = new HttpRetryException(message[i], codes[i]); assertEquals(message[i], hre.getReason()); assertTrue("responseCode is incorrect: " + hre.responseCode(), hre.responseCode() == codes[i]); } } public void test_ConstructorLStringILString() { String [] message = {"Test message", "", "Message", "~!@#$% &*(", null}; int [] codes = {400, -1, Integer.MAX_VALUE, Integer.MIN_VALUE, 0}; String [] locations = {"file:\\error.txt", "http:\\localhost", "", null, ""}; for(int i = 0; i < message.length; i++) { HttpRetryException hre = new HttpRetryException(message[i], codes[i], locations[i]); assertEquals(message[i], hre.getReason()); assertTrue("responseCode is incorrect: " + hre.responseCode(), hre.responseCode() == codes[i]); assertEquals(locations[i], hre.getLocation()); } } }