Allow handling of legact model artifacts
[aai/model-loader.git] / src / test / java / org / openecomp / modelloader / entity / model / ModelParserFactoryTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * Model Loader
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  *
20  * ECOMP and OpenECOMP are trademarks
21  * and service marks of AT&T Intellectual Property.
22  */
23 package org.openecomp.modelloader.entity.model;
24
25 import static org.junit.Assert.assertTrue;
26
27 import java.nio.file.Files;
28 import java.nio.file.Paths;
29
30 import org.junit.Test;
31
32 public class ModelParserFactoryTest {
33
34         @Test
35         public void testParserFactory() throws Exception {
36                 final String MODEL_FILE_V8 = "src/test/resources/models/v8-wan-connector-model.xml";
37                 final String MODEL_FILE_V9 = "src/test/resources/models/AAI-VL-resource-1.xml";
38                 final String MODEL_FILE_NAMED_QUERY = "src/test/resources/models/named-query-wan-connector.xml";
39
40                 
41                 try {
42                         byte[] xmlBytes = Files.readAllBytes(Paths.get(MODEL_FILE_V8));
43                         IModelParser parser = ModelParserFactory.createModelParser(xmlBytes, "v8-wan-connector-model.xml");
44                         assertTrue(parser instanceof ModelV8ArtifactParser);
45                         
46                         xmlBytes = Files.readAllBytes(Paths.get(MODEL_FILE_V9));
47       parser = ModelParserFactory.createModelParser(xmlBytes, "AAI-VL-resource-1.xml");
48       assertTrue(parser instanceof ModelArtifactParser);
49       
50       xmlBytes = Files.readAllBytes(Paths.get(MODEL_FILE_NAMED_QUERY));
51       parser = ModelParserFactory.createModelParser(xmlBytes, "named-query-wan-connector.xml");
52       assertTrue(parser instanceof NamedQueryArtifactParser);
53                 } catch (Exception e) {
54       e.printStackTrace();
55       assertTrue(false);
56     }
57         }
58 }