Adding missing tests
[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.Before;
19 import org.junit.Test;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.TestUtil;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.TestBase;
22
23 import java.util.NoSuchElementException;
24
25 import static junit.framework.TestCase.assertEquals;
26 import static junit.framework.TestCase.fail;
27 import static org.mockito.Mockito.verify;
28 import static org.springframework.test.util.ReflectionTestUtils.setField;
29
30
31 public class TestOnapVnfdBuilder extends TestBase {
32     private OnapVnfdBuilder packageTransformer = new OnapVnfdBuilder();
33
34
35     @Before
36     public void init() {
37         setField(OnapVnfdBuilder.class, "logger", logger);
38     }
39
40     @Test
41     public void indent() {
42         assertEquals("    x", packageTransformer.indent("x", 2));
43         assertEquals("    x\n", packageTransformer.indent("x\n", 2));
44         assertEquals("    x\n    y", packageTransformer.indent("x\ny", 2));
45         assertEquals("    x\n    y\n", packageTransformer.indent("x\ny\n", 2));
46         assertEquals("    \n", packageTransformer.indent("\n", 2));
47     }
48
49     /**
50      * Test empty VNFD conversion
51      */
52     @Test
53     public void testEmpty() {
54         assertEquals(new String(TestUtil.loadFile("unittests/packageconverter/empty.vnfd.onap.yaml")), packageTransformer.toOnapVnfd(new String(TestUtil.loadFile("unittests/packageconverter/empty.vnfd.cbam.yaml"))));
55     }
56
57     /**
58      * Test all Tosca nodes conversions for successful scenario
59      */
60     @Test
61     public void testNodes() {
62         assertEquals(new String(TestUtil.loadFile("unittests/packageconverter/nodes.vnfd.onap.yaml")), packageTransformer.toOnapVnfd(new String(TestUtil.loadFile("unittests/packageconverter/nodes.vnfd.cbam.yaml"))));
63         verify(logger).warn("The {} ecp does not have an internal connection point", "myEcpWithoutIcp");
64         verify(logger).warn("The {} ecp does not have an requirements section", "ecpWithIcpWithOutRequirements");
65         verify(logger).warn("The {} internal connection point of the {} ecp does not have a VDU", "icpWithoutVdu", "myEcpWithoutIcpWithoutVdu");
66
67         verify(logger).warn("The {} internal connection point of the {} ecp does not have a requirements section", "icpWithOutRequiements", "myEcpWithoutIcpWithoutIcpReq");
68
69
70         verify(logger).warn("The {} internal connection point does not have a VDU", "icpWithOutVdu");
71         verify(logger).warn("The {} internal connection point does not have a requirements section", "icpWithOutRequiements");
72         verify(logger).warn("The {} internal connection point does not have a VL", "icpWithOutVl");
73
74     }
75
76     /**
77      * if a node refers to a non existing node it results in a failure
78      */
79     @Test
80     public void testInconsitentVnfd() {
81         try {
82             packageTransformer.toOnapVnfd(new String(TestUtil.loadFile("unittests/packageconverter/nodes.vnfd.inconsistent.cbam.yaml")));
83             fail();
84         } catch (NoSuchElementException e) {
85             assertEquals("The VNFD does not have a node called myComputeMissing but required by an other node", e.getMessage());
86         }
87     }
88
89 }