mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
33 lines
734 B
Go
33 lines
734 B
Go
package statement
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/influxdata/influxdb/stress/v2/stress_client"
|
|
)
|
|
|
|
// WaitStatement is a Statement Implementation to prevent the test from returning to early when running GoStatements
|
|
type WaitStatement struct {
|
|
StatementID string
|
|
|
|
runtime time.Duration
|
|
}
|
|
|
|
// SetID statisfies the Statement Interface
|
|
func (w *WaitStatement) SetID(s string) {
|
|
w.StatementID = s
|
|
}
|
|
|
|
// Run statisfies the Statement Interface
|
|
func (w *WaitStatement) Run(s *stressClient.StressTest) {
|
|
runtime := time.Now()
|
|
s.Wait()
|
|
w.runtime = time.Since(runtime)
|
|
}
|
|
|
|
// Report statisfies the Statement Interface
|
|
func (w *WaitStatement) Report(s *stressClient.StressTest) string {
|
|
return fmt.Sprintf("WAIT -> %v", w.runtime)
|
|
}
|