b151ea2e8b349a2a07697a2a9e806730acc9fd54
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
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 package org.openecomp.sdc.validation.util;
21
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertTrue;
24
25 import java.io.IOException;
26 import java.util.HashMap;
27 import java.util.List;
28 import java.util.Map;
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;
34
35 public class ValidationManagerUtilTest {
36
37     private FileContentHandler fileContentMap;
38     private Map<String, List<ErrorMessage>> errors;
39
40     @Before
41     public void setUp() throws Exception {
42         fileContentMap = new FileContentHandler();
43         errors = new HashMap<>();
44     }
45
46     @Test
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());
51     }
52
53     @Test
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");
59     }
60
61 }