-
Notifications
You must be signed in to change notification settings - Fork 17
/
mediatr_benchmarks_test.go
48 lines (40 loc) · 1.26 KB
/
mediatr_benchmarks_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
package mediatr
import (
"context"
"github.com/goccy/go-reflect"
"testing"
)
func Benchmark_Send(b *testing.B) {
// because benchmark method will run multiple times, we need to reset the request handler registry before each run.
requestHandlersRegistrations = make(map[reflect.Type]interface{})
handler := &RequestTestHandler{}
errRegister := RegisterRequestHandler[*RequestTest, *ResponseTest](handler)
if errRegister != nil {
b.Error(errRegister)
}
b.ResetTimer()
ctx := context.Background()
for i := 0; i < b.N; i++ {
_, err := Send[*RequestTest, *ResponseTest](ctx, &RequestTest{Data: "test"})
if err != nil {
b.Error(err)
}
}
}
func Benchmark_Publish(b *testing.B) {
// because benchmark method will run multiple times, we need to reset the notification handlers registry before each run.
notificationHandlersRegistrations = make(map[reflect.Type][]interface{})
handler := &NotificationTestHandler{}
handler2 := &NotificationTestHandler4{}
errRegister := RegisterNotificationHandlers[*NotificationTest](handler, handler2)
if errRegister != nil {
b.Error(errRegister)
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
err := Publish[*NotificationTest](context.Background(), &NotificationTest{Data: "test"})
if err != nil {
b.Error(err)
}
}
}