05f998f6c82077b657783f356a969886134f05b3
[aai/gizmo.git] / src / test / java / org / onap / schema / EdgeRulesLoaderTest.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 static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertNull;
26 import static org.junit.Assert.assertTrue;
27 import org.junit.Test;
28 import org.onap.crud.exception.CrudException;
29
30 public class EdgeRulesLoaderTest {
31
32     @Test
33     public void loadModels() throws Exception {
34         EdgeRulesLoader.loadModels();
35         assertTrue(EdgeRulesLoader.getSchemaForVersion ( "v11" ).isValidType ( "org.onap.relationships.inventory.groupsResourcesIn" ));
36     }
37
38     @Test
39     public void loadModelsWithAVersion() throws Exception {
40         EdgeRulesLoader.resetSchemaVersionContext ();
41         EdgeRulesLoader.loadModels("V11");
42         assertEquals(1, EdgeRulesLoader.getSchemas ().size ());
43         assertEquals("v11", EdgeRulesLoader.getLatestSchemaVersion ());
44     }
45
46     @Test
47     public void getSchemaForVersion() throws Exception {
48         EdgeRulesLoader.resetSchemaVersionContext ();
49         EdgeRulesLoader.loadModels("v11");
50         String version = EdgeRulesLoader.getLatestSchemaVersion();
51         RelationshipSchema g = EdgeRulesLoader.getSchemaForVersion(version);
52         assertNotNull(g.lookupRelationType("org.onap.relationships.inventory.groupsResourcesIn"));
53         assertNotNull(g.lookupRelation("U:V:org.onap.relationships.inventory.groupsResourcesIn"));
54         assertNull(g.lookupRelation("U:W:org.onap.relationships.inventory.groupsResourcesIn"));
55     }
56
57
58     @Test
59     public void getSchemaForVersionFail() throws Exception {
60         EdgeRulesLoader.loadModels();
61         try {
62             EdgeRulesLoader.getSchemaForVersion("v1");
63         } catch (CrudException e) {
64             assertEquals(404, e.getHttpStatus().getStatusCode());
65         }
66     }
67 }