Update the license for 2017-2018 license
[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
23 import java.io.IOException;
24
25 import org.junit.Assert;
26
27 import com.bazaarvoice.jolt.ArrayOrderObliviousDiffy;
28 import com.bazaarvoice.jolt.Diffy;
29 import com.bazaarvoice.jolt.JsonUtils;
30
31 public class JoltTestUtil {
32
33     private static final Diffy diffy = new Diffy();
34     private static final Diffy arrayOrderObliviousDiffy = new ArrayOrderObliviousDiffy();
35
36     public static void runDiffy( String failureMessage, Object expected, Object actual ) 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, Object actual ) throws IOException {
45         runDiffy( arrayOrderObliviousDiffy, failureMessage, expected, actual );
46     }
47
48     public static void runArrayOrderObliviousDiffy( Object expected, Object actual ) throws IOException {
49         runDiffy( arrayOrderObliviousDiffy, "Failed", expected, actual );
50     }
51
52
53     private static void runDiffy( Diffy diffy, String failureMessage, Object expected, Object actual ) {
54         String actualObject = JsonUtils.toPrettyJsonString( actual );
55         Diffy.Result result = diffy.diff( expected, actual );
56         if (!result.isEmpty()) {
57             Assert.fail( "\nActual object\n" + actualObject + "\n" + failureMessage + "\nDiffy output\n" + result.toString());
58         }
59     }
60 }