mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-30 04:22:49 +00:00
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load _helpers
|
|
|
|
@test "meshGateway/ClusterRoleBinding: disabled by default" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/mesh-gateway-clusterrolebinding.yaml \
|
|
. | tee /dev/stderr |
|
|
yq 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "false" ]
|
|
}
|
|
|
|
@test "meshGateway/ClusterRoleBinding: enabled with meshGateway, connectInject and client.grpc enabled" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/mesh-gateway-clusterrolebinding.yaml \
|
|
--set 'meshGateway.enabled=true' \
|
|
--set 'connectInject.enabled=true' \
|
|
--set 'client.grpc=true' \
|
|
. | tee /dev/stderr |
|
|
yq 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "true" ]
|
|
}
|
|
|
|
@test "meshGateway/ClusterRoleBinding: subject name is correct" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/mesh-gateway-clusterrolebinding.yaml \
|
|
--set 'meshGateway.enabled=true' \
|
|
--set 'connectInject.enabled=true' \
|
|
--set 'client.grpc=true' \
|
|
--name 'release-name' \
|
|
. | tee /dev/stderr |
|
|
yq -r '.subjects[0].name' | tee /dev/stderr)
|
|
[ "${actual}" = "release-name-consul-mesh-gateway" ]
|
|
}
|
|
|