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