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 36 37 38 39 40 41 42 43 44
|
load("//build:build.bzl", "go_custom_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "tracker",
srcs = [
"aggregating_querier.go",
"tracker.go",
],
importpath = "gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/module/reverse_tunnel/tracker",
visibility = ["//:__subpackages__"],
deps = [
"//internal/module/modshared",
"//internal/tool/logz",
"//internal/tool/redistool",
"//internal/tool/retry",
"//internal/tool/syncz",
"@com_github_redis_rueidis//:rueidis",
"@org_uber_go_zap//:zap",
],
)
go_custom_test(
name = "tracker_test",
srcs = [
"aggregating_querier_test.go",
"tracker_test.go",
],
embed = [":tracker"],
deps = [
"//internal/tool/redistool",
"//internal/tool/testing/matcher",
"//internal/tool/testing/mock_modserver",
"//internal/tool/testing/mock_modshared",
"//internal/tool/testing/mock_redis",
"//internal/tool/testing/mock_reverse_tunnel_tracker",
"//internal/tool/testing/testhelpers",
"@com_github_golang_mock//gomock",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@io_k8s_apimachinery//pkg/util/wait",
"@org_uber_go_zap//zaptest",
],
)
|