-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_test.go
208 lines (184 loc) · 5.01 KB
/
example_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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package rabbitmq
import (
"context"
"fmt"
"time"
"github.com/golang-queue/queue"
"github.com/golang-queue/queue/core"
)
/*
Example_direct_exchange demonstrates how to use RabbitMQ with a direct exchange.
This example creates two workers (w1, w2) that both listen to the same queue and exchange,
and a producer that sends multiple messages to the queue. The workers process the messages
in a round-robin fashion.
Steps:
1. Create a mock message to be sent.
2. Initialize worker w1 with a direct exchange and queue, and define its processing function.
3. Start a queue (q1) with worker w1.
4. Initialize worker w2 with the same direct exchange and queue, and define its processing function.
5. Start a queue (q2) with worker w2.
6. Create a producer worker (w) with the same exchange and routing key.
7. Start a queue (q) with the producer worker.
8. Send the mock message to the queue multiple times.
9. Wait for processing, then release all queues.
Expected Output:
- The two workers alternately print the received message.
Unordered Output:
worker01 get data: foo
worker02 get data: foo
worker01 get data: foo
worker02 get data: foo
*/
func Example_direct_exchange() {
m := mockMessage{
Message: "foo",
}
w1 := NewWorker(
WithQueue("direct_queue"),
WithExchangeName("direct_exchange"),
WithExchangeType("direct"),
WithRoutingKey("direct_exchange"),
WithRunFunc(func(ctx context.Context, m core.TaskMessage) error {
fmt.Println("worker01 get data:", string(m.Payload()))
time.Sleep(100 * time.Millisecond)
return nil
}),
)
q1, err := queue.NewQueue(
queue.WithWorker(w1),
)
if err != nil {
w1.opts.logger.Fatal(err)
}
q1.Start()
w2 := NewWorker(
WithQueue("direct_queue"),
WithExchangeName("direct_exchange"),
WithExchangeType("direct"),
WithRoutingKey("direct_exchange"),
WithRunFunc(func(ctx context.Context, m core.TaskMessage) error {
fmt.Println("worker02 get data:", string(m.Payload()))
time.Sleep(100 * time.Millisecond)
return nil
}),
)
q2, err := queue.NewQueue(
queue.WithWorker(w2),
)
if err != nil {
w2.opts.logger.Fatal(err)
}
q2.Start()
w := NewWorker(
WithExchangeName("direct_exchange"),
WithExchangeType("direct"),
WithRoutingKey("direct_exchange"),
)
q, err := queue.NewQueue(
queue.WithWorker(w),
)
if err != nil {
w.opts.logger.Fatal(err)
}
time.Sleep(200 * time.Millisecond)
if err := q.Queue(m); err != nil {
w.opts.logger.Fatal(err)
}
if err := q.Queue(m); err != nil {
w.opts.logger.Fatal(err)
}
if err := q.Queue(m); err != nil {
w.opts.logger.Fatal(err)
}
if err := q.Queue(m); err != nil {
w.opts.logger.Fatal(err)
}
time.Sleep(200 * time.Millisecond)
q.Release()
q1.Release()
q2.Release()
// Unordered Output:
// worker01 get data: foo
// worker02 get data: foo
// worker01 get data: foo
// worker02 get data: foo
}
/*
Example_fanout_exchange demonstrates how to use RabbitMQ with a fanout exchange.
This example creates two workers (w1, w2) each listening to a different queue bound to the same
fanout exchange, and a producer that sends a message to the exchange. Both workers receive and
process the same message.
Steps:
1. Create a mock message to be sent.
2. Initialize worker w1 with a unique queue and the fanout exchange, and define its processing function.
3. Start a queue (q1) with worker w1.
4. Initialize worker w2 with a different queue and the same fanout exchange, and define its processing function.
5. Start a queue (q2) with worker w2.
6. Create a producer worker (w) with the same fanout exchange.
7. Start a queue (q) with the producer worker.
8. Send the mock message to the exchange.
9. Wait for processing, then release all queues.
Expected Output:
- Both workers print the received message.
Unordered Output:
worker01 get data: foo
worker02 get data: foo
*/
func Example_fanout_exchange() {
m := mockMessage{
Message: "foo",
}
w1 := NewWorker(
WithQueue("fanout_queue_1"),
WithExchangeName("fanout_exchange"),
WithExchangeType("fanout"),
WithRunFunc(func(ctx context.Context, m core.TaskMessage) error {
fmt.Println("worker01 get data:", string(m.Payload()))
return nil
}),
)
q1, err := queue.NewQueue(
queue.WithWorker(w1),
)
if err != nil {
w1.opts.logger.Fatal(err)
}
q1.Start()
w2 := NewWorker(
WithQueue("fanout_queue_2"),
WithExchangeName("fanout_exchange"),
WithExchangeType("fanout"),
WithRunFunc(func(ctx context.Context, m core.TaskMessage) error {
fmt.Println("worker02 get data:", string(m.Payload()))
return nil
}),
)
q2, err := queue.NewQueue(
queue.WithWorker(w2),
)
if err != nil {
w2.opts.logger.Fatal(err)
}
q2.Start()
w := NewWorker(
WithExchangeName("fanout_exchange"),
WithExchangeType("fanout"),
)
q, err := queue.NewQueue(
queue.WithWorker(w),
)
if err != nil {
w.opts.logger.Fatal(err)
}
time.Sleep(200 * time.Millisecond)
if err := q.Queue(m); err != nil {
w.opts.logger.Fatal(err)
}
time.Sleep(200 * time.Millisecond)
q.Release()
q1.Release()
q2.Release()
// Unordered Output:
// worker01 get data: foo
// worker02 get data: foo
}