Merge "Junit Test Case Added for AAIClientCallFailed.java"
[so.git] / bpmn / so-bpmn-infrastructure-common / src / test / java / org / onap / so / bpmn / infrastructure / pnf / dmaap / JsonUtilForPnfCorrelationIdTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2018 Nokia.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.bpmn.infrastructure.pnf.dmaap;
24
25 import static org.assertj.core.api.Assertions.assertThat;
26
27 import java.util.List;
28 import org.junit.Test;
29
30 public class JsonUtilForPnfCorrelationIdTest {
31
32     private static final String JSON_EXAMPLE_WITH_PNF_CORRELATION_ID = "[{\"pnfCorrelationId\": \"corrTest1\","
33             + "\"key1\":\"value1\"},{\"pnfCorrelationId\": \"corrTest2\",\"key2\":\"value2\"}]";
34
35     private static final String JSON_WITH_ONE_PNF_CORRELATION_ID = "[{\"pnfCorrelationId\":\"corrTest3\"}]";
36
37     private static final String JSON_WITH_TWO_PNF_CORRELATION_ID_AND_ESCAPED_CHARACTERS =
38             "[\"{\\\"pnfCorrelationId\\\":\\\"corrTest4\\\"}\", \"{\\\"pnfCorrelationId\\\":\\\"corrTest5\\\"}\"]";
39
40     private static final String JSON_WITH_NO_PNF_CORRELATION_ID = "[{\"key1\":\"value1\"}]";
41
42     @Test
43     public void parseJsonSuccessful() {
44         List<String> expectedResult = JsonUtilForPnfCorrelationId
45                 .parseJsonToGelAllPnfCorrelationId(JSON_EXAMPLE_WITH_PNF_CORRELATION_ID);
46         assertThat(expectedResult).containsExactly("corrTest1", "corrTest2");
47
48         List<String> expectedResult2 = JsonUtilForPnfCorrelationId
49                 .parseJsonToGelAllPnfCorrelationId(JSON_WITH_ONE_PNF_CORRELATION_ID);
50         assertThat(expectedResult2).containsExactly("corrTest3");
51     }
52
53     @Test
54     public void parseJsonWithEscapeCharacters_Successful() {
55         List<String> expectedResult = JsonUtilForPnfCorrelationId
56                 .parseJsonToGelAllPnfCorrelationId(JSON_WITH_TWO_PNF_CORRELATION_ID_AND_ESCAPED_CHARACTERS);
57         assertThat(expectedResult).containsExactly("corrTest4", "corrTest5");
58     }
59
60     @Test
61     public void parseJson_emptyListReturnedWhenNothingFound() {
62         List<String> expectedResult = JsonUtilForPnfCorrelationId
63                 .parseJsonToGelAllPnfCorrelationId(JSON_WITH_NO_PNF_CORRELATION_ID);
64         assertThat(expectedResult).isEmpty();
65     }
66
67 }