View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.juneau.rest.client;
18  
19  import static org.apache.juneau.TestUtils.*;
20  import static org.apache.juneau.http.HttpResponses.*;
21  
22  import java.io.*;
23  import java.net.*;
24  
25  import org.apache.http.*;
26  import org.apache.http.protocol.*;
27  import org.apache.juneau.*;
28  import org.apache.juneau.http.response.*;
29  import org.apache.juneau.rest.annotation.*;
30  import org.apache.juneau.rest.mock.*;
31  import org.apache.juneau.rest.servlet.*;
32  import org.junit.jupiter.api.*;
33  
34  class BasicHttpRequestRetryHandler_Test extends TestBase {
35  
36  	@Rest
37  	public static class A extends BasicRestObject {
38  		@RestGet
39  		public Ok get() {
40  			return OK;
41  		}
42  	}
43  
44  	public static class A1 extends HttpRequestExecutor {
45  		@Override
46  		public HttpResponse execute(HttpRequest request, HttpClientConnection conn, HttpContext context) throws IOException, BasicHttpException {
47  			throw new UnknownHostException("foo");
48  		}
49  	}
50  
51  	@Test void a01_basic() {
52  		var x = MockRestClient.create(A.class).retryHandler(new BasicHttpRequestRetryHandler(1, 1, true)).requestExecutor(new A1()).build();
53  		assertThrowsWithMessage(Exception.class, "Call failed.", ()->x.get().run());
54  	}
55  }