-
Notifications
You must be signed in to change notification settings - Fork 3
/
messageroute_test.go
151 lines (127 loc) · 4.04 KB
/
messageroute_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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package dogma_test
import (
"reflect"
"testing"
. "github.com/dogmatiq/dogma"
)
type nonPointerReceivers[S any] struct{}
type pointerReceivers[S any] struct{}
func (nonPointerReceivers[S]) MessageDescription() string { panic("not implemented") }
func (nonPointerReceivers[S]) Validate(S) error { panic("not implemented") }
func (*pointerReceivers[S]) MessageDescription() string { panic("not implemented") }
func (*pointerReceivers[S]) Validate(S) error { panic("not implemented") }
func TestHandlesCommand(t *testing.T) {
type (
N = nonPointerReceivers[CommandValidationScope]
P = *pointerReceivers[CommandValidationScope]
X = *nonPointerReceivers[CommandValidationScope]
)
t.Run("it returns a route with the correct reflection type", func(t *testing.T) {
if HandlesCommand[N]().Type != reflect.TypeFor[N]() {
t.Fatal("unexpected message type")
}
if HandlesCommand[P]().Type != reflect.TypeFor[P]() {
t.Fatal("unexpected message type")
}
})
t.Run("it panics if the type is a pointer to an implementation that uses non-pointer receivers", func(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("expected a panic")
}
}()
HandlesCommand[X]()
})
}
func TestRecordsEvent(t *testing.T) {
type (
N = nonPointerReceivers[EventValidationScope]
P = *pointerReceivers[EventValidationScope]
X = *nonPointerReceivers[EventValidationScope]
)
t.Run("it returns a route with the correct reflection type", func(t *testing.T) {
if RecordsEvent[N]().Type != reflect.TypeFor[N]() {
t.Fatal("unexpected message type")
}
if RecordsEvent[P]().Type != reflect.TypeFor[P]() {
t.Fatal("unexpected message type")
}
})
t.Run("it panics if the type is a pointer to an implementation that uses non-pointer receivers", func(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("expected a panic")
}
}()
RecordsEvent[X]()
})
}
func TestHandlesEvent(t *testing.T) {
type (
N = nonPointerReceivers[EventValidationScope]
P = *pointerReceivers[EventValidationScope]
X = *nonPointerReceivers[EventValidationScope]
)
t.Run("it returns a route with the correct reflection type", func(t *testing.T) {
if HandlesEvent[N]().Type != reflect.TypeFor[N]() {
t.Fatal("unexpected message type")
}
if HandlesEvent[P]().Type != reflect.TypeFor[P]() {
t.Fatal("unexpected message type")
}
})
t.Run("it panics if the type is a pointer to an implementation that uses non-pointer receivers", func(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("expected a panic")
}
}()
HandlesEvent[X]()
})
}
func TestExecutesCommand(t *testing.T) {
type (
N = nonPointerReceivers[CommandValidationScope]
P = *pointerReceivers[CommandValidationScope]
X = *nonPointerReceivers[CommandValidationScope]
)
t.Run("it returns a route with the correct reflection type", func(t *testing.T) {
if ExecutesCommand[N]().Type != reflect.TypeFor[N]() {
t.Fatal("unexpected message type")
}
if ExecutesCommand[P]().Type != reflect.TypeFor[P]() {
t.Fatal("unexpected message type")
}
})
t.Run("it panics if the type is a pointer to an implementation that uses non-pointer receivers", func(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("expected a panic")
}
}()
ExecutesCommand[X]()
})
}
func TestSchedulesTimeout(t *testing.T) {
type (
N = nonPointerReceivers[TimeoutValidationScope]
P = *pointerReceivers[TimeoutValidationScope]
X = *nonPointerReceivers[TimeoutValidationScope]
)
t.Run("it returns a route with the correct reflection type", func(t *testing.T) {
if SchedulesTimeout[N]().Type != reflect.TypeFor[N]() {
t.Fatal("unexpected message type")
}
if SchedulesTimeout[P]().Type != reflect.TypeFor[P]() {
t.Fatal("unexpected message type")
}
})
t.Run("it panics if the type is a pointer to an implementation that uses non-pointer receivers", func(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatal("expected a panic")
}
}()
SchedulesTimeout[X]()
})
}