mirror of
https://github.com/hanzoai/deploy.git
synced 2026-08-07 03:24:43 +00:00
* feat(api): hard-fork CRD API group argoproj.io -> deploy.hanzo.ai Hanzo CD hard-fork, phase 1.1. Single source of truth is pkg/apis/application/register.go's Group constant (Application/AppProject/ ApplicationSet all derive their FullName from it); every other Go call-site that hardcoded the literal group string is updated to match: the 3 generated informer GVRs, the app-of-apps nested-Application detector in types.go, the resource-tree Application-kind cache populator, the 3 NotFound error constructors in server/application, and the applicationset-controller's leader-election Lease name/ID (kept in lockstep across Go source + RBAC resourceNames, or leader election would get RBAC-denied on startup). CRD YAMLs (application/appproject/applicationset) and every RBAC apiGroups rule that actually governs our 3 CRDs are repointed to deploy.hanzo.ai, across both manifests/base/* (namespaced Roles) and manifests/cluster-rbac/* (cluster scope). Two adjacent things that share the "argoproj.io" string but are NOT ours are deliberately left untouched: gitops-engine's health-check dispatch for Argo Workflows' `Workflow` kind, and argocd-server-clusterrole's second apiGroups block granting read on Argo Workflows' `workflows` resource — both belong to a separate, unrelated Argoproj-family project we are not forking. Also untouched, per explicit scope: annotation/label keys (argocd.argoproj.io/*) and finalizers (*.argoproj.io) that track already-applied live resources, and argocd-cm.yaml's resource.customizations.ignoreResourceUpdates keys (a narrow app-of-apps diffing nicety, not build- or RBAC-relevant). CGO_ENABLED=0 go build ./... verified green. Claude-Session: https://claude.ai/code/session_015Z1iLf7QBrq1LhignJrzDw * ci: wire canonical hanzo.yml + cicd.yml (Hanzo CD image build) Phase 1.3. Follows the same one-way pattern every hanzo/lux/zoo repo uses: hanzo.yml declares the image (root Dockerfile -> ghcr.io/hanzoai/deploy) and a fast go-build sanity test (the multi-stage Dockerfile build is the slow, real gate); cicd.yml is the ~10-line trigger shim importing hanzoai/ci's reusable build workflow on the arc pool, secrets from KMS only. No `deploy:` block yet, matching the hanzoai/cms build-only-first-cutover pattern: this repo's own live hanzo-cd namespace runs the whole Hanzo fleet's GitOps, so the prod image/CRD swap is a deliberate separate action (see the [HELD] universe PR), never an automatic rollout on merge. Every PR/push still builds and pushes an immutable ghcr.io/hanzoai/deploy:sha-<7>-amd64 image. Claude-Session: https://claude.ai/code/session_015Z1iLf7QBrq1LhignJrzDw * feat(ui): rebrand Argo CD -> Hanzo CD (title, favicon, logo, sidebar) Phase 1.2. User-facing "Argo CD"/"ArgoCD" text replaced with "Hanzo CD" across the login page, help modal, settings screens, version-info panel, sync-options warning, fullscreen-logs title, app.tsx page titles, and index.html's <title>/noscript text (dropped the now-wrong upstream CLI doc link rather than invent a hanzo.ai URL that doesn't exist). Logo/favicon assets replaced with the canonical Hanzo mark (never hand-drawn, copied from ~/work/hanzo/logo/dist): the two real usages of Argo's logo collapse onto one Hanzo glyph (mono + white variants) at the same 5 call sites (login icon + footer, login.scss $logoPath/ $logoNegativePath, sidebar text-logo), preserving the existing CSS invert() filters so both the light login panel and dark sidebar still render correctly. Old argologo.svg/argo_o.svg/argo.png deleted (no longer referenced). favicon-{16x16,32x32}.png added at ui/src/assets/favicon/ (index.html's links to that path were previously dead - the directory didn't exist in this checkout). package.json name argo-cd-ui -> hanzo-cd-ui. Left alone, deliberately: the two Kubernetes resource-kind icon sets under ui/src/assets/images/resources/ (unrelated to branding), and upstream doc/project links (argoproj.io, argo-cd.readthedocs.io) since we have no equivalent hanzo.ai docs to point to yet - except the login footer logo's outbound link, which now points to hanzo.ai instead of argoproj.io (a Hanzo-branded mark linking to the upstream project it was forked from read as an obvious leftover). Claude-Session: https://claude.ai/code/session_015Z1iLf7QBrq1LhignJrzDw * feat(module): rename Go module github.com/argoproj/argo-cd/v3 -> github.com/hanzoai/deploy Phase 2. No version suffix on the new path (org policy: never publish our own Go modules above v1.x.x / with a v2+ suffix) — this fork starts a fresh v0/v1 module identity rather than carrying the v3 the upstream fork point had reached. Mechanical, symmetric rewrite: 704 .go files (import statements only; two disjoint substitutions applied specific-first so the nested gitops-engine module path never double-matches), plus go.mod (module line, the gitops-engine require+replace pair, version reset to v0.0.0-... since a suffix-less path can't carry a v3 semver), gitops-engine/go.mod, Makefile (ldflags PACKAGE + 2 TEST_MODULE filters), .golangci.yaml, .goreleaser.yaml, .mockery.yaml (+ gitops-engine's), Procfile, the codegen/proto generation scripts (hack/generate-proto.sh, update-codegen.sh, update-openapi.sh), and 20 .proto files' go_package options. Also one OpenTelemetry tracer name string in gitops-engine/pkg/sync/sync_context.go (a cosmestic label, not an import, but worth keeping consistent). CGO_ENABLED=0 go build ./... verified green for both the root module and the nested gitops-engine module; go vet clean on both; go mod tidy run (network available) to reconcile go.sum, dependency set unchanged. Left alone, deliberately: doc-only mentions (docs/snyk/*.html scan reports, gitops-engine/README.md), a comment-only reference in .github/workflows/release.yaml, and one Renovate bot config line — none are build- or codegen-load-bearing. Also left alone: comments citing upstream GitHub issue URLs (github.com/argoproj/argo-cd/issues/NNNNN) and a handful of test fixtures using "https://github.com/argoproj/argo-cd.git" as a representative example repo URL — both are accurate historical/test-data references, not stale self-references. Claude-Session: https://claude.ai/code/session_015Z1iLf7QBrq1LhignJrzDw --------- Co-authored-by: Hanzo Dev <dev@hanzo.ai>
488 lines
14 KiB
Go
488 lines
14 KiB
Go
package controller
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hanzoai/deploy/gitops-engine/pkg/utils/kube"
|
|
"github.com/stretchr/testify/assert"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
func TestIsHookOfType(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
hookType HookType
|
|
annot map[string]string
|
|
expected bool
|
|
}{
|
|
{
|
|
name: "ArgoCD PreDelete hook",
|
|
hookType: PreDeleteHookType,
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Helm PreDelete hook",
|
|
hookType: PreDeleteHookType,
|
|
annot: map[string]string{"helm.sh/hook": "pre-delete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "ArgoCD PostDelete hook",
|
|
hookType: PostDeleteHookType,
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Helm PostDelete hook",
|
|
hookType: PostDeleteHookType,
|
|
annot: map[string]string{"helm.sh/hook": "post-delete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Not a hook",
|
|
hookType: PreDeleteHookType,
|
|
annot: map[string]string{"some-other": "annotation"},
|
|
expected: false,
|
|
},
|
|
{
|
|
name: "Wrong hook type",
|
|
hookType: PreDeleteHookType,
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expected: false,
|
|
},
|
|
{
|
|
name: "Nil annotations",
|
|
hookType: PreDeleteHookType,
|
|
annot: nil,
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
obj := &unstructured.Unstructured{}
|
|
obj.SetAnnotations(tt.annot)
|
|
result := isHookOfType(obj, tt.hookType)
|
|
assert.Equal(t, tt.expected, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIsHook(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
annot map[string]string
|
|
expected bool
|
|
}{
|
|
{
|
|
name: "ArgoCD PreDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "ArgoCD PostDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "ArgoCD PreSync hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PreSync"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Not a hook",
|
|
annot: map[string]string{"some-other": "annotation"},
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
obj := &unstructured.Unstructured{}
|
|
obj.SetAnnotations(tt.annot)
|
|
result := isHook(obj)
|
|
assert.Equal(t, tt.expected, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIsPreDeleteHook(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
annot map[string]string
|
|
expected bool
|
|
}{
|
|
{
|
|
name: "ArgoCD PreDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Helm PreDelete hook",
|
|
annot: map[string]string{"helm.sh/hook": "pre-delete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "ArgoCD PostDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expected: false,
|
|
},
|
|
{
|
|
name: "Helm PreDelete & PreDelete hook",
|
|
annot: map[string]string{"helm.sh/hook": "pre-delete,post-delete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "ArgoCD PostDelete & PreDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete,PreDelete"},
|
|
expected: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
obj := &unstructured.Unstructured{}
|
|
obj.SetAnnotations(tt.annot)
|
|
result := isPreDeleteHook(obj)
|
|
assert.Equal(t, tt.expected, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIsPostDeleteHook(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
annot map[string]string
|
|
expected bool
|
|
}{
|
|
{
|
|
name: "ArgoCD PostDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Helm PostDelete hook",
|
|
annot: map[string]string{"helm.sh/hook": "post-delete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "ArgoCD PreDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
expected: false,
|
|
},
|
|
{
|
|
name: "ArgoCD PostDelete & PreDelete hook",
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PostDelete,PreDelete"},
|
|
expected: true,
|
|
},
|
|
{
|
|
name: "Helm PostDelete & PreDelete hook",
|
|
annot: map[string]string{"helm.sh/hook": "post-delete,pre-delete"},
|
|
expected: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
obj := &unstructured.Unstructured{}
|
|
obj.SetAnnotations(tt.annot)
|
|
result := isPostDeleteHook(obj)
|
|
assert.Equal(t, tt.expected, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
// TestPartitionTargetObjsForSync covers partitionTargetObjsForSync in state.go.
|
|
func TestPartitionTargetObjsForSync(t *testing.T) {
|
|
newObj := func(name string, annot map[string]string) *unstructured.Unstructured {
|
|
u := &unstructured.Unstructured{}
|
|
u.SetName(name)
|
|
u.SetAnnotations(annot)
|
|
return u
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
in []*unstructured.Unstructured
|
|
wantNames []string
|
|
wantPreDelete bool
|
|
wantPostDelete bool
|
|
}{
|
|
{
|
|
name: "PostSync with PreDelete and PostDelete in same annotation stays in sync set",
|
|
in: []*unstructured.Unstructured{
|
|
newObj("combined", map[string]string{"argocd.argoproj.io/hook": "PostSync,PreDelete,PostDelete"}),
|
|
},
|
|
wantNames: []string{"combined"},
|
|
wantPreDelete: true,
|
|
wantPostDelete: true,
|
|
},
|
|
{
|
|
name: "PreDelete-only manifest excluded from sync",
|
|
in: []*unstructured.Unstructured{
|
|
newObj("pre-del", map[string]string{"argocd.argoproj.io/hook": "PreDelete"}),
|
|
},
|
|
wantNames: nil,
|
|
wantPreDelete: true,
|
|
wantPostDelete: false,
|
|
},
|
|
{
|
|
name: "PostDelete-only manifest excluded from sync",
|
|
in: []*unstructured.Unstructured{
|
|
newObj("post-del", map[string]string{"argocd.argoproj.io/hook": "PostDelete"}),
|
|
},
|
|
wantNames: nil,
|
|
wantPreDelete: false,
|
|
wantPostDelete: true,
|
|
},
|
|
{
|
|
name: "Helm pre-delete only excluded from sync",
|
|
in: []*unstructured.Unstructured{
|
|
newObj("helm-pre-del", map[string]string{"helm.sh/hook": "pre-delete"}),
|
|
},
|
|
wantNames: nil,
|
|
wantPreDelete: true,
|
|
wantPostDelete: false,
|
|
},
|
|
{
|
|
name: "Helm pre-install with pre-delete stays in sync (sync-phase hook wins)",
|
|
in: []*unstructured.Unstructured{
|
|
newObj("helm-mixed", map[string]string{"helm.sh/hook": "pre-install,pre-delete"}),
|
|
},
|
|
wantNames: []string{"helm-mixed"},
|
|
wantPreDelete: true,
|
|
wantPostDelete: false,
|
|
},
|
|
{
|
|
name: "Non-hook resource unchanged",
|
|
in: []*unstructured.Unstructured{
|
|
newObj("pod", map[string]string{"app": "x"}),
|
|
},
|
|
wantNames: []string{"pod"},
|
|
wantPreDelete: false,
|
|
wantPostDelete: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, hasPre, hasPost := partitionTargetObjsForSync(tt.in)
|
|
var names []string
|
|
for _, o := range got {
|
|
names = append(names, o.GetName())
|
|
}
|
|
assert.Equal(t, tt.wantNames, names)
|
|
assert.Equal(t, tt.wantPreDelete, hasPre, "hasPreDeleteHooks")
|
|
assert.Equal(t, tt.wantPostDelete, hasPost, "hasPostDeleteHooks")
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestMultiHookOfType(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
hookType []HookType
|
|
annot map[string]string
|
|
expected bool
|
|
}{
|
|
{
|
|
name: "helm PreDelete & PostDelete hook",
|
|
hookType: []HookType{PreDeleteHookType, PostDeleteHookType},
|
|
annot: map[string]string{"helm.sh/hook": "pre-delete,post-delete"},
|
|
expected: true,
|
|
},
|
|
|
|
{
|
|
name: "ArgoCD PreDelete & PostDelete hook",
|
|
hookType: []HookType{PreDeleteHookType, PostDeleteHookType},
|
|
annot: map[string]string{"argocd.argoproj.io/hook": "PreDelete,PostDelete"},
|
|
expected: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
obj := &unstructured.Unstructured{}
|
|
obj.SetAnnotations(tt.annot)
|
|
|
|
for _, hookType := range tt.hookType {
|
|
result := isHookOfType(obj, hookType)
|
|
assert.Equal(t, tt.expected, result)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestExecuteHooksAlreadyExistsLogic(t *testing.T) {
|
|
newObj := func(name string, annot map[string]string) *unstructured.Unstructured {
|
|
obj := &unstructured.Unstructured{}
|
|
obj.SetGroupVersionKind(schema.GroupVersionKind{Group: "batch", Version: "v1", Kind: "Job"})
|
|
obj.SetName(name)
|
|
obj.SetNamespace("default")
|
|
obj.SetAnnotations(annot)
|
|
return obj
|
|
}
|
|
|
|
tests := []struct {
|
|
name string
|
|
hookType []HookType
|
|
targetAnnot map[string]string
|
|
liveAnnot map[string]string // nil -> object doesn't exist in cluster
|
|
expectCreated bool
|
|
}{
|
|
// PRE DELETE TESTS
|
|
{
|
|
name: "PreDelete (argocd): Not in cluster - should be created",
|
|
hookType: []HookType{PreDeleteHookType},
|
|
targetAnnot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
liveAnnot: nil,
|
|
expectCreated: true,
|
|
},
|
|
{
|
|
name: "PreDelete (helm): Not in cluster - should be created",
|
|
hookType: []HookType{PreDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "pre-delete"},
|
|
liveAnnot: nil,
|
|
expectCreated: true,
|
|
},
|
|
{
|
|
name: "PreDelete (argocd): Already exists - should be skipped",
|
|
hookType: []HookType{PreDeleteHookType},
|
|
targetAnnot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
liveAnnot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PreDelete (argocd): Already exists - should be skipped",
|
|
hookType: []HookType{PreDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "pre-delete"},
|
|
liveAnnot: map[string]string{"helm.sh/hook": "pre-delete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PreDelete (helm+argocd): One of two already exists - should be skipped",
|
|
hookType: []HookType{PreDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "pre-delete", "argocd.argoproj.io/hook": "PreDelete"},
|
|
liveAnnot: map[string]string{"helm.sh/hook": "pre-delete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PreDelete (helm+argocd): One of two already exists - should be skipped",
|
|
hookType: []HookType{PreDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "pre-delete", "argocd.argoproj.io/hook": "PreDelete"},
|
|
liveAnnot: map[string]string{"argocd.argoproj.io/hook": "PreDelete"},
|
|
expectCreated: false,
|
|
},
|
|
// POST DELETE TESTS
|
|
{
|
|
name: "PostDelete (argocd): Not in cluster - should be created",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
liveAnnot: nil,
|
|
expectCreated: true,
|
|
},
|
|
{
|
|
name: "PostDelete (helm): Not in cluster - should be created",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "post-delete"},
|
|
liveAnnot: nil,
|
|
expectCreated: true,
|
|
},
|
|
{
|
|
name: "PostDelete (argocd): Already exists - should be skipped",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
liveAnnot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PostDelete (helm): Already exists - should be skipped",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "post-delete"},
|
|
liveAnnot: map[string]string{"helm.sh/hook": "post-delete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PostDelete (helm+argocd): Already exists - should be skipped",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "post-delete", "argocd.argoproj.io/hook": "PostDelete"},
|
|
liveAnnot: map[string]string{"helm.sh/hook": "post-delete", "argocd.argoproj.io/hook": "PostDelete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PostDelete (helm+argocd): One of two already exists - should be skipped",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "post-delete", "argocd.argoproj.io/hook": "PostDelete"},
|
|
liveAnnot: map[string]string{"helm.sh/hook": "post-delete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "PostDelete (helm+argocd): One of two already exists - should be skipped",
|
|
hookType: []HookType{PostDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "post-delete", "argocd.argoproj.io/hook": "PostDelete"},
|
|
liveAnnot: map[string]string{"argocd.argoproj.io/hook": "PostDelete"},
|
|
expectCreated: false,
|
|
},
|
|
// MULTI HOOK TESTS - SKIP LOGIC
|
|
{
|
|
name: "Multi-hook (argocd): Target is (Pre,Post), Cluster has (Pre,Post) - should be skipped",
|
|
hookType: []HookType{PreDeleteHookType, PostDeleteHookType},
|
|
targetAnnot: map[string]string{"argocd.argoproj.io/hook": "PreDelete,PostDelete"},
|
|
liveAnnot: map[string]string{"argocd.argoproj.io/hook": "PreDelete,PostDelete"},
|
|
expectCreated: false,
|
|
},
|
|
{
|
|
name: "Multi-hook (helm): Target is (Pre,Post), Cluster has (Pre,Post) - should be skipped",
|
|
hookType: []HookType{PreDeleteHookType, PostDeleteHookType},
|
|
targetAnnot: map[string]string{"helm.sh/hook": "post-delete,pre-delete"},
|
|
liveAnnot: map[string]string{"helm.sh/hook": "post-delete,pre-delete"},
|
|
expectCreated: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
targetObj := newObj("my-hook", tt.targetAnnot)
|
|
targetKey := kube.GetResourceKey(targetObj)
|
|
|
|
liveObjs := make(map[kube.ResourceKey]*unstructured.Unstructured)
|
|
if tt.liveAnnot != nil {
|
|
liveObjs[targetKey] = newObj("my-hook", tt.liveAnnot)
|
|
}
|
|
|
|
runningHooks := map[kube.ResourceKey]*unstructured.Unstructured{}
|
|
for key, obj := range liveObjs {
|
|
for _, hookType := range tt.hookType {
|
|
if isHookOfType(obj, hookType) {
|
|
runningHooks[key] = obj
|
|
}
|
|
}
|
|
}
|
|
|
|
expectedHooksToCreate := map[kube.ResourceKey]*unstructured.Unstructured{}
|
|
targets := []*unstructured.Unstructured{targetObj}
|
|
|
|
for _, obj := range targets {
|
|
for _, hookType := range tt.hookType {
|
|
if !isHookOfType(obj, hookType) {
|
|
continue
|
|
}
|
|
}
|
|
|
|
objKey := kube.GetResourceKey(obj)
|
|
if _, alreadyExists := runningHooks[objKey]; !alreadyExists {
|
|
expectedHooksToCreate[objKey] = obj
|
|
}
|
|
}
|
|
|
|
if tt.expectCreated {
|
|
assert.NotEmpty(t, expectedHooksToCreate, "Expected hook to be marked for creation")
|
|
} else {
|
|
assert.Empty(t, expectedHooksToCreate, "Expected hook to be skipped (already exists)")
|
|
}
|
|
})
|
|
}
|
|
}
|