2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.aaiclient.client.aai;
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;
50 @RunWith(MockitoJUnitRunner.class)
51 public class AAIResourcesClientWithServiceInstanceUriTest {
54 public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().dynamicPort());
57 public ExpectedException thrown = ExpectedException.none();
60 public AAIClient client;
63 public AAIResourcesClient aaiClient = new AAIResourcesClient();
65 private ServiceInstanceUri uri;
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")));
73 uri = spy((ServiceInstanceUri) AAIUriFactory.createResourceUri(AAIObjectType.SERVICE_INSTANCE, "id"));
74 doReturn(aaiClient).when(uri).getResourcesClient();
78 public void getWithClass() {
79 AAIResourcesClient client = aaiClient;
80 Optional<String> result = client.get(String.class, uri);
82 assertThat(result.isPresent(), equalTo(false));
86 public void getFullResponse() {
87 AAIResourcesClient client = aaiClient;
88 Response result = client.getFullResponse(uri);
89 assertThat(result.getStatus(), equalTo(Status.NOT_FOUND.getStatusCode()));
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));
100 public void getAAIWrapper() {
101 AAIResourcesClient client = aaiClient;
102 AAIResultWrapper result = client.get(uri);
103 assertThat(result.isEmpty(), equalTo(true));
107 public void getWithException() {
108 AAIResourcesClient client = aaiClient;
109 this.thrown.expect(IllegalArgumentException.class);
110 AAIResultWrapper result = client.get(uri, IllegalArgumentException.class);
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));