Remove diffutils dependency
[aai/traversal.git] / aai-traversal / src / test / java / org / onap / aai / retiredcustomer / JaxrsUserServiceTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.retiredcustomer;
23
24 import com.att.eelf.configuration.EELFLogger;
25 import com.att.eelf.configuration.EELFManager;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Mockito;
29 import org.onap.aai.ajsc_aai.JaxrsUserService;
30 import org.onap.aai.introspection.Version;
31 import org.onap.aai.rest.retired.RetiredConsumer;
32
33 import javax.ws.rs.core.*;
34 import java.util.*;
35
36 import static org.junit.Assert.assertNotNull;
37 import static org.mockito.Matchers.anyObject;
38 import static org.mockito.Mockito.when;
39
40 public class JaxrsUserServiceTest {
41
42
43     protected static final MediaType APPLICATION_JSON = MediaType.valueOf("application/json");
44
45     private static final Set<Integer> VALID_HTTP_STATUS_CODES = new HashSet<>();
46
47     static {
48         VALID_HTTP_STATUS_CODES.add(200);
49         VALID_HTTP_STATUS_CODES.add(201);
50         VALID_HTTP_STATUS_CODES.add(204);
51     }
52
53     protected JaxrsUserService jaxrsUserService;
54     protected HttpHeaders httpHeaders;
55     protected UriInfo uriInfo;
56
57     private MultivaluedMap<String, String> headersMultiMap;
58     private MultivaluedMap<String, String> queryParameters;
59
60     private List<String> aaiRequestContextList;
61
62     private List<MediaType> outputMediaTypes;
63
64     private static final EELFLogger logger = EELFManager.getInstance().getLogger(RetiredConsumer.class.getName());
65
66     @Before
67     public void setup(){
68         logger.info("Starting the setup for the integration tests of Rest Endpoints");
69
70         jaxrsUserService     = new JaxrsUserService();
71         httpHeaders         = Mockito.mock(HttpHeaders.class);
72         uriInfo             = Mockito.mock(UriInfo.class);
73
74         headersMultiMap     = new MultivaluedHashMap<>();
75         queryParameters     = Mockito.spy(new MultivaluedHashMap<>());
76
77         headersMultiMap.add("X-FromAppId", "JUNIT");
78         headersMultiMap.add("X-TransactionId", UUID.randomUUID().toString());
79         headersMultiMap.add("Real-Time", "true");
80         headersMultiMap.add("Accept", "application/json");
81         headersMultiMap.add("aai-request-context", "");
82
83         outputMediaTypes = new ArrayList<>();
84         outputMediaTypes.add(APPLICATION_JSON);
85
86         aaiRequestContextList = new ArrayList<>();
87         aaiRequestContextList.add("");
88
89         when(httpHeaders.getAcceptableMediaTypes()).thenReturn(outputMediaTypes);
90         when(httpHeaders.getRequestHeaders()).thenReturn(headersMultiMap);
91
92         when(httpHeaders.getRequestHeader("aai-request-context")).thenReturn(aaiRequestContextList);
93
94
95         when(uriInfo.getQueryParameters()).thenReturn(queryParameters);
96         when(uriInfo.getQueryParameters(false)).thenReturn(queryParameters);
97
98         // TODO - Check if this is valid since RemoveDME2QueryParameters seems to be very unreasonable
99         Mockito.doReturn(null).when(queryParameters).remove(anyObject());
100
101         when(httpHeaders.getMediaType()).thenReturn(APPLICATION_JSON);
102     }
103     @Test
104     public void lookUpUserTest(){
105         when(uriInfo.getPath()).thenReturn("/user?userID1");
106         String response  = jaxrsUserService.lookupUser("userID1");
107         assertNotNull(response);
108
109
110     }
111 }