-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopology_int_test.go
103 lines (97 loc) · 2.29 KB
/
topology_int_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
//go:build rabbit
package rmq_test
import (
"context"
"fmt"
"log/slog"
"os"
"testing"
"time"
"github.com/danlock/rmq"
amqp "github.com/rabbitmq/amqp091-go"
)
func TestDeclareTopology(t *testing.T) {
ctx := context.Background()
baseCfg := rmq.Args{Log: slog.Log}
rmqConn := rmq.ConnectWithAMQPConfig(ctx, rmq.ConnectArgs{Args: baseCfg}, os.Getenv("TEST_AMQP_URI"), amqp.Config{})
suffix := fmt.Sprintf("%s|%p", time.Now(), t)
baseTopology := rmq.Topology{
Exchanges: []rmq.Exchange{{
Name: "temporary",
Kind: amqp.ExchangeTopic,
AutoDelete: true,
}, {
Name: "ephemeral",
Kind: amqp.ExchangeTopic,
AutoDelete: true,
}, {
Name: "ephemeral",
Kind: amqp.ExchangeTopic,
AutoDelete: true,
Passive: true,
}},
ExchangeBindings: []rmq.ExchangeBinding{{
Destination: "temporary",
RoutingKey: "dopeopleevenuseexchangebindings",
Source: "ephemeral",
}},
Queues: []rmq.Queue{{
// DeclareTopology skips queues without Names. Those are for Consumers instead
}, {
Name: "transient" + suffix,
Durable: true,
Exclusive: true,
Args: amqp.Table{amqp.QueueTTLArg: time.Minute.Milliseconds()},
}, {
Name: "transient" + suffix,
Durable: true,
Exclusive: true,
Passive: true,
Args: amqp.Table{amqp.QueueTTLArg: time.Minute.Milliseconds()},
}},
QueueBindings: []rmq.QueueBinding{{
QueueName: "transient" + suffix,
ExchangeName: "temporary",
RoutingKey: "route66",
}},
}
amqpConn, err := rmqConn.CurrentConnection(ctx)
if err != nil {
t.Fatalf("failed to CurrentConnection %v", err)
}
tests := []struct {
name string
timeout time.Duration
topology rmq.Topology
wantErr bool
}{
{
"success",
time.Minute,
baseTopology,
false,
},
{
"empty success",
time.Minute,
rmq.Topology{},
false,
},
{
"failure due to timeout",
time.Millisecond,
baseTopology,
true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ctx, cancel := context.WithTimeout(ctx, tt.timeout)
defer cancel()
tt.topology.Log = slog.Log
if err := rmq.DeclareTopology(ctx, amqpConn, tt.topology); (err != nil) != tt.wantErr {
t.Errorf("DeclareTopology() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}