33cb20328fa12a39e529ceeed956dfb9a0edbea1
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.plugins.context.schema.avro;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.io.IOException;
26
27 import org.apache.avro.generic.GenericRecord;
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Ignore;
31 import org.junit.Test;
32 import org.onap.policy.apex.context.SchemaHelper;
33 import org.onap.policy.apex.context.impl.schema.SchemaHelperFactory;
34 import org.onap.policy.apex.context.parameters.ContextParameterConstants;
35 import org.onap.policy.apex.context.parameters.SchemaParameters;
36 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
37 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
38 import org.onap.policy.apex.model.basicmodel.service.ModelService;
39 import org.onap.policy.apex.model.contextmodel.concepts.AxContextSchema;
40 import org.onap.policy.apex.model.contextmodel.concepts.AxContextSchemas;
41 import org.onap.policy.apex.model.utilities.TextFileUtils;
42 import org.onap.policy.common.parameters.ParameterService;
43
44 /**
45  * @author Liam Fallon (liam.fallon@ericsson.com)
46  * @version
47  */
48 public class TestAvroSchemaUnion {
49     private final AxKey testKey = new AxArtifactKey("AvroTest", "0.0.1");
50     private AxContextSchemas schemas;
51     private String uinionSchema;
52
53     @Before
54     public void initTest() throws IOException {
55         schemas = new AxContextSchemas(new AxArtifactKey("AvroSchemas", "0.0.1"));
56         ModelService.registerModel(AxContextSchemas.class, schemas);
57         uinionSchema = TextFileUtils.getTextFileAsString("src/test/resources/avsc/UnionExample.avsc");
58     }
59
60     @Before
61     public void initContext() {
62         SchemaParameters schemaParameters = new SchemaParameters();
63         schemaParameters.setName(ContextParameterConstants.SCHEMA_GROUP_NAME);
64         schemaParameters.getSchemaHelperParameterMap().put("AVRO", new AvroSchemaHelperParameters());
65         ParameterService.register(schemaParameters);
66         
67     }
68
69     @After
70     public void clearContext() {
71         ParameterService.deregister(ContextParameterConstants.SCHEMA_GROUP_NAME);
72     }
73
74     @Ignore
75     @Test
76     public void testUnionAllFields() throws IOException {
77         final AxContextSchema avroSchema =
78                 new AxContextSchema(new AxArtifactKey("AvroRecord", "0.0.1"), "AVRO", uinionSchema);
79
80         schemas.getSchemasMap().put(avroSchema.getKey(), avroSchema);
81         final SchemaHelper schemaHelper = new SchemaHelperFactory().createSchemaHelper(testKey, avroSchema.getKey());
82
83         final String inString = TextFileUtils.getTextFileAsString("src/test/resources/data/UnionExampleAllFields.json");
84         final GenericRecord user = (GenericRecord) schemaHelper.createNewInstance(inString);
85
86         assertEquals("Ben", user.get("name").toString());
87         assertEquals(7, user.get("favourite_number"));
88         assertEquals("red", user.get("favourite_colour").toString());
89     }
90
91     @Ignore
92     @Test
93     public void testUnionOptionalField() throws IOException {
94         final AxContextSchema avroSchema =
95                 new AxContextSchema(new AxArtifactKey("AvroRecord", "0.0.1"), "AVRO", uinionSchema);
96
97         schemas.getSchemasMap().put(avroSchema.getKey(), avroSchema);
98         final SchemaHelper schemaHelper = new SchemaHelperFactory().createSchemaHelper(testKey, avroSchema.getKey());
99
100         final String inString =
101                 TextFileUtils.getTextFileAsString("src/test/resources/data/UnionExampleOptionalField.json");
102         final GenericRecord user = (GenericRecord) schemaHelper.createNewInstance(inString);
103
104         assertEquals("Ben", user.get("name").toString());
105         assertEquals(7, user.get("favourite_number"));
106         assertEquals("red", user.get("favourite_colour").toString());
107     }
108
109     @Ignore
110     @Test
111     public void testUnionNullField() throws IOException {
112         final AxContextSchema avroSchema =
113                 new AxContextSchema(new AxArtifactKey("AvroRecord", "0.0.1"), "AVRO", uinionSchema);
114
115         schemas.getSchemasMap().put(avroSchema.getKey(), avroSchema);
116         final SchemaHelper schemaHelper = new SchemaHelperFactory().createSchemaHelper(testKey, avroSchema.getKey());
117
118         final String inString = TextFileUtils.getTextFileAsString("src/test/resources/data/UnionExampleNullField.json");
119         final GenericRecord user = (GenericRecord) schemaHelper.createNewInstance(inString);
120
121         assertEquals("Ben", user.get("name").toString());
122         assertEquals(7, user.get("favourite_number"));
123         assertEquals("red", user.get("favourite_colour").toString());
124     }
125 }