Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/editor/schema/ci/yaml_tests/negative_tests/id_tokens.yml')
-rw-r--r--spec/frontend/editor/schema/ci/yaml_tests/negative_tests/id_tokens.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/frontend/editor/schema/ci/yaml_tests/negative_tests/id_tokens.yml b/spec/frontend/editor/schema/ci/yaml_tests/negative_tests/id_tokens.yml
new file mode 100644
index 00000000000..aff2611f16c
--- /dev/null
+++ b/spec/frontend/editor/schema/ci/yaml_tests/negative_tests/id_tokens.yml
@@ -0,0 +1,11 @@
+id_token_with_wrong_aud_type:
+ id_tokens:
+ INVALID_ID_TOKEN:
+ aud:
+ invalid_prop: invalid
+
+id_token_with_extra_properties:
+ id_tokens:
+ INVALID_ID_TOKEN:
+ aud: 'https://gitlab.com'
+ sub: 'not a valid property'