2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 Nokia. 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=========================================================
20 package org.openecomp.sdc.validation.util;
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertTrue;
25 import java.io.IOException;
26 import java.util.HashMap;
27 import java.util.List;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.openecomp.core.utilities.file.FileContentHandler;
32 import org.openecomp.sdc.common.utils.SdcCommon;
33 import org.openecomp.sdc.datatypes.error.ErrorMessage;
35 public class ValidationManagerUtilTest {
37 private FileContentHandler fileContentMap;
38 private Map<String, List<ErrorMessage>> errors;
41 public void setUp() throws Exception {
42 fileContentMap = new FileContentHandler();
43 errors = new HashMap<>();
47 public void shouldHandleNonMissingManifest() throws IOException {
48 fileContentMap.addFile(SdcCommon.MANIFEST_NAME, this.getClass().getClassLoader().getResourceAsStream("MANIFEST.json"));
49 ValidationManagerUtil.handleMissingManifest(fileContentMap, errors);
50 assertTrue(errors.isEmpty());
54 public void shouldHandleMissingManifest() throws IOException {
55 fileContentMap.addFile("ANY", this.getClass().getClassLoader().getResourceAsStream("vfw.zip"));
56 ValidationManagerUtil.handleMissingManifest(fileContentMap, errors);
57 assertEquals(errors.get(SdcCommon.MANIFEST_NAME).size(), 1);
58 assertEquals(errors.get(SdcCommon.MANIFEST_NAME).get(0).getMessage(), "Manifest doesn't exist");