a1e94c51a2b7d7a07d19801bda65448759d6e7c5
[aaf/authz.git] / misc / rosetta / src / test / java / org / onap / aaf / misc / rosetta / test / JU_Nulls.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 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
22 package org.onap.aaf.misc.rosetta.test;
23
24 import junit.framework.Assert;
25
26 import org.junit.AfterClass;
27 import org.junit.Test;
28 import org.onap.aaf.misc.env.Data;
29 import org.onap.aaf.misc.rosetta.env.RosettaDF;
30 import org.onap.aaf.misc.rosetta.env.RosettaData;
31 import org.onap.aaf.misc.rosetta.env.RosettaEnv;
32
33 import s.xsd.LargerData;
34 import s.xsd.SampleData;
35
36 public class JU_Nulls {
37
38     @AfterClass
39     public static void tearDownAfterClass() throws Exception {
40     }
41
42     @Test
43     public void test() {
44         RosettaEnv env = new RosettaEnv();
45         try {
46             RosettaDF<LargerData> df = env.newDataFactory(LargerData.class);
47             df.out(Data.TYPE.JSON);
48             LargerData urr = new LargerData();
49             SampleData sd = new SampleData();
50             sd.setDate(1444125487798L);
51             sd.setId(null);
52             urr.getSampleData().add(sd);
53             urr.setFluff(null);
54             RosettaData<LargerData> data = df.newData();
55 //            StringWriter sw = new StringWriter();
56 //            df.direct(trans, urr, sw);
57 //            System.out.println(sw.toString());
58             data.load(urr);
59             System.out.println(data.asString());
60             Assert.assertEquals("{\"SampleData\":[{\"date\":1444125487798}]}", data.asString());
61             
62             System.out.println(data.out(Data.TYPE.RAW).asString());
63         } catch (Exception e) {
64             // TODO Auto-generated catch block
65             e.printStackTrace();
66         }
67         
68     }
69
70 }