mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-18 17:37:03 +00:00
added acceptance tests for disable ssl feature
This commit is contained in:
parent
aa3f1ca306
commit
f3ce7e6b8b
1 changed files with 36 additions and 0 deletions
|
|
@ -5,6 +5,42 @@ setup() {
|
|||
rm -f prometheus-monitoring-v1.json
|
||||
}
|
||||
|
||||
@test "Should generate expected prometheus resource while disable ssl env var is set" {
|
||||
run export DISABLE_SSL_CERT_VALIDATION=true
|
||||
run ./openapi2jsonschema.py fixtures/prometheus-operator-0prometheusCustomResourceDefinition.yaml
|
||||
[ "$status" -eq 0 ]
|
||||
[ "$output" = "JSON schema written to prometheus_v1.json" ]
|
||||
run diff prometheus_v1.json ./fixtures/prometheus_v1-expected.json
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "Should generate expected prometheus resource from an HTTPS resource while disable ssl env var is set" {
|
||||
run export DISABLE_SSL_CERT_VALIDATION=true
|
||||
run ./openapi2jsonschema.py https://raw.githubusercontent.com/yannh/kubeconform/aebc298047c386116eeeda9b1ada83671a58aedd/scripts/fixtures/prometheus-operator-0prometheusCustomResourceDefinition.yaml
|
||||
[ "$status" -eq 0 ]
|
||||
[ "$output" = "JSON schema written to prometheus_v1.json" ]
|
||||
run diff prometheus_v1.json ./fixtures/prometheus_v1-expected.json
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "Should output filename in {kind}-{group}-{version} format while disable ssl env var is set" {
|
||||
run export DISABLE_SSL_CERT_VALIDATION=true
|
||||
FILENAME_FORMAT='{kind}-{group}-{version}' run ./openapi2jsonschema.py fixtures/prometheus-operator-0prometheusCustomResourceDefinition.yaml
|
||||
[ "$status" -eq 0 ]
|
||||
[ "$output" = "JSON schema written to prometheus-monitoring-v1.json" ]
|
||||
run diff prometheus-monitoring-v1.json ./fixtures/prometheus_v1-expected.json
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "Should set 'additionalProperties: false' at the root while disable ssl env var is set" {
|
||||
run export DISABLE_SSL_CERT_VALIDATION=true
|
||||
DENY_ROOT_ADDITIONAL_PROPERTIES='true' run ./openapi2jsonschema.py fixtures/prometheus-operator-0prometheusCustomResourceDefinition.yaml
|
||||
[ "$status" -eq 0 ]
|
||||
[ "$output" = "JSON schema written to prometheus_v1.json" ]
|
||||
run diff prometheus_v1.json ./fixtures/prometheus_v1-denyRootAdditionalProperties.json
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "Should generate expected prometheus resource" {
|
||||
run ./openapi2jsonschema.py fixtures/prometheus-operator-0prometheusCustomResourceDefinition.yaml
|
||||
[ "$status" -eq 0 ]
|
||||
|
|
|
|||
Loading…
Reference in a new issue