summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/main/java/org/openecomp/sdc/validation/impl/util/HeatValidationService.java
blob: dbd13ed8e06c4583a02962782ab6bf6f1a34f539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
/*
 * Copyright © 2016-2017 European Support Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.openecomp.sdc.validation.impl.util;

import org.apache.commons.collections4.CollectionUtils;
import org.openecomp.core.validation.errors.ErrorMessagesFormatBuilder;
import org.openecomp.core.validation.types.GlobalValidationContext;
import org.openecomp.sdc.common.errors.Messages;
import org.openecomp.sdc.datatypes.error.ErrorLevel;
import org.openecomp.sdc.heat.datatypes.DefinedHeatParameterTypes;
import org.openecomp.sdc.heat.datatypes.model.Environment;
import org.openecomp.sdc.heat.datatypes.model.HeatOrchestrationTemplate;
import org.openecomp.sdc.heat.datatypes.model.Parameter;
import org.openecomp.sdc.heat.datatypes.model.Resource;
import org.openecomp.sdc.heat.services.HeatStructureUtil;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;
import org.openecomp.sdc.tosca.services.YamlUtil;
import org.openecomp.sdc.validation.impl.validators.HeatValidator;
import org.openecomp.sdc.validation.type.HeatResourceValidationContext;

import java.io.InputStream;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;


public class HeatValidationService {

  private static final Logger LOGGER = LoggerFactory.getLogger(HeatValidator.class);
  private static final String NO_CONTENT_IN_FILE_MSG = "The file ' %s ' has no content";
  private HeatValidationService(){

  }
  /**
   * Check artifacts existence.
   *
   * @param fileName the file name
   * @param artifactsNames the artifacts names
   * @param globalContext the global context
   */
  public static void checkArtifactsExistence(String fileName, Set<String> artifactsNames,
                                             GlobalValidationContext globalContext) {
    artifactsNames
            .stream()
            .filter(artifactName -> !globalContext.getFileContextMap().containsKey(artifactName))
            .forEach(artifactName ->
              globalContext.addMessage(fileName,
                      ErrorLevel.ERROR, ErrorMessagesFormatBuilder
                              .getErrorWithParameters(
                                      globalContext.getMessageCode(),
                                      Messages.MISSING_ARTIFACT.getErrorMessage(), artifactName)));
  }

  /**
   * Draw files loop string.
   *
   * @param filesInPath the files in path
   * @return the string
   */
  public static String drawFilesLoop(List<String> filesInPath) {
    StringBuilder stringBuilder = new StringBuilder();
    stringBuilder.append("[");
    int pathSize = filesInPath.size();

    for (int i = 0; i < pathSize; i++) {
      stringBuilder.append(filesInPath.get(i));
      if (i != pathSize - 1) {
        stringBuilder.append(" -- ");
      }
    }
    if (!filesInPath.get(0).equals(filesInPath.get(pathSize - 1))) {
      stringBuilder.append(" -- ");
      stringBuilder.append(filesInPath.get(0));
    }
    stringBuilder.append("]");

    return stringBuilder.toString();
  }

  /**
   * Check nested parameters.
   *
   * @param parentFileName the calling nested file name
   * @param nestedFileName the nested file name
   * @param globalContext the global context
   * @param parentParameters parent parameters.
   * @param nestedParameters nested parameters.
   * @param nestedParametersNames nested parameter names.
   */
  private static void checkNestedParameters(String parentFileName, String nestedFileName,
                                            GlobalValidationContext globalContext,
                                            Map<String, Parameter> parentParameters,
                                            Map<String, Parameter> nestedParameters,
                                            Set<String> nestedParametersNames) {
    HeatOrchestrationTemplate parentHeatOrchestrationTemplate;
    HeatOrchestrationTemplate nestedHeatOrchestrationTemplate;

    try {
      nestedHeatOrchestrationTemplate = getHeatOrchestrationTemplate(nestedFileName, globalContext);
      parentHeatOrchestrationTemplate = getHeatOrchestrationTemplate(parentFileName, globalContext);
    } catch (Exception exception) {
      return;
    }

    parentParameters.putAll(parentHeatOrchestrationTemplate.getParameters());
    nestedParameters.putAll(nestedHeatOrchestrationTemplate.getParameters());
    if (!nestedParameters.isEmpty()) {
      nestedParametersNames.addAll(nestedHeatOrchestrationTemplate.getParameters().keySet());
    }
  }

  private static HeatOrchestrationTemplate getHeatOrchestrationTemplate(String fileName,
                                                                        GlobalValidationContext globalContext)
          throws Exception {

    Optional<InputStream> fileContent = globalContext.getFileContent(fileName);
    if (fileContent.isPresent()) {
      return new YamlUtil().yamlToObject(fileContent.get(), HeatOrchestrationTemplate.class);
    } else {
      Exception exception = new Exception(String.format(NO_CONTENT_IN_FILE_MSG, fileName));
      LOGGER.error("Error while reading file : " + fileName , exception);
      throw exception;
    }
  }

  public static void checkNestedParametersNoMissingParameterInNested(String parentFileName,
                                                                     String nestedFileName,
                                                                     String resourceName,
                                                                     Set<String> resourceFileProperties,
                                                                     GlobalValidationContext globalContext) {
    Map<String, Parameter> parentParameters = new HashMap<>();
    Map<String, Parameter> nestedParameters = new HashMap<>();
    Set<String> nestedParametersNames = new HashSet<>();
    checkNestedParameters(parentFileName, nestedFileName, globalContext, parentParameters,
            nestedParameters, nestedParametersNames);

    checkNoMissingParameterInNested(parentFileName, nestedFileName, resourceName,
            resourceFileProperties, nestedParametersNames, globalContext);
  }

  public static void checkNestedInputValuesAlignWithType(String parentFileName,
                                                         String nestedFileName,
                                                         String resourceName, Resource resource,
                                                         Optional<String> indexVarValue,
                                                         GlobalValidationContext globalContext) {
    Map<String, Parameter> parentParameters = new HashMap<>();
    Map<String, Parameter> nestedParameters = new HashMap<>();
    Set<String> nestedParametersNames = new HashSet<>();
    checkNestedParameters(parentFileName, nestedFileName, globalContext, parentParameters,
            nestedParameters, nestedParametersNames);

    checkNestedInputValuesAlignWithType(parentFileName, nestedFileName,
            nestedParameters, resourceName, resource, indexVarValue, globalContext);
  }

  private static void checkNoMissingParameterInNested(String parentFileName, String nestedFileName,
                                                      String resourceName,
                                                      Set<String> resourceFileProperties,
                                                      Set<String> nestedParametersNames,
                                                      GlobalValidationContext globalContext) {
    if (CollectionUtils.isNotEmpty(nestedParametersNames)) {
      resourceFileProperties
              .stream()
              .filter(propertyName -> !nestedParametersNames.contains(propertyName))
              .forEach(propertyName -> globalContext
                      .addMessage(parentFileName, ErrorLevel.ERROR, ErrorMessagesFormatBuilder
                                      .getErrorWithParameters(
                                              globalContext.getMessageCode(),
                                              Messages.MISSING_PARAMETER_IN_NESTED.getErrorMessage(),
                                              nestedFileName, resourceName, propertyName)));
    }
  }

  private static void checkNestedInputValuesAlignWithType(String parentFileName,
                                                          String nestedFileName,
                                                          Map<String, Parameter> nestedParameters,
                                                          String resourceName, Resource resource,
                                                          Optional<String> indexVarValue,
                                                          GlobalValidationContext globalContext) {
    Map<String, Object> properties = resource.getProperties();
    for (Map.Entry<String, Object> propertyEntry : properties.entrySet()) {
      String parameterName = propertyEntry.getKey();
      Object parameterInputValue = propertyEntry.getValue();
      if (parameterInputValue instanceof String) {
        if (indexVarValue.isPresent() && indexVarValue.get().equals(parameterInputValue)) {
          parameterInputValue = 3; //indexVarValue is actually number value in runtime
        }
        validateStaticValueForNestedInputParameter(parentFileName, nestedFileName, resourceName,
                parameterName, parameterInputValue, nestedParameters.get(parameterName),
                globalContext);
      }
    }
  }

  private static void validateStaticValueForNestedInputParameter(String parentFileName,
                                                                 String nestedFileName,
                                                                 String resourceName,
                                                                 String parameterName,
                                                                 Object staticValue,
                                                                 Parameter parameterInNested,
                                                                 GlobalValidationContext
                                                                         globalContext) {
    if (parameterInNested == null) {
      return;
    }
    if (!DefinedHeatParameterTypes
            .isValueIsFromGivenType(staticValue, parameterInNested.getType())) {
      globalContext.addMessage(parentFileName, ErrorLevel.WARNING, ErrorMessagesFormatBuilder
                      .getErrorWithParameters(globalContext.getMessageCode(),
                              Messages.WRONG_VALUE_TYPE_ASSIGNED_NESTED_INPUT.getErrorMessage(),
                              resourceName, parameterName, nestedFileName));
    }
  }


  /**
   * Is nested loop exist in file boolean.
   *
   * @param callingFileName the calling file name
   * @param nestedFileName the nested file name
   * @param filesInLoop the files in loop
   * @param globalContext the global context
   * @return the boolean
   */
  public static boolean isNestedLoopExistInFile(String callingFileName, String nestedFileName,
                                                List<String> filesInLoop,
                                                GlobalValidationContext globalContext) {
    HeatOrchestrationTemplate nestedHeatOrchestrationTemplate;
    try {
      nestedHeatOrchestrationTemplate = getNestedHeatOrchestrationTemplate(nestedFileName,
                                          globalContext);
    } catch (Exception exception) {
      LOGGER.error("Error while reading file :  " + nestedFileName, exception);
      LOGGER.warn("HEAT Validator will not be executed on file " + nestedFileName
              + " due to illegal HEAT format");
      return false;
    }
    filesInLoop.add(nestedFileName);
    Collection<Resource> nestedResources =
            nestedHeatOrchestrationTemplate.getResources() == null ? null
                    : nestedHeatOrchestrationTemplate.getResources().values();
    return addNestedFilesInLoopAndCheckIfNestedLoopExist(nestedResources,
                    callingFileName, filesInLoop, globalContext);
  }
  private static boolean addNestedFilesInLoopAndCheckIfNestedLoopExist(
                Collection<Resource> nestedResources,String callingFileName,
                List<String> filesInLoop,
                GlobalValidationContext globalContext){
    if (CollectionUtils.isNotEmpty(nestedResources)) {
      for (Resource resource : nestedResources) {
        String resourceType = resource.getType();

        if (Objects.nonNull(resourceType) && isNestedResource(resourceType)) {
          return resourceType.equals(callingFileName) || !filesInLoop.contains(resourceType)
                  && isNestedLoopExistInFile(callingFileName, resourceType, filesInLoop, globalContext);
        }
      }
    }
    return false;
  }




  private static HeatOrchestrationTemplate getNestedHeatOrchestrationTemplate( String nestedFileName,
                                          GlobalValidationContext globalContext) throws Exception {
    Optional<InputStream> fileContent = globalContext.getFileContent(nestedFileName);
    HeatOrchestrationTemplate nestedHeatOrchestrationTemplate;
    if (fileContent.isPresent()) {
      nestedHeatOrchestrationTemplate =
              new YamlUtil().yamlToObject(fileContent.get(), HeatOrchestrationTemplate.class);
    } else {
      throw new Exception(String.format(NO_CONTENT_IN_FILE_MSG, nestedFileName));
    }

    return nestedHeatOrchestrationTemplate;
  }

  public static boolean isNestedResource(String resourceType) {
    return resourceType.contains(".yaml") || resourceType.contains(".yml");
  }

  /**
   * Validate env content environment.
   *
   * @param fileName the file name
   * @param envFileName the env file name
   * @param globalContext the global context
   * @return the environment
   */
  public static Environment validateEnvContent(String fileName, String envFileName,
                                               GlobalValidationContext globalContext) {
    Environment envContent;
    try {
      Optional<InputStream> fileContent = globalContext.getFileContent(envFileName);
      if (fileContent.isPresent()) {
        envContent = new YamlUtil().yamlToObject(fileContent.get(), Environment.class);
      } else {
        throw new Exception(String.format(NO_CONTENT_IN_FILE_MSG, envFileName));
      }
    } catch (Exception exception) {
      LOGGER.error("Error while reading env file : " + envFileName, exception);
      return null;
    }
    return envContent;
  }

  /**
   *
   * @param fileName on which the validation is currently run
   * @param globalContext gloabl validation context
   * @param heatResourceValidationContext heat resource validation context
   * @param propertyValue the value which is examined
   * @return whether the vlan has single parent port
   */
  public static boolean hasSingleParentPort(String fileName, GlobalValidationContext globalContext,
                                      HeatResourceValidationContext heatResourceValidationContext,
                                      Object propertyValue) {
    boolean hasSingleParentPort;
    if (propertyValue instanceof List && ((List) propertyValue).size() == 1) {
      final Object listValue = ((List) propertyValue).get(0);

      final Set<String> getParamValues =
          HeatStructureUtil.getReferencedValuesByFunctionName(fileName, "get_param",
              listValue, globalContext);
      hasSingleParentPort = getParamValues.isEmpty() || (getParamValues.size() == 1) &&
          validateGetParamValueOfType(getParamValues, heatResourceValidationContext,
              DefinedHeatParameterTypes.STRING.getType());
    } else {
      hasSingleParentPort = false;
    }
    return hasSingleParentPort;
  }

  private static boolean validateGetParamValueOfType(Set<String> values,
                                        HeatResourceValidationContext
                                            heatResourceValidationContext,String type) {
    Optional<String> value = values.stream().findAny();
    boolean isString = false;
    if (value.isPresent()) {
      isString =
          Objects.equals(heatResourceValidationContext.getHeatOrchestrationTemplate
              ().getParameters().get(value.get()).getType(), type);
    }

    return isString;
  }

}