mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-20 02:17:01 +00:00
Rename acceptance tests for consistency
This commit is contained in:
parent
563106ede1
commit
b571b18f8d
1 changed files with 3 additions and 3 deletions
|
|
@ -282,20 +282,20 @@ resetCacheFolder() {
|
||||||
[ "$output" = 'Summary: 2 resources found in 1 file - Valid: 2, Invalid: 0, Errors: 0, Skipped: 0' ]
|
[ "$output" = 'Summary: 2 resources found in 1 file - Valid: 2, Invalid: 0, Errors: 0, Skipped: 0' ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "Should support HTTPS_PROXY" {
|
@test "Fail when using HTTPS_PROXY with a failing proxy" {
|
||||||
# This only tests that the HTTPS_PROXY variable is picked up and that it tries to use it
|
# This only tests that the HTTPS_PROXY variable is picked up and that it tries to use it
|
||||||
run bash -c "HTTPS_PROXY=127.0.0.1:1234 bin/kubeconform fixtures/valid.yaml"
|
run bash -c "HTTPS_PROXY=127.0.0.1:1234 bin/kubeconform fixtures/valid.yaml"
|
||||||
[ "$status" -eq 1 ]
|
[ "$status" -eq 1 ]
|
||||||
[[ "$output" == *"proxyconnect tcp: dial tcp 127.0.0.1:1234: connect: connection refused"* ]]
|
[[ "$output" == *"proxyconnect tcp: dial tcp 127.0.0.1:1234: connect: connection refused"* ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "Should support large files" {
|
@test "Pass when parsing a very large file" {
|
||||||
run bin/kubeconform -summary fixtures/valid_large.yaml
|
run bin/kubeconform -summary fixtures/valid_large.yaml
|
||||||
[ "$status" -eq 0 ]
|
[ "$status" -eq 0 ]
|
||||||
[ "$output" = 'Summary: 100000 resources found in 1 file - Valid: 100000, Invalid: 0, Errors: 0, Skipped: 0' ]
|
[ "$output" = 'Summary: 100000 resources found in 1 file - Valid: 100000, Invalid: 0, Errors: 0, Skipped: 0' ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "Should support very long streams from stdin" {
|
@test "Pass when parsing a very long stream from stdin" {
|
||||||
run bash -c "cat fixtures/valid_large.yaml | bin/kubeconform -summary"
|
run bash -c "cat fixtures/valid_large.yaml | bin/kubeconform -summary"
|
||||||
[ "$status" -eq 0 ]
|
[ "$status" -eq 0 ]
|
||||||
[ "$output" = 'Summary: 100000 resources found parsing stdin - Valid: 100000, Invalid: 0, Errors: 0, Skipped: 0' ]
|
[ "$output" = 'Summary: 100000 resources found parsing stdin - Valid: 100000, Invalid: 0, Errors: 0, Skipped: 0' ]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue