diff options
Diffstat (limited to 'vid-automation/src/main/resources/applicationEnvironment')
5 files changed, 29 insertions, 0 deletions
diff --git a/vid-automation/src/main/resources/applicationEnvironment/bad_manifest_structure.json b/vid-automation/src/main/resources/applicationEnvironment/bad_manifest_structure.json new file mode 100644 index 000000000..7f228f99e --- /dev/null +++ b/vid-automation/src/main/resources/applicationEnvironment/bad_manifest_structure.json @@ -0,0 +1 @@ +{"a":"b"}
\ No newline at end of file diff --git a/vid-automation/src/main/resources/applicationEnvironment/manifest.json b/vid-automation/src/main/resources/applicationEnvironment/manifest.json new file mode 100644 index 000000000..f7d969ce2 --- /dev/null +++ b/vid-automation/src/main/resources/applicationEnvironment/manifest.json @@ -0,0 +1,12 @@ +{ + "serviceModelList": [ + { + "serviceModelVersionId": "uuid1", + "recoveryAction": "abort" + }, + { + "serviceModelVersionId": "uuid2", + "recoveryAction": "retry" + } + ] +}
\ No newline at end of file diff --git a/vid-automation/src/main/resources/applicationEnvironment/manifest2.json b/vid-automation/src/main/resources/applicationEnvironment/manifest2.json new file mode 100644 index 000000000..5ef273454 --- /dev/null +++ b/vid-automation/src/main/resources/applicationEnvironment/manifest2.json @@ -0,0 +1,3 @@ +{ + "a":"b" +}
\ No newline at end of file diff --git a/vid-automation/src/main/resources/applicationEnvironment/manifest_with_wrong_recovery_action.json b/vid-automation/src/main/resources/applicationEnvironment/manifest_with_wrong_recovery_action.json new file mode 100644 index 000000000..379f926a7 --- /dev/null +++ b/vid-automation/src/main/resources/applicationEnvironment/manifest_with_wrong_recovery_action.json @@ -0,0 +1,12 @@ +{ + "serviceModelList": [ + { + "serviceModelVersionId": "uuid1", + "recoveryAction": "leave" + }, + { + "serviceModelVersionId": "uuid2", + "recoveryAction": "retry" + } + ] +}
\ No newline at end of file diff --git a/vid-automation/src/main/resources/applicationEnvironment/non_valid_json.json b/vid-automation/src/main/resources/applicationEnvironment/non_valid_json.json new file mode 100644 index 000000000..ef1e2455a --- /dev/null +++ b/vid-automation/src/main/resources/applicationEnvironment/non_valid_json.json @@ -0,0 +1 @@ +abvbv
\ No newline at end of file |