-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestdata_test.go
More file actions
81 lines (62 loc) · 1.91 KB
/
testdata_test.go
File metadata and controls
81 lines (62 loc) · 1.91 KB
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
// Valid and invalid testdata for all tests to use for convenience.
//
//nolint:gochecknoglobals // allow globals in tests. The purpose of this file is to provide a wide range of valid
package message_test
import (
"context"
"time"
"github.com/HTechHQ/message"
)
const (
wantedSubscribers = 1000
wantedPublishers = 1000
sharedTopicName = "shared.topic.name"
)
var (
ctx = context.Background()
validEmptyHandlerFunc = func(ctx context.Context, e simpleEvent) {}
ctxKey = struct{}{}
ctxVal = "some-value"
)
type (
simpleEvent struct{}
eventOrTopicStructEvent struct{}
simpleStruct struct{}
validSliceEvent []simpleStruct
newUserRegisteredEvent struct {
Username string `json:"userName,omitempty"`
Email string `json:"email,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
Settings []string `json:"settings,omitempty"`
}
newUserAuditLogEvent struct {
Username string `json:"userName,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
Settings []string `json:"settings,omitempty"`
}
newUserWelcomeEmailEvent struct {
Username string `json:"userName,omitempty"`
Email string `json:"email,omitempty"`
}
shareNothingWithEvents struct {
Name string `json:"name,omitempty"`
}
)
func (e eventOrTopicStructEvent) EventOrTopicName() message.EventOrTopicName {
return "eventOrTopicStructEvent.EventOrTopicName"
}
func (e validSliceEvent) EventOrTopicName() message.EventOrTopicName {
return "validSliceEvent.EventOrTopicName"
}
func (e newUserRegisteredEvent) EventOrTopicName() message.EventOrTopicName {
return sharedTopicName
}
func (e newUserAuditLogEvent) EventOrTopicName() message.EventOrTopicName {
return sharedTopicName
}
func (e newUserWelcomeEmailEvent) EventOrTopicName() message.EventOrTopicName {
return sharedTopicName
}
func (e shareNothingWithEvents) EventOrTopicName() message.EventOrTopicName {
return sharedTopicName
}