From b301883f04ee659c6fde583ef4f85b930f0d8a91 Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Fri, 15 Mar 2024 11:36:14 -0700 Subject: [PATCH] Add additional check Signed-off-by: James Sturtevant --- .../integration_tests/integration_test.go | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/admission-webhook/integration_tests/integration_test.go b/admission-webhook/integration_tests/integration_test.go index d6e62bed..215eb2c8 100644 --- a/admission-webhook/integration_tests/integration_test.go +++ b/admission-webhook/integration_tests/integration_test.go @@ -440,15 +440,27 @@ func TestPossibleToUpdatePodWithNewCert(t *testing.T) { * (using utils like https://github.com/ycheng-kareo/windows-gmsa/blob/watch-reload-cert/admission-webhook/integration_tests/kube.go#L199) **/ - t.Skip("Non chart deployment method not supported") + t.Skip("Non chart deployment method not supported for this test") } + // it takes ~60 seconds for the webhook to pick up the new certificate + // so this first run makes sure the old cert still works testName2 := testName + "after-rotation" testConfig2, tearDownFunc2 := integrationTestSetup(t, testName2, credSpecTemplates, templates) defer tearDownFunc2() pod2 := waitForPodToComeUp(t, testConfig2.Namespace, "app="+testName2) assert.Equal(t, expectedCredSpec0, extractContainerCredSpecContents(t, pod2, testName2)) + + // sleep a bit to ensure the the secret has been propagated to the pod + time.Sleep(90 * time.Second) + + testName3 := testName + "after-rotation" + testConfig3, tearDownFunc3 := integrationTestSetup(t, testName3, credSpecTemplates, templates) + defer tearDownFunc3() + + pod3 := waitForPodToComeUp(t, testConfig3.Namespace, "app="+testName3) + assert.Equal(t, expectedCredSpec0, extractContainerCredSpecContents(t, pod3, testName3)) } /* Helpers */