a1dcf5b1f86e16c054cc726644b4ebe753776953
[sdc/sdc-tosca.git] / sdc-tosca / src / test / java / org / onap / sdc / impl / MyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdc-tosca
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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
21 package org.onap.sdc.impl;
22
23 import org.onap.sdc.toscaparser.api.NodeTemplate;
24 import org.testng.annotations.Test;
25 import org.onap.sdc.tosca.parser.api.ISdcCsarHelper;
26 import org.onap.sdc.tosca.parser.exceptions.SdcToscaParserException;
27 import org.onap.sdc.tosca.parser.impl.SdcToscaParserFactory;
28
29 import java.io.File;
30
31 import static org.onap.sdc.impl.SdcToscaParserBasicTest.getCsarHelper;
32
33 public class MyTest {
34
35         static SdcToscaParserFactory factory;
36         static ISdcCsarHelper fdntCsarHelper;
37
38         @Test
39         public void testMyCsar() throws SdcToscaParserException {
40
41
42 //              factory = SdcToscaParserFactory.getInstance();
43 //              fdntCsarHelper = getCsarHelper("csars/service-Oren1-csar-4.csar");
44 //
45 //
46 //              List<NodeTemplate> serviceNodeTemplatesByType = fdntCsarHelper.getServiceNodeTemplatesByType("org.openecomp.nodes.ForwardingPath");
47 //
48 //              String target_range = fdntCsarHelper.getNodeTemplatePropertyLeafValue(serviceNodeTemplatesByType.get(0), "target_range");
49
50         }
51
52
53         protected static ISdcCsarHelper getCsarHelper(String path) throws SdcToscaParserException {
54                 System.out.println("Parsing CSAR "+path+"...");
55                 String fileStr1 = SdcToscaParserBasicTest.class.getClassLoader().getResource(path).getFile();
56                 File file1 = new File(fileStr1);
57                 ISdcCsarHelper sdcCsarHelper = factory.getSdcCsarHelper(file1.getAbsolutePath());
58                 return sdcCsarHelper;
59         }
60
61 }