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