forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeout_error.go
54 lines (45 loc) · 1.26 KB
/
timeout_error.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package lib
import (
"fmt"
"time"
)
//nolint:gochecknoglobals
// Keep stages in sync with js/runner.go
// We set it here to prevent import cycle.
var (
stageSetup = "setup"
stageTeardown = "teardown"
)
// TimeoutError is used when somethings timeouts
type TimeoutError struct {
place string
d time.Duration
}
// NewTimeoutError returns a new TimeoutError reporting that timeout has happened
// at the given place and given duration.
func NewTimeoutError(place string, d time.Duration) TimeoutError {
return TimeoutError{place: place, d: d}
}
// String returns timeout error in human readable format.
func (t TimeoutError) String() string {
return fmt.Sprintf("%s execution timed out after %.f seconds", t.place, t.d.Seconds())
}
// Error implements error interface.
func (t TimeoutError) Error() string {
return t.String()
}
// Place returns the place where timeout occurred.
func (t TimeoutError) Place() string {
return t.place
}
// Hint returns a hint message for logging with given stage.
func (t TimeoutError) Hint() string {
hint := ""
switch t.place {
case stageSetup:
hint = "You can increase the time limit via the setupTimeout option"
case stageTeardown:
hint = "You can increase the time limit via the teardownTimeout option"
}
return hint
}