Change all the packages from openecomp to onap
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.transforms;
23
24
25 import java.io.IOException;
26
27 import org.junit.Assert;
28
29 import com.bazaarvoice.jolt.ArrayOrderObliviousDiffy;
30 import com.bazaarvoice.jolt.Diffy;
31 import com.bazaarvoice.jolt.JsonUtils;
32
33 public class JoltTestUtil {
34
35     private static final Diffy diffy = new Diffy();
36     private static final Diffy arrayOrderObliviousDiffy = new ArrayOrderObliviousDiffy();
37
38     public static void runDiffy( String failureMessage, Object expected, Object actual ) throws IOException {
39         runDiffy( diffy, failureMessage, expected, actual );
40     }
41
42     public static void runDiffy( Object expected, Object actual ) throws IOException {
43         runDiffy( diffy, "Failed", expected, actual );
44     }
45
46     public static void runArrayOrderObliviousDiffy( String failureMessage, Object expected, Object actual ) throws IOException {
47         runDiffy( arrayOrderObliviousDiffy, failureMessage, expected, actual );
48     }
49
50     public static void runArrayOrderObliviousDiffy( Object expected, Object actual ) throws IOException {
51         runDiffy( arrayOrderObliviousDiffy, "Failed", expected, actual );
52     }
53
54
55     private static void runDiffy( Diffy diffy, String failureMessage, Object expected, 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 + "\nDiffy output\n" + result.toString());
60         }
61     }
62 }