BpGen refactor Code Quality Issue-ID: DCAEGEN2-2502
[dcaegen2/platform.git] / mod / bpgenerator / onap / src / test / java / org / onap / blueprintgenerator / test / OnapComponentSpecTest.java
1 /*
2  *
3  *  * ============LICENSE_START=======================================================
4  *  *  org.onap.dcae
5  *  *  ================================================================================
6  *  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
7  *  *  ================================================================================
8  *  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  *  you may not use this file except in compliance with the License.
10  *  *  You may obtain a copy of the License at
11  *  *
12  *  *       http://www.apache.org/licenses/LICENSE-2.0
13  *  *
14  *  *  Unless required by applicable law or agreed to in writing, software
15  *  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  *  See the License for the specific language governing permissions and
18  *  *  limitations under the License.
19  *  *  ============LICENSE_END=========================================================
20  *
21  *
22  */
23
24 package org.onap.blueprintgenerator.test;
25
26 import org.onap.blueprintgenerator.exception.ComponentSpecException;
27 import org.onap.blueprintgenerator.model.componentspec.base.ComponentSpec;
28 import org.junit.Test;
29 import org.junit.jupiter.api.DisplayName;
30
31 import java.nio.file.Paths;
32
33 import static org.junit.Assert.assertEquals;
34
35 /**
36  * @author : Ravi Mantena
37  * @date 10/16/2020 Application: ONAP - Blueprint Generator ONAP ComponentSpec Test Cases
38  */
39 public class OnapComponentSpecTest extends BlueprintGeneratorTests {
40
41     /**
42      * Test Case for ComponentSpec File Generation for Invalid File
43      *
44      */
45     @DisplayName("Testing ComponentSpec File Generation for Invalid File")
46     @Test(expected = ComponentSpecException.class)
47     public void testComponentSpecForInvalidFile() {
48         onapComponentSpecService.createComponentSpecFromFile("invalid.json");
49     }
50
51     /**
52      * Test Case for ComponentSpec File Generation for Valid DMAAP Fil
53      *
54      */
55     @DisplayName("Testing ComponentSpec File Generation for Valid DMAAP File")
56     @Test
57     public void testComponentSpecForValidVesFile() {
58         ComponentSpec onapComponentSpec =
59             onapComponentSpecService.createComponentSpecFromFile(
60                 Paths.get("src", "test", "resources", "componentspecs", ves)
61                     .toFile()
62                     .getAbsolutePath());
63         assertEquals(
64             "ComponentSpec name not matching for Valid Ves File",
65             onapComponentSpec.getSelf().getName(),
66             "dcae-ves-collector");
67     }
68 }