Format Java code to ONAP standard
[aai/search-data-service.git] / src / test / java / org / onap / aai / sa / rest / DocumentSchemaTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sa.rest;
22
23 import static org.junit.Assert.assertTrue;
24
25 import com.fasterxml.jackson.core.JsonParseException;
26 import com.fasterxml.jackson.databind.JsonMappingException;
27 import com.fasterxml.jackson.databind.ObjectMapper;
28 import java.io.File;
29 import java.io.IOException;
30 import org.junit.Test;
31
32
33 public class DocumentSchemaTest {
34
35     private final String SIMPLE_DOC_SCHEMA_JSON = "src/test/resources/json/simpleDocument.json";
36     private final String NESTED_DOC_SCHEMA_JSON = "src/test/resources/json/nested-document.json";
37
38
39     /**
40      * This test validates that we convert document definitions back and forth between json strings and POJOs without
41      * any loss of data.
42      *
43      * @throws com.fasterxml.jackson.core.JsonParseException
44      * @throws com.fasterxml.jackson.databind.JsonMappingException
45      * @throws IOException
46      */
47     @Test
48     public void simpleDocSchemaFromJsonFileTest() throws com.fasterxml.jackson.core.JsonParseException,
49             com.fasterxml.jackson.databind.JsonMappingException, IOException {
50
51         // Import our json format document schema from a file.
52         File schemaFile = new File(SIMPLE_DOC_SCHEMA_JSON);
53         String fileString = TestUtils.readFileToString(schemaFile);
54
55         // Unmarshall that to a Java POJO
56         ObjectMapper mapper = new ObjectMapper();
57         DocumentSchema docSchema = mapper.readValue(schemaFile, DocumentSchema.class);
58
59         // Now, for the purposes of comparison, produce a JSON string from
60         // our Java object.
61         String jsonString = mapper.writeValueAsString(docSchema);
62
63         // Assert that the raw JSON that we read from the file matches the marshalled
64         // JSON we generated from our Java object (ie: validate that we didn't lose
65         // anything going in either direction).
66         assertTrue("Marshalled object does not match the original json source that produced it",
67                 fileString.equals(jsonString));
68     }
69
70     //
71     // /**
72     // * This test validates that we convert document definitions back and
73     // * forth between json strings and POJOs without any loss of data in
74     // * the case of document schemas which contain nested fields.
75     // *
76     // * @throws com.fasterxml.jackson.core.JsonParseException
77     // * @throws com.fasterxml.jackson.databind.JsonMappingException
78     // * @throws IOException
79     // */
80
81     @Test
82     public void nestedDocSchemaFromJsonFileTest() throws JsonParseException, JsonMappingException, IOException {
83
84         // Import our json format document schema from a file.
85         File schemaFile = new File(NESTED_DOC_SCHEMA_JSON);
86         String fileString = TestUtils.readFileToString(schemaFile);
87
88         // Unmarshall that to a Java POJO
89         ObjectMapper mapper = new ObjectMapper();
90         DocumentSchema docSchema = mapper.readValue(schemaFile, DocumentSchema.class);
91
92         String jsonString = mapper.writeValueAsString(docSchema);
93
94         // Assert that the raw JSON that we read from the file matches the marshalled
95         // JSON we generated from our Java object (ie: validate that we didn't lose
96         // anything going in either direction).
97         assertTrue("Marshalled object does not match the original json source that produced it",
98                 fileString.equals(jsonString));
99     }
100 }