633c205bd7b31ac20b5806007cc8a2b10ae7bd3f
[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
27 import org.onap.blueprintgenerator.exception.ComponentSpecException;
28 import org.onap.blueprintgenerator.model.componentspec.base.ComponentSpec;
29 import org.junit.Test;
30 import org.junit.jupiter.api.DisplayName;
31
32 import java.nio.file.Paths;
33
34 import static org.junit.Assert.assertEquals;
35
36 /**
37  * @author : Ravi Mantena
38  * @date 10/16/2020
39  * Application: ONAP - Blueprint Generator
40  * ONAP ComponentSpec Test Cases
41  */
42
43 public class OnapComponentSpecTest extends BlueprintGeneratorTests {
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     @DisplayName("Testing ComponentSpec File Generation for Valid DMAAP File")
52     @Test
53     public void testComponentSpecForValidVesFile(){
54         ComponentSpec onapComponentSpec = onapComponentSpecService.createComponentSpecFromFile(Paths.get("src", "test", "resources", "componentspecs", ves).toFile().getAbsolutePath());
55         assertEquals("ComponentSpec name not matching for Valid Ves File",onapComponentSpec.getSelf().getName(), "dcae-ves-collector");
56     }
57
58 }