Release 1.14.3 docker artifact of aai-traversal
[aai/traversal.git] / aai-traversal / src / test / java / org / onap / aai / transforms / JoltTestUtil.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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 package org.onap.aai.transforms;
21
22 import com.bazaarvoice.jolt.ArrayOrderObliviousDiffy;
23 import com.bazaarvoice.jolt.Diffy;
24 import com.bazaarvoice.jolt.JsonUtils;
25
26 import java.io.IOException;
27
28 import org.junit.Assert;
29
30 public class JoltTestUtil {
31
32     private static final Diffy diffy = new Diffy();
33     private static final Diffy arrayOrderObliviousDiffy = new ArrayOrderObliviousDiffy();
34
35     public static void runDiffy(String failureMessage, Object expected, Object actual)
36         throws IOException {
37         runDiffy(diffy, failureMessage, expected, actual);
38     }
39
40     public static void runDiffy(Object expected, Object actual) throws IOException {
41         runDiffy(diffy, "Failed", expected, actual);
42     }
43
44     public static void runArrayOrderObliviousDiffy(String failureMessage, Object expected,
45         Object actual) throws IOException {
46         runDiffy(arrayOrderObliviousDiffy, failureMessage, expected, actual);
47     }
48
49     public static void runArrayOrderObliviousDiffy(Object expected, Object actual)
50         throws IOException {
51         runDiffy(arrayOrderObliviousDiffy, "Failed", expected, actual);
52     }
53
54     private static void runDiffy(Diffy diffy, String failureMessage, Object expected,
55         Object actual) {
56         String actualObject = JsonUtils.toPrettyJsonString(actual);
57         Diffy.Result result = diffy.diff(expected, actual);
58         if (!result.isEmpty()) {
59             Assert.fail("\nActual object\n" + actualObject + "\n" + failureMessage
60                 + "\nDiffy output\n" + result.toString());
61         }
62     }
63 }