1d2d385764ec7be1b2bc3af05bf9834141063541
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / entity / model / TestNamedQueryArtifactParser.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.entity.model;
22
23 import static org.hamcrest.CoreMatchers.not;
24 import static org.hamcrest.Matchers.isEmptyString;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertThat;
27 import static org.junit.Assert.assertTrue;
28 import static org.junit.Assert.fail;
29
30 import java.nio.file.Files;
31 import java.nio.file.Paths;
32 import java.util.List;
33 import org.junit.Test;
34 import org.onap.aai.modelloader.entity.Artifact;
35
36 public class TestNamedQueryArtifactParser {
37
38     private static final String MODEL_FILE = "src/test/resources/models/named-query-wan-connector.xml";
39
40     @Test
41     public void testParseNamedQuery() throws Exception {
42         try {
43             String fileString = new String(Files.readAllBytes(Paths.get(MODEL_FILE)));
44
45             NamedQueryArtifactParser parser = new NamedQueryArtifactParser();
46             List<Artifact> modelList = parser.parse(fileString, "test-artifact");
47
48             assertEquals(1, modelList.size());
49
50             NamedQueryArtifact model = (NamedQueryArtifact) modelList.get(0);
51
52             assertThat(model.toString(), not(isEmptyString()));
53             assertTrue(model.getNamedQueryUuid().equalsIgnoreCase("94cac189-8d88-4d63-a194-f44214e080ff"));
54             assertTrue(model.getType().toString().equalsIgnoreCase("NAMED_QUERY"));
55             assertEquals(4, model.getDependentModelIds().size());
56             assertTrue(model.getDependentModelIds().contains("d09dd9da-0148-46cd-a947-591afc844d24"));
57             assertTrue(model.getDependentModelIds().contains("997fc7-fca1-451f-b953-9a1e6197b4d6"));
58             assertTrue(model.getDependentModelIds().contains("897df7ea-8938-42b0-bc57-46e913a4d93b"));
59             assertTrue(model.getDependentModelIds().contains("f2b24d95-c582-48d5-b2d6-c5b3a94ce812"));
60         } catch (Exception e) {
61             e.printStackTrace();
62             fail();
63         }
64     }
65
66 }