[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / backend / openecomp-sdc-validation-manager / src / main / java / org / openecomp / sdc / validation / util / ValidationManagerUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.validation.util;
22
23 import org.openecomp.core.utilities.file.FileContentHandler;
24 import org.openecomp.core.utilities.file.FileUtils;
25 import org.openecomp.core.validation.api.ValidationManager;
26 import org.openecomp.sdc.common.errors.Messages;
27 import org.openecomp.core.validation.factory.ValidationManagerFactory;
28 import org.openecomp.sdc.common.utils.SdcCommon;
29 import org.openecomp.sdc.datatypes.error.ErrorLevel;
30 import org.openecomp.sdc.datatypes.error.ErrorMessage;
31
32 import java.io.InputStream;
33 import java.util.List;
34 import java.util.Map;
35
36
37 public class ValidationManagerUtil {
38
39   /**
40    * Handle missing manifest.
41    *
42    * @param fileContentMap the file content map
43    * @param errors         the errors
44    */
45   public static void handleMissingManifest(FileContentHandler fileContentMap,
46                                            Map<String, List<ErrorMessage>> errors) {
47     InputStream manifest = fileContentMap.getFileContent(SdcCommon.MANIFEST_NAME);
48     if (manifest == null) {
49       ErrorMessage.ErrorMessageUtil.addMessage(SdcCommon.MANIFEST_NAME, errors)
50           .add(new ErrorMessage(ErrorLevel.ERROR, Messages.MANIFEST_NOT_EXIST.getErrorMessage()));
51     }
52   }
53
54   /**
55    * Init validation manager validation manager.
56    *
57    * @param fileContentMap the file content map
58    * @return the validation manager
59    */
60   public static ValidationManager initValidationManager(FileContentHandler fileContentMap) {
61     ValidationManager validationManager = ValidationManagerFactory.getInstance().createInterface();
62     fileContentMap.getFileList().forEach(fileName -> validationManager
63         .addFile(fileName, FileUtils.toByteArray(fileContentMap.getFileContent(fileName))));
64     return validationManager;
65   }
66 }