799e0cc342074050c3ca513e0ed43ebcaf3d8a19
[sdc.git] /
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.vendorsoftwareproduct.impl.orchestration.csar.validation;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.openecomp.core.utilities.file.FileContentHandler;
26 import org.openecomp.sdc.common.utils.SdcCommon;
27 import org.openecomp.sdc.datatypes.error.ErrorMessage;
28 import java.io.IOException;
29 import java.util.ArrayList;
30 import java.util.List;
31 import java.util.Map;
32
33 import static org.junit.Assert.assertEquals;
34
35
36 public class ONAPCsarValidatorTest {
37
38     private ONAPCsarValidator onapCsarValidator;
39     private FileContentHandler contentHandler;
40
41     @Before
42     public void setUp() throws IOException{
43         onapCsarValidator = new ONAPCsarValidator();
44         contentHandler = new FileContentHandler();
45         contentHandler.addFile("TOSCA-Metadata/TOSCA.meta", ValidatorUtil.getFileResource("/validation.files/metafile/nonSOL004WithMetaDirectoryCompliantMetaFile.meta"));
46         contentHandler.addFile("MainServiceTemplate.mf", ValidatorUtil.getFileResource("/validation.files/manifest/sampleManifest.mf"));
47         contentHandler.addFile(TestConstants.TOSCA_DEFINITION_FILEPATH, ValidatorUtil.getFileResource(TestConstants.SAMPLE_DEFINITION_FILE_PATH));
48     }
49
50     @Test
51     public void testGivenCSARPackage_withValidContent_thenNoErrorsReturned() {
52         assertExpectedErrors("Valid CSAR Package should have 0 errors",
53                 onapCsarValidator.validateContent(contentHandler), 0);
54     }
55
56     @Test
57     public void testGivenCSARPackage_withInvalidManifestFile_thenErrorsReturned() throws IOException{
58         contentHandler = new FileContentHandler();
59         contentHandler.addFile("TOSCA-Metadata/TOSCA.meta", ValidatorUtil.getFileResource("/validation.files/metafile/nonSOL004WithMetaDirectoryCompliantMetaFile.meta"));
60         contentHandler.addFile("MainServiceTemplate.mf", ValidatorUtil.getFileResource("/validation.files/manifest/invalidManifest.mf"));
61         contentHandler.addFile(TestConstants.TOSCA_DEFINITION_FILEPATH, ValidatorUtil.getFileResource(TestConstants.SAMPLE_DEFINITION_FILE_PATH));
62
63         assertExpectedErrors("CSAR package with invalid manifest file should have errors", onapCsarValidator.validateContent(contentHandler), 1);
64
65     }
66
67     @Test
68     public void testGivenCSARPackage_withUnwantedFolders_thenErrorsReturned(){
69         contentHandler.addFolder("Files/");
70         assertExpectedErrors("CSAR package with unwanted folders should fail with errors", onapCsarValidator.validateContent(contentHandler), 1);
71     }
72
73     @Test
74     public void testGivenCSARPackage_withUnwantedFiles_thenErrorsReturned(){
75         contentHandler.addFile("ExtraFile.text", "".getBytes());
76         assertExpectedErrors("CSAR package with unwanted files should fail with errors",
77                 onapCsarValidator.validateContent(contentHandler), 1);
78     }
79
80     private void assertExpectedErrors( String testCase, Map<String, List<ErrorMessage>> errors, int expectedErrors){
81         if(expectedErrors > 0){
82             List<ErrorMessage> errorMessages = errors.get(SdcCommon.UPLOAD_FILE);
83             assertEquals(testCase, expectedErrors, errorMessages.size());
84         }else{
85             assertEquals(testCase, expectedErrors, errors.size());
86         }
87     }
88 }