AT&T 1712 and 1802 release code
[so.git] / common / src / test / java / org / openecomp / mso / client / aai / AAIExceptionMapperTest.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.openecomp.mso.client.aai;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.util.ArrayList;
26 import java.util.Arrays;
27 import java.util.List;
28
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.mockito.Mock;
32 import org.mockito.MockitoAnnotations;
33 import org.openecomp.mso.client.aai.entities.AAIError;
34
35 public class AAIExceptionMapperTest {
36
37         @Mock private AAIError errorObj;
38         
39         @Before
40         public void init() {
41                 MockitoAnnotations.initMocks(this);
42         }
43         @Test
44         public void nestedReplace() {
45                 String error = "Error %1 on %2";
46                 List<String> list = Arrays.asList("PUT", "hello %1");
47                 AAIErrorFormatter formatter = new AAIErrorFormatter(errorObj);
48                 String result = formatter.fillInTemplate(error, list);
49                 assertEquals("equal", "Error PUT on hello PUT", result);
50                 
51         }
52         
53         @Test
54         public void noReplace() {
55                 String error = "Error";
56                 List<String> list = new ArrayList<>();
57                 AAIErrorFormatter formatter = new AAIErrorFormatter(errorObj);
58                 String result = formatter.fillInTemplate(error, list);
59                 assertEquals("equal", "Error", result);
60                 
61         }
62         
63 }