From 683b6a8e84dfe3f205dcc2ef55e1d170579f8831 Mon Sep 17 00:00:00 2001 From: mojahidi Date: Wed, 22 Nov 2017 17:59:58 +0530 Subject: HeatResource Validator This task is about updating error messages with error codes for HeatResourceValidator Change-Id: I6c07a1bba62b4ca8ab92c09c7e9768f43a719cee Issue-ID: SDC-572 Signed-off-by: mojahidi --- .../impl/validators/HeatResourceValidatorTest.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/java/org/openecomp/sdc/validation/impl/validators/HeatResourceValidatorTest.java (limited to 'openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/java/org') diff --git a/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/java/org/openecomp/sdc/validation/impl/validators/HeatResourceValidatorTest.java b/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/java/org/openecomp/sdc/validation/impl/validators/HeatResourceValidatorTest.java new file mode 100644 index 0000000000..2c3b05eb4d --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/java/org/openecomp/sdc/validation/impl/validators/HeatResourceValidatorTest.java @@ -0,0 +1,28 @@ +package org.openecomp.sdc.validation.impl.validators; + +import org.openecomp.core.validation.types.MessageContainer; +import org.openecomp.sdc.validation.Validator; +import org.openecomp.sdc.validation.util.ValidationTestUtil; +import org.testng.Assert; +import org.testng.annotations.Test; + +import java.util.Map; + +public class HeatResourceValidatorTest { + + Validator validator=new HeatResourceValidator(); + + @Test + public void testParseException(){ + Map messages = ValidationTestUtil.testValidator(validator, + "/org/openecomp/validation/validators/guideLineValidator/baseHeatDoesNotExposeNetwork/parseException/"); + Assert.assertEquals(messages.size(), 1); + Assert.assertEquals(messages.get("first.yaml").getErrorMessageList().get(0).getMessage(), + "ERROR: [HTR1]: Invalid HEAT format problem - [while scanning for the next token\n" + + "found character '\\t(TAB)' that cannot start any token. (Do not use \\t(TAB) for indentation)\n" + + " in 'reader', line 5, column 1:\n" + + " \t\t\tresources:\n" + + " ^\n" + + "]"); + } +} -- cgit