Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / main / SdcSchemaFileImportTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.asdctool.main;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.asdctool.enums.SchemaZipFileEnum;
25
26 import java.nio.file.NoSuchFileException;
27
28 public class SdcSchemaFileImportTest {
29
30         private SdcSchemaFileImport createTestSubject() {
31                 return new SdcSchemaFileImport();
32         }
33
34         @Test(expected=NoSuchFileException.class)
35         public void testCreateAndSaveNodeSchemaFile() throws Exception {
36
37                 // default test
38                 SdcSchemaFileImport.createAndSaveNodeSchemaFile("");
39         }
40
41         @Test(expected=NoSuchFileException.class)
42         public void testCreateAndSaveNodeSchemaFileOnap() throws Exception {
43
44                 // default test
45                 SdcSchemaFileImport.createAndSaveNodeSchemaFile("onap");
46         }
47
48         @Test(expected=NullPointerException.class)
49         public void testCreateAndSaveSchemaFileYaml() throws Exception {
50                 SchemaZipFileEnum schemaZipFileEnum = null;
51                 Object content = null;
52
53                 // default test
54                 SdcSchemaFileImport.createAndSaveSchemaFileYaml(schemaZipFileEnum, content);
55         }
56
57         @Test(expected=IllegalArgumentException.class)
58         public void testCreateAndSaveSchemaFileYaml_1() throws Exception {
59                 String fileName = "";
60                 String[] importFileList = new String[] { "" };
61                 String collectionTitle = "";
62                 Object content = null;
63
64                 // default test
65                 SdcSchemaFileImport.createAndSaveSchemaFileYaml(fileName, importFileList, collectionTitle, content);
66         }
67 }