1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
load("//build:build.bzl", "go_custom_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "kube_testing",
testonly = True,
srcs = [
"cmp_options.go",
"kube_testing.go",
],
importpath = "gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/tool/testing/kube_testing",
visibility = ["//:__subpackages__"],
deps = [
"@com_github_google_go_cmp//cmp",
"@com_github_stretchr_testify//require",
"@io_k8s_apimachinery//pkg/api/equality",
"@io_k8s_apimachinery//pkg/apis/meta/v1/unstructured",
"@io_k8s_apimachinery//pkg/runtime",
"@io_k8s_apimachinery//pkg/runtime/serializer/json",
"@io_k8s_sigs_yaml//:yaml",
],
)
go_custom_test(
name = "kube_testing_test",
srcs = ["cmp_options_test.go"],
embed = [":kube_testing"],
deps = [
"@com_github_google_go_cmp//cmp",
"@com_github_stretchr_testify//assert",
"@io_k8s_api//core/v1:core",
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
"@io_k8s_apimachinery//pkg/runtime",
],
)
|