Springboot 2.0 upgrade
[so.git] / common / src / test / java / org / onap / so / client / RestClientTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.client;
22
23
24 import static org.mockito.ArgumentMatchers.any;
25 import static org.mockito.Mockito.doReturn;
26 import static org.mockito.Mockito.mock;
27 import static org.mockito.Mockito.spy;
28 import static org.mockito.Mockito.times;
29 import static org.mockito.Mockito.verify;
30 import static org.mockito.Mockito.when;
31
32 import java.net.MalformedURLException;
33 import java.net.SocketTimeoutException;
34
35 import javax.ws.rs.NotFoundException;
36 import javax.ws.rs.WebApplicationException;
37 import javax.ws.rs.core.UriBuilder;
38 import javax.ws.rs.core.UriBuilderException;
39
40 import org.junit.Test;
41 import org.junit.runner.RunWith;
42 import org.mockito.Mock;
43 import org.mockito.ArgumentMatchers;
44 import org.onap.so.utils.TargetEntity;
45 import org.mockito.junit.MockitoJUnitRunner;
46
47 @RunWith(MockitoJUnitRunner.class)
48 public class RestClientTest {
49
50         
51         @Mock
52         private RestProperties props;
53         
54         
55         @Test
56         public void retries() throws Exception {
57                 RestClient spy = buildSpy();
58                 RestRequest mockCallable = mock(RestRequest.class);
59                 when(mockCallable.call()).thenThrow(new WebApplicationException(new SocketTimeoutException()));
60                 doReturn(mockCallable).when(spy).buildRequest(any(String.class), ArgumentMatchers.isNull());
61                 try {
62                         spy.get();
63                 } catch (Exception e) {
64                         //we expect an exception, ignore it
65                 }
66                 verify(mockCallable, times(3)).call();
67                 
68         }
69         
70         @Test
71         public void exceptionDoNotRetry() throws Exception {
72                 RestClient spy = buildSpy();
73                 RestRequest mockCallable = mock(RestRequest.class);
74                 when(mockCallable.call()).thenThrow(new WebApplicationException(new NotFoundException()));
75                 doReturn(mockCallable).when(spy).buildRequest(any(String.class), ArgumentMatchers.isNull());
76                 try {
77                         spy.get();
78                 } catch (Exception e) {
79                         //we expect an exception, ignore it
80                 }
81                 verify(mockCallable, times(1)).call();
82                 
83         }
84         private RestClient buildSpy() throws MalformedURLException, IllegalArgumentException, UriBuilderException {
85                 RestClient client = new HttpClient(UriBuilder.fromUri("http://localhost/test").build().toURL(), "application/json", TargetEntity.BPMN);
86                 
87                 return spy(client);
88         }
89 }