operators: use bazel to run operator envtests

This commit is contained in:
Malte Poll 2023-08-16 22:09:56 +02:00 committed by Malte Poll
parent 0be3d4b132
commit 5cf2a59c2c
5 changed files with 72 additions and 12 deletions

View file

@ -33,19 +33,46 @@ go_library(
go_test(
name = "sgreconciler_test",
srcs = ["scalinggroup_controller_test.go"],
srcs = [
"scalinggroup_controller_env_test.go",
"scalinggroup_controller_test.go",
"suite_test.go",
],
# keep
count = 1,
# keep
data = [
"//bazel/envtest:tools",
"//operators/constellation-node-operator:crd_bases",
],
embed = [":sgreconciler"],
# keep
env = {
"KUBEBUILDER_ASSETS": "../../../$(rootpath //bazel/envtest:tools)",
},
# keep
gotags = ["integration"],
deps = [
"//internal/constants",
"//operators/constellation-node-operator/api/v1alpha1",
"//operators/constellation-node-operator/internal/cloud/api",
"//operators/constellation-node-operator/internal/constants",
"//operators/constellation-node-operator/internal/executor",
"@com_github_onsi_ginkgo_v2//:ginkgo",
"@com_github_onsi_gomega//:gomega",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@io_k8s_api//apps/v1:apps",
"@io_k8s_api//core/v1:core",
"@io_k8s_apimachinery//pkg/api/errors",
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
"@io_k8s_apimachinery//pkg/runtime/schema",
"@io_k8s_apimachinery//pkg/types",
"@io_k8s_client_go//kubernetes/scheme",
"@io_k8s_client_go//rest",
"@io_k8s_sigs_controller_runtime//pkg/client",
"@io_k8s_sigs_controller_runtime//pkg/envtest",
"@io_k8s_sigs_controller_runtime//pkg/log",
"@io_k8s_sigs_controller_runtime//pkg/log/zap",
],
)