Skip to content

Commit b1cde86

Browse files
Merge pull request #29606 from smg247/synthetic-test-for-skipped-annotations
TRT-1854: add synthetic test to check for presence of "Skipped" annotations in OTE tests
2 parents 6aecfce + 0cfba65 commit b1cde86

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pkg/test/ginkgo/cmd_runsuite.go

+22
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,27 @@ func (o *GinkgoRunSuiteOptions) Run(suite *TestSuite, junitSuiteName string, mon
201201
logrus.Infof("Using built-in tests only due to OPENSHIFT_SKIP_EXTERNAL_TESTS being set")
202202
}
203203

204+
// Temporarily check for the presence of the [Skipped:xyz] annotation in the test names, once this synthetic test
205+
// begins to pass we can remove the annotation logic
206+
var annotatedSkipped []string
207+
for _, t := range externalTestCases {
208+
if strings.Contains(t.name, "[Skipped") {
209+
annotatedSkipped = append(annotatedSkipped, t.name)
210+
}
211+
}
212+
var skippedAnnotationSyntheticTestResults []*junitapi.JUnitTestCase
213+
skippedAnnotationSyntheticTestResult := junitapi.JUnitTestCase{
214+
Name: "[sig-trt] Skipped annotations present",
215+
}
216+
if len(annotatedSkipped) > 0 {
217+
skippedAnnotationSyntheticTestResult.FailureOutput = &junitapi.FailureOutput{
218+
Message: fmt.Sprintf("Skipped Annotations present in tests: %s", strings.Join(annotatedSkipped, ", ")),
219+
}
220+
}
221+
skippedAnnotationSyntheticTestResults = append(skippedAnnotationSyntheticTestResults, &skippedAnnotationSyntheticTestResult)
222+
// If this fails, this additional run will make it flake
223+
skippedAnnotationSyntheticTestResults = append(skippedAnnotationSyntheticTestResults, &junitapi.JUnitTestCase{Name: skippedAnnotationSyntheticTestResult.Name})
224+
204225
// this ensures the tests are always run in random order to avoid
205226
// any intra-tests dependencies
206227
suiteConfig, _ := ginkgo.GinkgoConfiguration()
@@ -512,6 +533,7 @@ func (o *GinkgoRunSuiteOptions) Run(suite *TestSuite, junitSuiteName string, mon
512533
var syntheticTestResults []*junitapi.JUnitTestCase
513534
var syntheticFailure bool
514535
syntheticTestResults = append(syntheticTestResults, stableClusterTestResults...)
536+
syntheticTestResults = append(syntheticTestResults, skippedAnnotationSyntheticTestResults...)
515537

516538
timeSuffix := fmt.Sprintf("_%s", start.UTC().Format("20060102-150405"))
517539

0 commit comments

Comments
 (0)