Replaced all tabs with spaces in java and pom.xml
[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 import java.net.MalformedURLException;
32 import java.net.SocketTimeoutException;
33 import javax.ws.rs.NotFoundException;
34 import javax.ws.rs.WebApplicationException;
35 import javax.ws.rs.core.UriBuilder;
36 import javax.ws.rs.core.UriBuilderException;
37 import org.junit.Test;
38 import org.junit.runner.RunWith;
39 import org.mockito.Mock;
40 import org.mockito.ArgumentMatchers;
41 import org.onap.so.utils.TargetEntity;
42 import org.mockito.junit.MockitoJUnitRunner;
43
44 @RunWith(MockitoJUnitRunner.class)
45 public class RestClientTest {
46
47
48     private final HttpClientFactory httpClientFactory = new HttpClientFactory();
49     @Mock
50     private RestProperties props;
51
52
53     @Test
54     public void retries() throws Exception {
55         RestClient spy = buildSpy();
56         RestRequest mockCallable = mock(RestRequest.class);
57         when(mockCallable.call()).thenThrow(new WebApplicationException(new SocketTimeoutException()));
58         doReturn(mockCallable).when(spy).buildRequest(any(String.class), ArgumentMatchers.isNull());
59         try {
60             spy.get();
61         } catch (Exception e) {
62             // we expect an exception, ignore it
63         }
64         verify(mockCallable, times(3)).call();
65
66     }
67
68     @Test
69     public void exceptionDoNotRetry() throws Exception {
70         RestClient spy = buildSpy();
71         RestRequest mockCallable = mock(RestRequest.class);
72         when(mockCallable.call()).thenThrow(new WebApplicationException(new NotFoundException()));
73         doReturn(mockCallable).when(spy).buildRequest(any(String.class), ArgumentMatchers.isNull());
74         try {
75             spy.get();
76         } catch (Exception e) {
77             // we expect an exception, ignore it
78         }
79         verify(mockCallable, times(1)).call();
80
81     }
82
83     private RestClient buildSpy() throws MalformedURLException, IllegalArgumentException, UriBuilderException {
84         RestClient client = httpClientFactory.newJsonClient(UriBuilder.fromUri("http://localhost/test").build().toURL(),
85                 TargetEntity.BPMN);
86
87         return spy(client);
88     }
89 }