Nodes query rewritten to generic rest client
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / AaiOverTLSClientTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2018 Nokia 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.vid.aai;
22
23 import com.google.common.collect.ImmutableMap;
24 import java.util.Collections;
25 import java.util.Map;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.Matchers;
30 import org.mockito.Mock;
31 import org.mockito.Mockito;
32 import org.mockito.runners.MockitoJUnitRunner;
33 import org.onap.vid.aai.model.AaiNodeQueryResponse;
34 import org.onap.vid.aai.model.ResourceType;
35 import org.onap.vid.client.SyncRestClient;
36
37 @RunWith(MockitoJUnitRunner.class)
38 public class AaiOverTLSClientTest {
39
40     public static final String SEARCH_NODES_QUERY_SEARCH_NODE_TYPE = "search/nodes-query?search-node-type=generic-vnf&filter=vnf-name:EQUALS:name";
41     private AaiOverTLSClient aaiRestClient;
42
43     @Mock
44     private SyncRestClient syncRestClient;
45     @Mock
46     private AaiOverTLSPropertySupplier propertySupplier;
47
48     @Before
49     public void setUp() {
50         aaiRestClient = new AaiOverTLSClient(syncRestClient,  propertySupplier);
51     }
52
53     @Test
54     public void searchNodeTypeByName() {
55         mockPropertyReader();
56
57         aaiRestClient.searchNodeTypeByName("name", ResourceType.GENERIC_VNF);
58         Mockito.verify(syncRestClient).get(Matchers.contains(SEARCH_NODES_QUERY_SEARCH_NODE_TYPE),
59             Matchers.eq(getHeaders()), Matchers.eq(Collections.emptyMap()), Matchers.eq(AaiNodeQueryResponse.class));
60     }
61
62     private void mockPropertyReader() {
63         Mockito.when(propertySupplier.getPassword()).thenReturn("Pass");
64         Mockito.when(propertySupplier.getUsername()).thenReturn("User");
65         Mockito.when(propertySupplier.getRequestId()).thenReturn("1");
66         Mockito.when(propertySupplier.getRandomUUID()).thenReturn("2");
67     }
68
69     private Map<String,String> getHeaders(){
70         return ImmutableMap.<String, String>builder().put("Authorization", "Basic VXNlcjpQYXNz").
71             put("X-FromAppId", "VidAaiController").put("Accept", "application/json").put("X-ECOMP-RequestID", "1").
72             put("X-TransactionId", "2").put("Content-Type", "application/json").build();
73     }
74
75 }