Catalog alignment
[sdc.git] / common-be / src / test / java / org / openecomp / sdc / be / csar / pnf / SoftwareInformationArtifactYamlParserTest.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.sdc.be.csar.pnf;
21
22 import org.junit.Test;
23 import org.openecomp.sdc.be.test.util.TestResourcesHandler;
24
25 import java.io.IOException;
26 import java.util.Optional;
27
28 import static org.hamcrest.CoreMatchers.equalTo;
29 import static org.hamcrest.CoreMatchers.hasItems;
30 import static org.hamcrest.CoreMatchers.is;
31 import static org.junit.Assert.assertThat;
32
33 public class SoftwareInformationArtifactYamlParserTest {
34
35     @Test
36     public void parse() throws IOException {
37         //given
38         final byte[] resourceAsByteArray = TestResourcesHandler
39             .getResourceAsByteArray("artifacts/pnfSoftwareInformation/pnf-sw-information.yaml");
40         //when
41         final Optional<PnfSoftwareInformation> pnfSoftwareInformation = SoftwareInformationArtifactYamlParser
42             .parse(resourceAsByteArray);
43         //then
44         final PnfSoftwareVersion expectedPnfSoftwareVersion1 = new PnfSoftwareVersion("version1", "first software version of PNF");
45         final PnfSoftwareVersion expectedPnfSoftwareVersion2 = new PnfSoftwareVersion("version2", "second software version of PNF");
46         assertThat("The software information should be parsed", pnfSoftwareInformation.isPresent(), is(true));
47         pnfSoftwareInformation.ifPresent(softwareInformation -> {
48             assertThat("The software information provider should be as expected",
49                 softwareInformation.getProvider(), is(equalTo("Ericsson")));
50             assertThat("The software information description should be as expected",
51                 softwareInformation.getDescription(), is(equalTo("pnf software information")));
52             assertThat("The software information version should be as expected",
53                 softwareInformation.getVersion(), is(equalTo("1.0")));
54             assertThat("The software versions should contain expected versions",
55                 softwareInformation.getSoftwareVersionSet(),
56                 hasItems(expectedPnfSoftwareVersion1, expectedPnfSoftwareVersion2));
57         });
58     }
59
60 }