-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathexample_test.go
105 lines (82 loc) · 2.51 KB
/
example_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package fault_test
import (
"fmt"
"net/http"
"time"
"github.com/lingrino/go-fault"
)
// ExampleNewFault shows how to create a new Fault.
func ExampleNewFault() {
ei, err := fault.NewErrorInjector(http.StatusInternalServerError)
fmt.Print(err)
_, err = fault.NewFault(ei,
fault.WithEnabled(true),
fault.WithParticipation(0.25),
)
fmt.Print(err)
// Output: <nil><nil>
}
// ExampleNewFault_blocklist shows how to create a new Fault with a path/header blocklist.
func ExampleNewFault_blocklist() {
ei, err := fault.NewErrorInjector(http.StatusInternalServerError)
fmt.Print(err)
_, err = fault.NewFault(ei,
fault.WithEnabled(true),
fault.WithParticipation(0.25),
fault.WithPathBlocklist([]string{"/ping", "/health"}),
fault.WithHeaderBlocklist(map[string]string{"block": "this header"}),
)
fmt.Print(err)
// Output: <nil><nil>
}
// ExampleNewFault_allowlist shows how to create a new Fault with a path/header allowlist.
func ExampleNewFault_allowlist() {
ei, err := fault.NewErrorInjector(http.StatusInternalServerError)
fmt.Print(err)
_, err = fault.NewFault(ei,
fault.WithEnabled(true),
fault.WithParticipation(0.25),
fault.WithPathAllowlist([]string{"/injecthere", "/andhere"}),
fault.WithHeaderAllowlist(map[string]string{"allow": "this header"}),
)
fmt.Print(err)
// Output: <nil><nil>
}
// ExampleNewChainInjector shows how to create a new ChainInjector.
func ExampleNewChainInjector() {
si, err := fault.NewSlowInjector(time.Minute)
fmt.Print(err)
ri, err := fault.NewRejectInjector()
fmt.Print(err)
_, err = fault.NewChainInjector([]fault.Injector{si, ri})
fmt.Print(err)
// Output: <nil><nil><nil>
}
// ExampleNewChainInjector shows how to create a new RandomInjector.
func ExampleNewRandomInjector() {
si, err := fault.NewSlowInjector(time.Minute)
fmt.Print(err)
ri, err := fault.NewRejectInjector()
fmt.Print(err)
_, err = fault.NewRandomInjector([]fault.Injector{si, ri})
fmt.Print(err)
// Output: <nil><nil><nil>
}
// ExampleNewRejectInjector shows how to create a new RejectInjector.
func ExampleNewRejectInjector() {
_, err := fault.NewRejectInjector()
fmt.Print(err)
// Output: <nil>
}
// ExampleNewErrorInjector shows how to create a new ErrorInjector.
func ExampleNewErrorInjector() {
_, err := fault.NewErrorInjector(http.StatusInternalServerError)
fmt.Print(err)
// Output: <nil>
}
// ExampleNewSlowInjector shows how to create a new SlowInjector.
func ExampleNewSlowInjector() {
_, err := fault.NewSlowInjector(time.Second * 10)
fmt.Print(err)
// Output: <nil>
}