981a4ddacc2830d4378421e3b76273a6fd020fbb
[so.git] / common / src / test / java / org / onap / so / client / aai / AAIClientResponseExceptionMapperTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 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
21 package org.onap.so.client.aai;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.util.Arrays;
26 import java.util.List;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.onap.so.client.aai.entities.AAIError;
31 import org.onap.so.client.aai.entities.RequestError;
32 import org.onap.so.client.aai.entities.ServiceException;
33
34 import com.fasterxml.jackson.core.JsonProcessingException;
35 import com.fasterxml.jackson.databind.ObjectMapper;
36
37 public class AAIClientResponseExceptionMapperTest {
38
39         AAIClientResponseExceptionMapper mapper;
40         String errorMsg;
41         
42         @Before
43         public void before() {
44                 mapper = new AAIClientResponseExceptionMapper();
45                 errorMsg = "Error calling A&AI. Request-Id=" + mapper.getRequestId() + " ";
46         }
47         
48         @Test
49         public void testExtractMessageWithEntity() throws JsonProcessingException {     
50                 ServiceException svcException = new ServiceException();
51                 svcException.setText("test %1 message - %2");
52                 svcException.setVariables(Arrays.asList("error", "service exception %1 test"));
53                 
54                 RequestError requestError = new RequestError();
55                 requestError.setServiceException(svcException);
56                 
57                 AAIError error = new AAIError();
58                 error.setRequestError(requestError);
59                 
60                 ObjectMapper objMapper = new ObjectMapper();
61                 String strRequestError = objMapper.writeValueAsString(error);
62
63                 assertEquals(errorMsg + "test error message - service exception error test", mapper.extractMessage(strRequestError).get());
64         }
65         
66         @Test
67         public void testExtractMessageWithoutEntity() {
68                 assertEquals(errorMsg, mapper.extractMessage("").get());
69         }
70 }