AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / serialization / queryformats / ConsoleTest.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
21 package org.onap.aai.serialization.queryformats;
22
23 import static org.junit.Assert.*;
24
25 import com.google.gson.JsonObject;
26
27 import org.junit.Test;
28 import org.onap.aai.serialization.queryformats.exceptions.AAIFormatVertexException;
29
30 public class ConsoleTest {
31
32     Console fM1 = new Console();
33
34     String param = "abcd";
35
36     JsonObject resultVal;
37
38     @Test
39     public void classConsoleInstantiateCheck() {
40         try {
41             Console fm1 = new Console();
42             assertNotNull("Created class Object is null", fm1);
43         } catch (Exception e) {
44             fail();
45         }
46     }
47
48     // Below method is expecting to throw an exception
49
50     @Test(expected = NullPointerException.class)
51     public void formatObjectParamNullCheck() throws AAIFormatVertexException {
52
53         param = null;
54         Console fm3 = new Console();
55         resultVal = fm3.formatObject(param).get();
56     }
57
58     @Test
59     public void formatObjectResultCheck() {
60
61         try {
62             Console fm2 = new Console();
63
64             resultVal = fm2.formatObject(param).get();
65             assertNotNull("The result is null", resultVal);
66
67             // System.out.println(resultVal);
68
69             JsonObject jsonObj = new JsonObject();
70             jsonObj.addProperty("result", "abcd");
71
72             assertEquals(jsonObj, resultVal);
73
74         } catch (Exception e) {
75             fail();
76         }
77     }
78
79 }