c408a53fc763584e85c53749cf51f0eb035cf4cb
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / entity / model / NamedQueryArtifactParserTest.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.aai.modelloader.entity.model;
22
23 import static org.junit.Assert.assertTrue;
24
25 import java.nio.file.Files;
26 import java.nio.file.Paths;
27 import java.util.List;
28
29 import org.junit.Test;
30 import org.onap.aai.modelloader.entity.Artifact;
31 import org.onap.aai.modelloader.entity.model.NamedQueryArtifact;
32 import org.onap.aai.modelloader.entity.model.NamedQueryArtifactParser;
33
34 public class NamedQueryArtifactParserTest {
35
36         @Test
37         public void testParseNamedQuery() throws Exception {
38                 final String MODEL_FILE = "src/test/resources/models/named-query-wan-connector.xml";
39
40                 try {
41                         byte[] xmlBytes = Files.readAllBytes(Paths.get(MODEL_FILE));
42
43                         NamedQueryArtifactParser parser = new NamedQueryArtifactParser();
44                         List<Artifact> modelList = parser.parse(xmlBytes, "test-artifact");
45
46                         assertTrue(modelList.size() == 1);
47
48                         NamedQueryArtifact model = (NamedQueryArtifact) modelList.get(0);
49                         System.out.println(model.toString());
50
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 }