Upgrade version of aai-common
[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 import org.junit.runner.RunWith;
30 import org.mockito.junit.MockitoJUnitRunner;
31 import org.onap.crud.OXMModelLoaderSetup;
32
33 @RunWith(MockitoJUnitRunner.Silent.class)
34 public class OxmModelLoaderTest extends OXMModelLoaderSetup {
35
36     @Test
37     public void testLoadingMultipleOxmFiles() throws Exception {
38         OxmModelLoader.loadModels();
39
40         DynamicJAXBContext jaxbContext = OxmModelLoader.getContextForVersion(OxmModelLoader.getLatestVersion());
41
42         DynamicType pserver = jaxbContext.getDynamicType("Pserver");
43         DynamicType genericVnf = jaxbContext.getDynamicType("GenericVnf");
44
45         Assert.assertNotNull(pserver);
46         Assert.assertNotNull(genericVnf);
47
48         DatabaseMapping mapping = pserver.getDescriptor().getMappings().firstElement();
49         if (mapping.isAbstractDirectMapping()) {
50             DatabaseField f = mapping.getField();
51             String keyName = f.getName().substring(0, f.getName().indexOf("/"));
52             Assert.assertEquals(keyName, "hostname");
53         }
54
55         mapping = genericVnf.getDescriptor().getMappings().firstElement();
56         if (mapping.isAbstractDirectMapping()) {
57             DatabaseField f = mapping.getField();
58             String keyName = f.getName().substring(0, f.getName().indexOf("/"));
59             Assert.assertEquals(keyName, "vnf-id");
60         }
61
62     }
63 }