diff options
author | Maciej Malewski <maciej.malewski@nokia.com> | 2020-12-10 14:38:00 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2020-12-17 14:55:21 +0000 |
commit | 1b44134b16ac74e8326ba14e1764a9023cc6f0cf (patch) | |
tree | 64e831c281abf51435d4684bca784a66355dab1f /catalog-be | |
parent | 0b42749241b257588a74bef1804deec581d2afc2 (diff) |
Integration tests for validating PM_Dictionary.
Checking compliance content of the PM_Dictionary file against it's schema.
Issue-ID: SDC-3390
Change-Id: I8e20f977c7d6838005bc84fc6c7c8ab197152a53
Signed-off-by: Maciej Malewski <maciej.malewski@nokia.com>
Diffstat (limited to 'catalog-be')
2 files changed, 2 insertions, 2 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidator.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidator.java index 84bebe3bf6..eee84bb14b 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidator.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidator.java @@ -64,7 +64,7 @@ public class PMDictionaryValidator { } private String formatErrorMessage(YamlDocumentValidationError error) { - return String.format("Line number: %d, Path: %s, Message: %s", + return String.format("Document number: %d, Path: %s, Message: %s", error.getYamlDocumentNumber(), error.getPath(), error.getMessage()); diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidatorTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidatorTest.java index 7e62e6dace..67c310e5bf 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidatorTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/validation/PMDictionaryValidatorTest.java @@ -68,7 +68,7 @@ class PMDictionaryValidatorTest { // then assertTrue(errors.isPresent()); - assertThat(errors.get(), is("Line number: 1, Path: /, Message: error")); + assertThat(errors.get(), is("Document number: 1, Path: /, Message: error")); } @Test |