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