aboutsummaryrefslogtreecommitdiffstats
path: root/graph-inventory/aai-client/src/test/java/org/onap/so/client/aai/AAIResourcesClientWithServiceInstanceUriTest.java
blob: 55da6e7d521b4727bd9940d5f22e15b9d6d4d9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.so.client.aai;

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching;
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.spy;
import java.util.List;
import java.util.Optional;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Spy;
import org.mockito.junit.MockitoJUnitRunner;
import org.onap.so.client.aai.entities.AAIResultWrapper;
import org.onap.so.client.aai.entities.uri.AAIUriFactory;
import org.onap.so.client.aai.entities.uri.ServiceInstanceUri;
import org.onap.so.client.defaultproperties.DefaultAAIPropertiesImpl;
import com.github.tomakehurst.wiremock.junit.WireMockRule;

@RunWith(MockitoJUnitRunner.class)
public class AAIResourcesClientWithServiceInstanceUriTest {

    @Rule
    public WireMockRule wireMockRule = new WireMockRule(wireMockConfig().dynamicPort());

    @Rule
    public ExpectedException thrown = ExpectedException.none();

    @Spy
    public AAIClient client;

    @InjectMocks
    public AAIResourcesClient aaiClient = new AAIResourcesClient();

    private ServiceInstanceUri uri;

    @Before
    public void setUp() {
        doReturn(new DefaultAAIPropertiesImpl(wireMockRule.port())).when(client).getRestProperties();
        wireMockRule.stubFor(get(urlMatching("/aai/v[0-9]+/nodes.*")).willReturn(
                aResponse().withStatus(404).withHeader("Content-Type", "application/json").withHeader("Mock", "true")));

        uri = spy((ServiceInstanceUri) AAIUriFactory.createResourceUri(AAIObjectType.SERVICE_INSTANCE, "id"));
        doReturn(aaiClient).when(uri).getResourcesClient();
    }

    @Test
    public void getWithClass() {
        AAIResourcesClient client = aaiClient;
        Optional<String> result = client.get(String.class, uri);

        assertThat(result.isPresent(), equalTo(false));
    }

    @Test
    public void getFullResponse() {
        AAIResourcesClient client = aaiClient;
        Response result = client.getFullResponse(uri);
        assertThat(result.getStatus(), equalTo(Status.NOT_FOUND.getStatusCode()));
    }

    @Test
    public void getWithGenericType() {
        AAIResourcesClient client = aaiClient;
        Optional<List<String>> result = client.get(new GenericType<List<String>>() {}, uri);
        assertThat(result.isPresent(), equalTo(false));
    }

    @Test
    public void getAAIWrapper() {
        AAIResourcesClient client = aaiClient;
        AAIResultWrapper result = client.get(uri);
        assertThat(result.isEmpty(), equalTo(true));
    }

    @Test
    public void getWithException() {
        AAIResourcesClient client = aaiClient;
        this.thrown.expect(IllegalArgumentException.class);
        AAIResultWrapper result = client.get(uri, IllegalArgumentException.class);
    }

    @Test
    public void existsTest() {
        AAIResourcesClient client = aaiClient;
        doReturn(uri).when(uri).clone();
        boolean result = client.exists(uri);
        assertThat(result, equalTo(false));
    }

}