Use RestTemplate in AaiRestClient
[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 (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright (c) 2017-2019 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
22 package org.onap.aai.modelloader.util;
23
24 import static org.hamcrest.CoreMatchers.is;
25 import static org.hamcrest.MatcherAssert.assertThat;
26
27 import java.io.IOException;
28 import java.nio.file.Files;
29 import java.nio.file.Paths;
30
31 import org.junit.Test;
32 import org.onap.aai.modelloader.gizmo.GizmoBulkPayload;
33
34 public class TestGizmoTranslator {
35
36     @Test(expected = IOException.class)
37     public void translateInvalidXml() throws IOException {
38         GizmoTranslator.translate("not valid XML");
39     }
40
41     @Test
42     public void translateXmlModel1() throws IOException {
43         GizmoBulkPayload request = createBulkRequest("src/test/resources/models/AAI-stellService-service-1.xml");
44         assertThat(request.getVertexOperations(GizmoBulkPayload.ADD_OP).size(), is(5));
45         assertThat(request.getVertexOperations(GizmoBulkPayload.EXISTS_OP).size(), is(3));
46         assertThat(request.getEdgeOperations(GizmoBulkPayload.ADD_OP).size(), is(7));
47     }
48
49     @Test
50     public void translateXmlModel2() throws IOException {
51         GizmoBulkPayload request = createBulkRequest("src/test/resources/models/l3-network-widget.xml");
52         assertThat(request.getVertexOperations(GizmoBulkPayload.ADD_OP).size(), is(2));
53         assertThat(request.getVertexOperations(GizmoBulkPayload.EXISTS_OP).size(), is(0));
54         assertThat(request.getEdgeOperations(GizmoBulkPayload.ADD_OP).size(), is(1));
55     }
56
57     @Test
58     public void translateXmlNamedQuery() throws IOException {
59         GizmoBulkPayload request = createBulkRequest("src/test/resources/models/named-query-wan-connector.xml");
60         assertThat(request.getVertexOperations(GizmoBulkPayload.ADD_OP).size(), is(5));
61         assertThat(request.getVertexOperations(GizmoBulkPayload.EXISTS_OP).size(), is(4));
62         assertThat(request.getEdgeOperations(GizmoBulkPayload.ADD_OP).size(), is(8));
63     }
64
65     private GizmoBulkPayload createBulkRequest(String filePath) throws IOException {
66         final String xmlPayload = new String(Files.readAllBytes(Paths.get(filePath)));
67         return GizmoBulkPayload.fromJson(GizmoTranslator.translate(xmlPayload));
68     }
69
70 }