kubernetes/test/e2e/reporters/progress.go

type ProgressReporter

// NewProgressReporter returns a progress reporter which posts updates to the given URL.
func NewProgressReporter(progressReportURL string) *ProgressReporter {}

// SendUpdates serializes the current progress and posts it to the configured endpoint if set.
// It does not print to stdout because that interferes with progress reporting by Ginko
// and (when Ginkgo does output redirection) doesn't actually appear on the screen anyway.
func (reporter *ProgressReporter) SendUpdates() {}

func (reporter *ProgressReporter) postProgressToURL(b []byte) {}

func (reporter *ProgressReporter) serialize() []byte {}

func (reporter *ProgressReporter) SetStartMsg() {}

func (reporter *ProgressReporter) SetTestsTotal(totalSpec int) {}

// ProcessSpecReport summarizes the report state and sends the state to the configured endpoint if set.
func (reporter *ProgressReporter) ProcessSpecReport(report ginkgo.SpecReport) {}

func (reporter *ProgressReporter) SetEndMsg() {}