-
Notifications
You must be signed in to change notification settings - Fork 2
/
failure_test.go
74 lines (61 loc) · 1.36 KB
/
failure_test.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package failured_test
import (
"testing"
. "github.com/andy2046/failured"
)
func withDiffs(fd *Detector, samples ...int64) int64 {
time := int64(0)
fd.RegisterHeartbeat(0)
for _, s := range samples {
time += s
fd.RegisterHeartbeat(time)
}
return time
}
func TestNoVariation(t *testing.T) {
fd := New()
lastTime := withDiffs(fd, 1, 1, 1, 1)
data := []struct {
expectedVal float64
expectedBool bool
v int64
}{
{0, false, lastTime},
{0, false, lastTime + 1},
{1, true, lastTime + 2},
}
for _, d := range data {
p := fd.FailureProbability(d.v)
if p != d.expectedVal {
t.Fatalf("expected %v got %v", d.expectedVal, p)
}
b := fd.CheckFailure(d.v)
if b != d.expectedBool {
t.Fatalf("expected %v got %v", d.expectedBool, b)
}
}
}
func TestVariation(t *testing.T) {
fd := New()
lastTime := withDiffs(fd, 1010, 1023, 1012, 1032, 1016, 1020, 990, 1028)
data := []struct {
expectedVal float64
expectedBool bool
v int64
}{
{0, false, lastTime + 500},
{0, false, lastTime + 1000},
{0.125, false, lastTime + 1100},
{1, true, lastTime + 2100},
}
for _, d := range data {
p := fd.FailureProbability(d.v)
if p != d.expectedVal {
t.Fatalf("expected %v got %v", d.expectedVal, p)
}
b := fd.CheckFailure(d.v)
if b != d.expectedBool {
t.Fatalf("expected %v got %v", d.expectedBool, b)
}
}
}