integrate helm-chart-generator to runtime api
[dcaegen2/platform.git] / mod / runtimeapi / runtime-core / src / test / java / org / onap / dcae / runtime / core / TestIntegeration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * Copyright (C) 2020 Nokia. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  * 
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  * 
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19 package org.onap.dcae.runtime.core;
20
21 import org.junit.Before;
22 import org.junit.Ignore;
23 import org.junit.Test;
24 import org.onap.dcae.runtime.core.blueprint_creator.BlueprintCreator;
25 import org.onap.dcae.runtime.core.blueprint_creator.BlueprintCreatorOnap;
26
27 public class TestIntegeration extends BpGenTestBase {
28
29     private FlowGraphParser flowGraphParser;
30
31     @Before
32     public void setUp() throws Exception{
33         //1. prepare Graph
34         FlowGraph<Node, Edge> flowGraph = Helper.prepareFlowGraph();
35
36         //2. Inject graph in FlowGraphParser
37         BlueprintCreator blueprintCreator = new BlueprintCreatorOnap(componentSpecService, blueprintCreatorService,
38             blueprintService,
39             fixesService);
40         flowGraphParser = new FlowGraphParser(blueprintCreator);
41         flowGraphParser.parse(flowGraph);
42     }
43
44     @Test
45     @Ignore
46     public void testParserCreatesBlueprintsFromFlowGraph() throws Exception{
47         /*
48         TODO: FIX
49         //3. Check if the parser can create blueprints for the componentSpec collection
50         //resultMap has key as a component-name and value is a blueprint string
51         Map<String,String> expectedBlueprints = Helper.loadTestBlueprints();
52         Map<String,String> resultBlueprints = flowGraphParser.createAndProcessBlueprints();
53
54         assertEquals(expectedBlueprints,resultBlueprints);
55         */
56     }
57 }