Documentation
¶
Index ¶
- Constants
- func FrameworkFlakef(f *framework.Framework, format string, options ...interface{})
- func RecordJUnit(f *framework.Framework, name string, fn func() (err error, flake bool)) error
- func RecordJUnitResult(f *framework.Framework, name string, duration time.Duration, failure string)
- func Run(f *framework.Framework, description, testname string, adapter TestData, ...)
- type TestData
Constants ¶
const ( // DefaultAllowedDisruption is a constant used when we cannot calculate an allowed disruption value from historical data. // It is used to search for our inability to do so across CI broadly. DefaultAllowedDisruption = 2718 )
Variables ¶
This section is empty.
Functions ¶
func FrameworkFlakef ¶
FrameworkFlakef records a flake on the current framework.
func RecordJUnit ¶
RecordJUnit will capture the result of invoking fn as either a passing or failing JUnit test that will be recorded alongside the current test with name. These methods only work in the context of a disruption test suite today and will not be reported as JUnit failures when used within normal ginkgo suites.
func RecordJUnitResult ¶
RecordJUnitResult will output a junit result within a disruption test with the given name, duration, and failure string. If the failure string is set, the test is considered to have failed, otherwise the test is considered to have passed. These methods only work in the context of a disruption test suite today and will not be reported as JUnit failures when used within normal ginkgo suties.
func Run ¶
func Run(f *framework.Framework, description, testname string, adapter TestData, invariants []upgrades.Test, fn func())
Run executes the provided fn in a test context, ensuring that invariants are preserved while the test is being executed. Description is used to populate the JUnit suite name, and testname is used to define the overall test that will be run.
Types ¶
type TestData ¶
type TestData struct {
UpgradeType upgrades.UpgradeType
UpgradeContext upgrades.UpgradeContext
}
TestData is passed to the invariant tests executed during the upgrade. The default UpgradeType is MasterUpgrade.