1edf5ecaa30f367b66a09c1619c1d19f4b8dde42
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / test / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / packagetransformer / TestOnapVnfdBuilder.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer;
17
18 import org.junit.Test;
19 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.TestUtil;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.TestBase;
21
22 import java.util.NoSuchElementException;
23
24 import static junit.framework.TestCase.assertEquals;
25 import static junit.framework.TestCase.fail;
26
27
28 public class TestOnapVnfdBuilder extends TestBase {
29     private OnapVnfdBuilder packageTransformer = new OnapVnfdBuilder();
30
31     /**
32      * Test empty VNFD conversion
33      */
34     @Test
35     public void testEmpty() {
36         assertEquals(new String(TestUtil.loadFile("unittests/packageconverter/empty.vnfd.onap.yaml")), packageTransformer.toOnapVnfd(new String(TestUtil.loadFile("unittests/packageconverter/empty.vnfd.cbam.yaml"))));
37     }
38
39     /**
40      * Test all Tosca nodes conversions for successful scenario
41      */
42     @Test
43     public void testNodes() {
44         assertEquals(new String(TestUtil.loadFile("unittests/packageconverter/nodes.vnfd.onap.yaml")), packageTransformer.toOnapVnfd(new String(TestUtil.loadFile("unittests/packageconverter/nodes.vnfd.cbam.yaml"))));
45     }
46
47     /**
48      * if a node refers to a non existing node it results in a failure
49      */
50     @Test
51     public void testInconsitentVnfd() {
52         try {
53             packageTransformer.toOnapVnfd(new String(TestUtil.loadFile("unittests/packageconverter/nodes.vnfd.inconsistent.cbam.yaml")));
54             fail();
55         } catch (NoSuchElementException e) {
56             assertEquals("The VNFD does not have a node called myComputeMissing but required by an other node", e.getMessage());
57         }
58     }
59
60 }