Fix code that did not auto-merge correctly in previous merge from main
This commit is contained in:
parent
814399324f
commit
7551af3eb8
@ -374,18 +374,11 @@ func TestGarbageCollectorControllerSync(t *testing.T) {
|
|||||||
// Both authcode session secrets are deleted.
|
// Both authcode session secrets are deleted.
|
||||||
r.ElementsMatch(
|
r.ElementsMatch(
|
||||||
[]kubetesting.Action{
|
[]kubetesting.Action{
|
||||||
kubetesting.NewDeleteAction(secretsGVR, installedInNamespace, "activeOIDCAuthcodeSession"),
|
kubetesting.NewDeleteActionWithOptions(secretsGVR, installedInNamespace, "activeOIDCAuthcodeSession", testutil.NewPreconditions("uid-123", "rv-123")),
|
||||||
kubetesting.NewDeleteAction(secretsGVR, installedInNamespace, "inactiveOIDCAuthcodeSession"),
|
kubetesting.NewDeleteActionWithOptions(secretsGVR, installedInNamespace, "inactiveOIDCAuthcodeSession", testutil.NewPreconditions("uid-456", "rv-456")),
|
||||||
},
|
},
|
||||||
kubeClient.Actions(),
|
kubeClient.Actions(),
|
||||||
)
|
)
|
||||||
r.ElementsMatch(
|
|
||||||
[]metav1.DeleteOptions{
|
|
||||||
testutil.NewPreconditions("uid-123", "rv-123"),
|
|
||||||
testutil.NewPreconditions("uid-456", "rv-456"),
|
|
||||||
},
|
|
||||||
*deleteOptions,
|
|
||||||
)
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -816,16 +809,10 @@ func TestGarbageCollectorControllerSync(t *testing.T) {
|
|||||||
// The authcode session secrets is still deleted because it is expired and the revocation error is not retryable.
|
// The authcode session secrets is still deleted because it is expired and the revocation error is not retryable.
|
||||||
r.ElementsMatch(
|
r.ElementsMatch(
|
||||||
[]kubetesting.Action{
|
[]kubetesting.Action{
|
||||||
kubetesting.NewDeleteAction(secretsGVR, installedInNamespace, "activeOIDCAuthcodeSession"),
|
kubetesting.NewDeleteActionWithOptions(secretsGVR, installedInNamespace, "activeOIDCAuthcodeSession", testutil.NewPreconditions("uid-123", "rv-123")),
|
||||||
},
|
},
|
||||||
kubeClient.Actions(),
|
kubeClient.Actions(),
|
||||||
)
|
)
|
||||||
r.ElementsMatch(
|
|
||||||
[]metav1.DeleteOptions{
|
|
||||||
testutil.NewPreconditions("uid-123", "rv-123"),
|
|
||||||
},
|
|
||||||
*deleteOptions,
|
|
||||||
)
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1143,18 +1130,11 @@ func TestGarbageCollectorControllerSync(t *testing.T) {
|
|||||||
// Both session secrets are deleted.
|
// Both session secrets are deleted.
|
||||||
r.ElementsMatch(
|
r.ElementsMatch(
|
||||||
[]kubetesting.Action{
|
[]kubetesting.Action{
|
||||||
kubetesting.NewDeleteAction(secretsGVR, installedInNamespace, "offlineAccessGrantedOIDCAccessTokenSession"),
|
kubetesting.NewDeleteActionWithOptions(secretsGVR, installedInNamespace, "offlineAccessGrantedOIDCAccessTokenSession", testutil.NewPreconditions("uid-123", "rv-123")),
|
||||||
kubetesting.NewDeleteAction(secretsGVR, installedInNamespace, "offlineAccessNotGrantedOIDCAccessTokenSession"),
|
kubetesting.NewDeleteActionWithOptions(secretsGVR, installedInNamespace, "offlineAccessNotGrantedOIDCAccessTokenSession", testutil.NewPreconditions("uid-456", "rv-456")),
|
||||||
},
|
},
|
||||||
kubeClient.Actions(),
|
kubeClient.Actions(),
|
||||||
)
|
)
|
||||||
r.ElementsMatch(
|
|
||||||
[]metav1.DeleteOptions{
|
|
||||||
testutil.NewPreconditions("uid-123", "rv-123"),
|
|
||||||
testutil.NewPreconditions("uid-456", "rv-456"),
|
|
||||||
},
|
|
||||||
*deleteOptions,
|
|
||||||
)
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -1227,16 +1207,10 @@ func TestGarbageCollectorControllerSync(t *testing.T) {
|
|||||||
// The secret is deleted.
|
// The secret is deleted.
|
||||||
r.ElementsMatch(
|
r.ElementsMatch(
|
||||||
[]kubetesting.Action{
|
[]kubetesting.Action{
|
||||||
kubetesting.NewDeleteAction(secretsGVR, installedInNamespace, "oidcRefreshSession"),
|
kubetesting.NewDeleteActionWithOptions(secretsGVR, installedInNamespace, "oidcRefreshSession", testutil.NewPreconditions("uid-123", "rv-123")),
|
||||||
},
|
},
|
||||||
kubeClient.Actions(),
|
kubeClient.Actions(),
|
||||||
)
|
)
|
||||||
r.ElementsMatch(
|
|
||||||
[]metav1.DeleteOptions{
|
|
||||||
testutil.NewPreconditions("uid-123", "rv-123"),
|
|
||||||
},
|
|
||||||
*deleteOptions,
|
|
||||||
)
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user