54 lines
1.5 KiB
Text
54 lines
1.5 KiB
Text
![]() |
#!/usr/bin/env bats
|
||
|
|
||
|
load _helpers
|
||
|
|
||
|
@test "server/ConfigMap: enabled by default" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/server-config-configmap.yaml \
|
||
|
. | tee /dev/stderr |
|
||
|
yq 'length > 0' | tee /dev/stderr)
|
||
|
[ "${actual}" = "true" ]
|
||
|
}
|
||
|
|
||
|
@test "server/ConfigMap: enable with global.enabled false" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/server-config-configmap.yaml \
|
||
|
--set 'global.enabled=false' \
|
||
|
--set 'server.enabled=true' \
|
||
|
. | tee /dev/stderr |
|
||
|
yq 'length > 0' | tee /dev/stderr)
|
||
|
[ "${actual}" = "true" ]
|
||
|
}
|
||
|
|
||
|
@test "server/ConfigMap: disable with server.enabled" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/server-config-configmap.yaml \
|
||
|
--set 'server.enabled=false' \
|
||
|
. | tee /dev/stderr |
|
||
|
yq 'length > 0' | tee /dev/stderr)
|
||
|
[ "${actual}" = "false" ]
|
||
|
}
|
||
|
|
||
|
@test "server/ConfigMap: disable with global.enabled" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/server-config-configmap.yaml \
|
||
|
--set 'global.enabled=false' \
|
||
|
. | tee /dev/stderr |
|
||
|
yq 'length > 0' | tee /dev/stderr)
|
||
|
[ "${actual}" = "false" ]
|
||
|
}
|
||
|
|
||
|
@test "server/ConfigMap: extraConfig is set" {
|
||
|
cd `chart_dir`
|
||
|
local actual=$(helm template \
|
||
|
-x templates/server-config-configmap.yaml \
|
||
|
--set 'server.extraConfig="{\"hello\": \"world\"}"' \
|
||
|
. | tee /dev/stderr |
|
||
|
yq '.data["extra-from-values.json"] | match("world") | length' | tee /dev/stderr)
|
||
|
[ ! -z "${actual}" ]
|
||
|
}
|