-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors_test.go
94 lines (66 loc) · 1.58 KB
/
errors_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
package mediator
import (
"errors"
"fmt"
"testing"
)
func Test_NoHandlerError(t *testing.T) {
// ARRANGE
request := "request"
// ACT
err := &NoHandlerError{request: request}
// ASSERT
wanted := fmt.Sprintf("no handler for '%T'", request)
got := err.Error()
if got != wanted {
t.Errorf("wanted %q, got %q", wanted, got)
}
}
func Test_NoReceiverError(t *testing.T) {
// ARRANGE
data := "request"
// ACT
err := &NoReceiverError{data: data}
// ASSERT
wanted := fmt.Sprintf("no receiver for '%T'", data)
got := err.Error()
if got != wanted {
t.Errorf("wanted %q, got %q", wanted, got)
}
}
func Test_InvalidHandlerError(t *testing.T) {
// ARRANGE
request := "request"
handlerResult := "result"
improperResult := true
mock, reg := MockHandlerReturningValues[string](handlerResult, nil)
defer reg.Remove()
// ACT
err := &InvalidHandlerError{handler: mock, request: request, result: true}
// ASSERT
wanted := fmt.Sprintf("handler for %T (%T) does not return %T", request, mock, improperResult)
got := err.Error()
if got != wanted {
t.Errorf("wanted %q, got %q", wanted, got)
}
}
func Test_ValidationError(t *testing.T) {
// ARRANGE
inner := errors.New("inner error")
// ACT
err := &ValidationError{inner}
result := err.Error()
// ASSERT
wanted := fmt.Sprintf("validation error: %v", inner)
got := result
if wanted != got {
t.Errorf("wanted %q, got %q", wanted, got)
}
t.Run("unwraps the wrapped error", func(t *testing.T) {
wanted := inner
got := errors.Unwrap(err)
if wanted != got {
t.Errorf("wanted %q, got %q", wanted, got)
}
})
}