9e0825bbb5755df84ea4c37883078672620ea0c5
[so.git] /
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.aaiclient.client.aai;
22
23 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
24 import static com.github.tomakehurst.wiremock.client.WireMock.get;
25 import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching;
26 import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
27 import static org.hamcrest.CoreMatchers.equalTo;
28 import static org.junit.Assert.assertThat;
29 import static org.mockito.Mockito.doReturn;
30 import static org.mockito.Mockito.spy;
31 import java.util.List;
32 import java.util.Optional;
33 import javax.ws.rs.core.GenericType;
34 import javax.ws.rs.core.Response;
35 import javax.ws.rs.core.Response.Status;
36 import org.junit.Before;
37 import org.junit.Rule;
38 import org.junit.Test;
39 import org.junit.rules.ExpectedException;
40 import org.junit.runner.RunWith;
41 import org.mockito.InjectMocks;
42 import org.mockito.Spy;
43 import org.mockito.junit.MockitoJUnitRunner;
44 import org.onap.aaiclient.client.aai.entities.AAIResultWrapper;
45 import org.onap.aaiclient.client.aai.entities.uri.AAIUriFactory;
46 import org.onap.aaiclient.client.aai.entities.uri.ServiceInstanceUri;
47 import org.onap.aaiclient.client.defaultproperties.DefaultAAIPropertiesImpl;
48 import com.github.tomakehurst.wiremock.junit.WireMockRule;
49
50 @RunWith(MockitoJUnitRunner.class)
51 public class AAIResourcesClientWithServiceInstanceUriTest {
52
53     @Rule
54     public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().dynamicPort());
55
56     @Rule
57     public ExpectedException thrown = ExpectedException.none();
58
59     @Spy
60     public AAIClient client;
61
62     @InjectMocks
63     public AAIResourcesClient aaiClient = new AAIResourcesClient();
64
65     private ServiceInstanceUri uri;
66
67     @Before
68     public void setUp() {
69         doReturn(new DefaultAAIPropertiesImpl(wireMockRule.port())).when(client).getRestProperties();
70         wireMockRule.stubFor(get(urlMatching("/aai/v[0-9]+/nodes.*")).willReturn(
71                 aResponse().withStatus(404).withHeader("Content-Type", "application/json").withHeader("Mock", "true")));
72
73         uri = spy((ServiceInstanceUri) AAIUriFactory.createResourceUri(AAIObjectType.SERVICE_INSTANCE, "id"));
74         doReturn(aaiClient).when(uri).getResourcesClient();
75     }
76
77     @Test
78     public void getWithClass() {
79         AAIResourcesClient client = aaiClient;
80         Optional<String> result = client.get(String.class, uri);
81
82         assertThat(result.isPresent(), equalTo(false));
83     }
84
85     @Test
86     public void getFullResponse() {
87         AAIResourcesClient client = aaiClient;
88         Response result = client.getFullResponse(uri);
89         assertThat(result.getStatus(), equalTo(Status.NOT_FOUND.getStatusCode()));
90     }
91
92     @Test
93     public void getWithGenericType() {
94         AAIResourcesClient client = aaiClient;
95         Optional<List<String>> result = client.get(new GenericType<List<String>>() {}, uri);
96         assertThat(result.isPresent(), equalTo(false));
97     }
98
99     @Test
100     public void getAAIWrapper() {
101         AAIResourcesClient client = aaiClient;
102         AAIResultWrapper result = client.get(uri);
103         assertThat(result.isEmpty(), equalTo(true));
104     }
105
106     @Test
107     public void getWithException() {
108         AAIResourcesClient client = aaiClient;
109         this.thrown.expect(IllegalArgumentException.class);
110         AAIResultWrapper result = client.get(uri, IllegalArgumentException.class);
111     }
112
113     @Test
114     public void existsTest() {
115         AAIResourcesClient client = aaiClient;
116         doReturn(uri).when(uri).clone();
117         boolean result = client.exists(uri);
118         assertThat(result, equalTo(false));
119     }
120
121 }