c4437faab61883bec17e2c764f633d5ebc1c09f9
[aai/gizmo.git] / src / test / java / org / onap / schema / OxmModelLoaderTest.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.schema;
22
23 import org.eclipse.persistence.dynamic.DynamicType;
24 import org.eclipse.persistence.internal.helper.DatabaseField;
25 import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
26 import org.eclipse.persistence.mappings.DatabaseMapping;
27 import org.junit.Assert;
28 import org.junit.Test;
29
30 public class OxmModelLoaderTest {
31
32     @Test
33     public void testLoadingMultipleOxmFiles() throws Exception {
34         OxmModelLoader.loadModels();
35
36         DynamicJAXBContext jaxbContext = OxmModelLoader.getContextForVersion(OxmModelLoader.getLatestVersion());
37
38         DynamicType pserver = jaxbContext.getDynamicType("Pserver");
39         DynamicType genericVnf = jaxbContext.getDynamicType("GenericVnf");
40
41         Assert.assertNotNull(pserver);
42         Assert.assertNotNull(genericVnf);
43
44         DatabaseMapping mapping = pserver.getDescriptor().getMappings().firstElement();
45         if (mapping.isAbstractDirectMapping()) {
46             DatabaseField f = mapping.getField();
47             String keyName = f.getName().substring(0, f.getName().indexOf("/"));
48             Assert.assertEquals(keyName, "hostname");
49         }
50
51         mapping = genericVnf.getDescriptor().getMappings().firstElement();
52         if (mapping.isAbstractDirectMapping()) {
53             DatabaseField f = mapping.getField();
54             String keyName = f.getName().substring(0, f.getName().indexOf("/"));
55             Assert.assertEquals(keyName, "vnf-id");
56         }
57
58     }
59 }