-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmappers_test.go
169 lines (134 loc) · 3.67 KB
/
mappers_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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package rcgo
import (
"encoding/json"
"testing"
"time"
amqp "github.com/rabbitmq/amqp091-go"
"github.com/stretchr/testify/assert"
)
func Test_mapToAmqp_Cmd(t *testing.T) {
const (
id = "1"
sourceAppName = "test"
msgName = "anyCmd"
typ = MsgTypeCmd
)
data := []byte("")
got, err := mapToAmqp(id, sourceAppName, msgName, typ, data, Options{})
assert.Nil(t, err)
now := time.Now()
assert.InEpsilon(t, got.Timestamp.Unix(), now.Unix(), 0.01)
// Clean timestamp after assert it to simplify
got.Timestamp = now
body, _ := json.Marshal(&cmdBody{CmdId: id, Name: msgName, Data: data})
want := &amqp.Publishing{
Headers: map[string]interface{}{
"sourceApplication": sourceAppName,
},
ContentType: "application/json",
ContentEncoding: "UTF-8",
MessageId: id,
Timestamp: now,
AppId: sourceAppName,
Body: body,
}
assert.Equal(t, want, got)
}
func Test_mapToAmqp_Event(t *testing.T) {
const (
id = "1"
sourceAppName = "test"
msgName = "anyEvent"
typ = MsgTypeEvent
)
data := []byte("")
got, err := mapToAmqp(id, sourceAppName, msgName, typ, data, Options{})
assert.Nil(t, err)
now := time.Now()
assert.InEpsilon(t, got.Timestamp.Unix(), now.Unix(), 0.01)
// Clean timestamp after assert it to simplify
got.Timestamp = now
body, _ := json.Marshal(&eventBody{Id: id, Name: msgName, Data: data})
want := &amqp.Publishing{
Headers: map[string]interface{}{
"sourceApplication": sourceAppName,
},
ContentType: "application/json",
ContentEncoding: "UTF-8",
MessageId: id,
Timestamp: now,
AppId: sourceAppName,
Body: body,
}
assert.Equal(t, want, got)
}
func Test_mapToAmqp_Query(t *testing.T) {
const (
id = "1"
sourceAppName = "test"
msgName = "anyQuery"
typ = MsgTypeQuery
)
data := []byte("")
got, err := mapToAmqp(id, sourceAppName, msgName, typ, data, Options{})
assert.Nil(t, err)
now := time.Now()
assert.InEpsilon(t, got.Timestamp.Unix(), now.Unix(), 0.01)
// Clean timestamp after assert it to simplify
got.Timestamp = now
body, _ := json.Marshal(&queryBody{Resource: msgName, Data: data})
want := &amqp.Publishing{
Headers: map[string]interface{}{
"sourceApplication": sourceAppName,
correlationIDHeader: id,
serveQueryIDHeader: msgName,
replyIDHeader: id,
},
ContentType: "application/json",
ContentEncoding: "UTF-8",
MessageId: id,
Timestamp: now,
AppId: sourceAppName,
ReplyTo: sourceAppName,
CorrelationId: id,
Body: body,
}
assert.Equal(t, want, got)
}
func Test_mapToAmqp_OptionsSetted(t *testing.T) {
const (
id = "1"
sourceAppName = "test"
msgName = "anyQuery"
typ = MsgTypeQuery
)
data := []byte("")
opts := Options{
Expiration: "10000",
}
got, err := mapToAmqp(id, sourceAppName, msgName, typ, data, opts)
assert.Nil(t, err)
now := time.Now()
assert.InEpsilon(t, got.Timestamp.Unix(), now.Unix(), 0.01)
// Clean timestamp after assert it to simplify
got.Timestamp = now
body, _ := json.Marshal(&queryBody{Resource: msgName, Data: data})
want := &amqp.Publishing{
Headers: map[string]interface{}{
"sourceApplication": sourceAppName,
correlationIDHeader: id,
serveQueryIDHeader: msgName,
replyIDHeader: id,
},
ContentType: "application/json",
ContentEncoding: "UTF-8",
MessageId: id,
Timestamp: now,
AppId: sourceAppName,
ReplyTo: sourceAppName,
CorrelationId: id,
Body: body,
Expiration: "10000",
}
assert.Equal(t, want, got)
}