Skip to content

Commit 2f2c637

Browse files
committed
Add test which verifes that only short duration tests are present
This test would run only when ShortCertRotation is enabled
1 parent 44873fa commit 2f2c637

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

test/extended/operators/certs.go

+33
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import (
1010
"strings"
1111
"time"
1212

13+
promtime "github.com/prometheus/common/model"
14+
1315
"github.com/openshift/origin/pkg/cmd/update-tls-artifacts/generate-owners/tlsmetadatadefaults"
1416
"github.com/openshift/origin/pkg/cmd/update-tls-artifacts/generate-owners/tlsmetadatainterfaces"
1517
"github.com/openshift/origin/pkg/monitortests/network/disruptionpodnetwork"
@@ -283,6 +285,37 @@ var _ = g.Describe(fmt.Sprintf("[sig-arch][Late][Jira:%q]", "kube-apiserver"), g
283285
}
284286
})
285287

288+
g.It("[OCPFeatureGate:ShortCertRotation] all certificates should expire in no more than 8 hours", func() {
289+
var errs []error
290+
for _, certKeyPair := range actualPKIContent.CertKeyPairs.Items {
291+
if certKeyPair.Spec.CertMetadata.ValidityDuration == "" {
292+
// Skip certificates with no duration set (proxy ca, key without certificate etc.)
293+
continue
294+
}
295+
if certKeyPair.Spec.CertMetadata.ValidityDuration == "10y" {
296+
// Skip "forever" certificates
297+
continue
298+
}
299+
if strings.Contains(certKeyPair.Name, "ingress") ||
300+
strings.Contains(certKeyPair.Spec.CertMetadata.CertIdentifier.CommonName, "router") {
301+
// Skip ingress and router certificates
302+
continue
303+
}
304+
// Use ParseDuration from prometheus as it can handle days/month/years durations
305+
duration, err := promtime.ParseDuration(certKeyPair.Spec.CertMetadata.ValidityDuration)
306+
if err != nil {
307+
errs = append(errs, fmt.Errorf("failed to parse validity duration for certificate %q: %v", certKeyPair.Name, err))
308+
continue
309+
}
310+
if time.Duration(duration) > time.Hour*8 {
311+
errs = append(errs, fmt.Errorf("certificate %q expires too soon: expected up to 8h, but was %s", certKeyPair.Name, duration))
312+
}
313+
}
314+
if len(errs) > 0 {
315+
testresult.Flakef("Errors found: %s", utilerrors.NewAggregate(errs).Error())
316+
}
317+
})
318+
286319
})
287320

288321
func fetchOnDiskCertificates(ctx context.Context, kubeClient kubernetes.Interface, podRESTConfig *rest.Config, nodeList []*corev1.Node, testPullSpec string) (*certgraphapi.PKIList, error) {

test/extended/util/annotate/generated/zz_generated.annotations.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zz_generated.manifests/test-reporting.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,10 @@ spec:
542542
[LinuxOnly] [Feature:SELinux] [Serial] warning is not bumped on two Pods with
543543
the same context on RWO volume [FeatureGate:SELinuxMountReadWriteOncePod]
544544
[Beta] [Feature:SELinuxMountReadWriteOncePodOnly]'
545+
- featureGate: ShortCertRotation
546+
tests:
547+
- testName: '[sig-arch][Late][Jira:"kube-apiserver"] [OCPFeatureGate:ShortCertRotation]
548+
all certificates should expire in no more than 8 hours'
545549
- featureGate: VSphereDriverConfiguration
546550
tests:
547551
- testName: '[sig-storage][FeatureGate:VSphereDriverConfiguration][Serial][apigroup:operator.openshift.io]

0 commit comments

Comments
 (0)