forked from Azure/azure-service-bus-go
-
Notifications
You must be signed in to change notification settings - Fork 2
/
duplicate_detection_example_test.go
79 lines (65 loc) · 1.55 KB
/
duplicate_detection_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
package servicebus_test
import (
"context"
"fmt"
"os"
"time"
"github.com/Azure/azure-amqp-common-go/v3/uuid"
"github.com/Azure/azure-service-bus-go"
)
func Example_duplicateMessageDetection() {
ctx, cancel := context.WithTimeout(context.Background(), 40*time.Second)
defer cancel()
connStr := os.Getenv("SERVICEBUS_CONNECTION_STRING")
if connStr == "" {
fmt.Println("FATAL: expected environment variable SERVICEBUS_CONNECTION_STRING not set")
return
}
// Create a client to communicate with a Service Bus Namespace.
ns, err := servicebus.NewNamespace(servicebus.NamespaceWithConnectionString(connStr))
if err != nil {
fmt.Println(err)
return
}
window := 30 * time.Second
qm := ns.NewQueueManager()
qe, err := ensureQueue(ctx, qm, "DuplicateDetectionExample", servicebus.QueueEntityWithDuplicateDetection(&window))
if err != nil {
fmt.Println(err)
return
}
q, err := ns.NewQueue(qe.Name)
if err != nil {
fmt.Println(err)
return
}
defer func() {
_ = q.Close(ctx)
}()
guid, err := uuid.NewV4()
if err != nil {
fmt.Println(err)
return
}
msg := servicebus.NewMessageFromString("foo")
msg.ID = guid.String()
// send the message twice with the same ID
for i := 0; i < 2; i++ {
if err := q.Send(ctx, msg); err != nil {
fmt.Println(err)
return
}
}
// there should be only 1 message received from the queue
go func() {
if err := q.Receive(ctx, MessagePrinter{}); err != nil {
if err.Error() != "context canceled" {
fmt.Println(err)
return
}
}
}()
time.Sleep(2 * time.Second)
// Output:
// foo
}