Implement PNFD Model driven conversion
[sdc.git] / openecomp-be / lib / openecomp-tosca-converter-lib / openecomp-tosca-converter-core / src / test / java / org / openecomp / core / converter / impl / pnfd / parser / PnfdConversionStrategyYamlParserTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.core.converter.impl.pnfd.parser;
21
22 import static org.hamcrest.Matchers.is;
23 import static org.junit.Assert.assertThat;
24 import static org.junit.Assert.fail;
25
26 import java.io.IOException;
27 import java.io.InputStream;
28 import java.util.Map;
29 import java.util.Optional;
30 import org.junit.Test;
31 import org.openecomp.core.converter.pnfd.strategy.PnfdConversionStrategy;
32 import org.openecomp.core.util.TestResourcesUtil;
33 import org.openecomp.core.util.YamlTestUtil;
34
35 public class PnfdConversionStrategyYamlParserTest {
36
37     @Test
38     public void parseInvalidYamlObject() {
39         final Object replaceStrategyYaml;
40         final String strategyYamlFilePath = "transformation/strategy/strategyMissingStrategyAttribute.yaml";
41         try (final InputStream resourceInputStream = TestResourcesUtil.getFileResourceAsStream(strategyYamlFilePath)) {
42             replaceStrategyYaml = YamlTestUtil.read(resourceInputStream);
43         } catch (final IOException e) {
44             fail(String.format("Could not load %s", strategyYamlFilePath));
45             return;
46         }
47         final Optional<PnfdConversionStrategy> actualStrategy = PnfdConversionStrategyYamlParser
48             .parse((Map<String, Object>) replaceStrategyYaml);
49         assertThat("The strategy should not have been built"
50             , actualStrategy.isPresent(), is(false));
51     }
52
53 }