Fix Sonar code smells
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / util / TestGizmoTranslator.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 European Software Marketing Ltd.
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.modelloader.util;
22
23 import static org.hamcrest.CoreMatchers.is;
24 import static org.junit.Assert.assertThat;
25
26 import java.io.IOException;
27 import java.nio.file.Files;
28 import java.nio.file.Paths;
29 import javax.xml.parsers.ParserConfigurationException;
30 import org.junit.Test;
31 import org.onap.aai.modelloader.gizmo.GizmoBulkPayload;
32 import org.xml.sax.SAXException;
33
34 public class TestGizmoTranslator {
35
36     @Test
37     public void translateXmlModel1() throws Exception {
38         GizmoBulkPayload request = createBulkRequest("src/test/resources/models/AAI-stellService-service-1.xml");
39         assertThat(request.getVertexOperations(GizmoBulkPayload.ADD_OP).size(), is(5));
40         assertThat(request.getVertexOperations(GizmoBulkPayload.EXISTS_OP).size(), is(3));
41         assertThat(request.getEdgeOperations(GizmoBulkPayload.ADD_OP).size(), is(7));
42     }
43
44     @Test
45     public void translateXmlModel2() throws Exception {
46         GizmoBulkPayload request = createBulkRequest("src/test/resources/models/l3-network-widget.xml");
47         assertThat(request.getVertexOperations(GizmoBulkPayload.ADD_OP).size(), is(2));
48         assertThat(request.getVertexOperations(GizmoBulkPayload.EXISTS_OP).size(), is(0));
49         assertThat(request.getEdgeOperations(GizmoBulkPayload.ADD_OP).size(), is(1));
50     }
51
52     @Test
53     public void translateXmlNamedQuery() throws Exception {
54         GizmoBulkPayload request = createBulkRequest("src/test/resources/models/named-query-wan-connector.xml");
55         assertThat(request.getVertexOperations(GizmoBulkPayload.ADD_OP).size(), is(5));
56         assertThat(request.getVertexOperations(GizmoBulkPayload.EXISTS_OP).size(), is(4));
57         assertThat(request.getEdgeOperations(GizmoBulkPayload.ADD_OP).size(), is(8));
58     }
59
60     private GizmoBulkPayload createBulkRequest(String filePath)
61             throws IOException, ParserConfigurationException, SAXException {
62         final String xmlPayload = new String(Files.readAllBytes(Paths.get(filePath)));
63         return GizmoBulkPayload.fromJson(GizmoTranslator.translate(xmlPayload));
64     }
65
66 }