2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.vendorsoftwareproduct.impl.orchestration.csar.validation;
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;
33 import static org.junit.Assert.assertEquals;
36 public class ONAPCsarValidatorTest {
38 private ONAPCsarValidator onapCsarValidator;
39 private FileContentHandler contentHandler;
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));
51 public void testGivenCSARPackage_withValidContent_thenNoErrorsReturned() {
52 assertExpectedErrors("Valid CSAR Package should have 0 errors",
53 onapCsarValidator.validateContent(contentHandler), 0);
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));
63 assertExpectedErrors("CSAR package with invalid manifest file should have errors", onapCsarValidator.validateContent(contentHandler), 1);
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);
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);
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());
85 assertEquals(testCase, expectedErrors, errors.size());