mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 12:02:47 +00:00
54 lines
1.6 KiB
Bash
Executable File
54 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
load _helpers
|
|
|
|
@test "syncCatalog/ClusterRoleBinding: disabled by default" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/sync-catalog-clusterrolebinding.yaml \
|
|
. | tee /dev/stderr |
|
|
yq 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "false" ]
|
|
}
|
|
|
|
@test "syncCatalog/ClusterRoleBinding: disabled with global.enabled=false" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/sync-catalog-clusterrolebinding.yaml \
|
|
--set 'global.enabled=false' \
|
|
. | tee /dev/stderr |
|
|
yq 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "false" ]
|
|
}
|
|
|
|
@test "syncCatalog/ClusterRoleBinding: disabled with sync disabled" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/sync-catalog-clusterrolebinding.yaml \
|
|
--set 'syncCatalog.enabled=false' \
|
|
. | tee /dev/stderr |
|
|
yq 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "false" ]
|
|
}
|
|
|
|
@test "syncCatalog/ClusterRoleBinding: enabled with sync enabled" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/sync-catalog-clusterrolebinding.yaml \
|
|
--set 'syncCatalog.enabled=true' \
|
|
. | tee /dev/stderr |
|
|
yq -s 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "true" ]
|
|
}
|
|
|
|
@test "syncCatalog/ClusterRoleBinding: enabled with sync enabled and global.enabled=false" {
|
|
cd `chart_dir`
|
|
local actual=$(helm template \
|
|
-x templates/sync-catalog-clusterrolebinding.yaml \
|
|
--set 'global.enabled=false' \
|
|
--set 'syncCatalog.enabled=true' \
|
|
. | tee /dev/stderr |
|
|
yq -s 'length > 0' | tee /dev/stderr)
|
|
[ "${actual}" = "true" ]
|
|
}
|