diff options
author | dekstroza <dejan.kitic@ericsson.com> | 2018-05-18 14:42:24 +0100 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-08-26 22:58:49 +0000 |
commit | 37843cb3c1765bd5263e3c02f5b14ffa53041e1d (patch) | |
tree | 0fcd4f0504c6720924bbf2a0bdc92fed0fee1719 /test-apis-ci | |
parent | 1b700c8606f319cbda416a8abb70ea16dceb7a29 (diff) |
json/yaml validation for models
Introduced yaml-json-validator-maven-plugin
a. Runs in validate phase
b. For now only validate /import/tosca subfolders
c. Validates both yml and json files
Change-Id: I53513321c4378485dd821c251de5555050313911
Issue-ID: SDC-1343
Signed-off-by: dekstroza <dejan.kitic@ericsson.com>
Diffstat (limited to 'test-apis-ci')
-rw-r--r-- | test-apis-ci/pom.xml | 37 | ||||
-rw-r--r-- | test-apis-ci/src/test/resources/config.json | 16 |
2 files changed, 45 insertions, 8 deletions
diff --git a/test-apis-ci/pom.xml b/test-apis-ci/pom.xml index ac3cdd731d..14d6611fc0 100644 --- a/test-apis-ci/pom.xml +++ b/test-apis-ci/pom.xml @@ -437,6 +437,43 @@ </execution> </executions> </plugin> + <plugin> + <groupId>com.github.sylvainlaurent.maven</groupId> + <artifactId>yaml-json-validator-maven-plugin</artifactId> + <executions> + <execution> + <id>validate</id> + <phase>validate</phase> + <goals> + <goal>validate</goal> + </goals> + <configuration> + <validationSets> + <validationSet> + <includes> + <include>src/main/resources/**/*.y*ml</include> + <include>src/test/resources/**/*.y*ml</include> + </includes> + <excludes> + <exclude>src/test/resources/CI/tests/importToscaResourceByCreateUrl/occurencyFalure*.y*ml</exclude> + <exclude>src/test/resources/CI/tests/importToscaResourceByCreateUrl/noContent*.y*ml</exclude> + <exclude>src/test/resources/CI/tests/HeatDeploymentArtifacts/invalid*.y*ml</exclude> + </excludes> + </validationSet> + <validationSet> + <includes> + <include>src/main/resources/**/*.json</include> + <include>src/test/resources/**/*.json</include> + </includes> + <excludes> + <exclude>src/test/resources/CI/tests/HeatDeploymentArtifacts/invalid*.json</exclude> + </excludes> + </validationSet> + </validationSets> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> <profiles> diff --git a/test-apis-ci/src/test/resources/config.json b/test-apis-ci/src/test/resources/config.json index 71c9d35e59..86905518b6 100644 --- a/test-apis-ci/src/test/resources/config.json +++ b/test-apis-ci/src/test/resources/config.json @@ -1,12 +1,12 @@ { -catalogBeHost: behost, -catalogFeHost: fehost, -esHost: eshost, -catalogFePort: 8080, -catalogBePort: 8080, -esPort: 9200, -resourceConfigDir: "src/test/resources/CI/tests", -componentsConfigDir: "src/test/resources/CI/components" +"catalogBeHost": "behost", +"catalogFeHost": "fehost", +"esHost": "eshost", +"catalogFePort": 8080, +"catalogBePort": 8080, +"esPort": 9200, +"resourceConfigDir": "src/test/resources/CI/tests", +"componentsConfigDir": "src/test/resources/CI/components" }
\ No newline at end of file |