Skip to content

Commit 7a992f8

Browse files
committed
Add PublishWithRoutingKey func to Publisher.
1 parent bede840 commit 7a992f8

File tree

2 files changed

+106
-13
lines changed

2 files changed

+106
-13
lines changed

publisher.go

+17-7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ type PublisherOpt func(*Publisher)
1717
type publishMaybeErr struct {
1818
pub chan amqp.Publishing
1919
err chan error
20+
key string
2021
}
2122

2223
// Publisher hold definition for AMQP publishing
@@ -43,14 +44,15 @@ func (p *Publisher) Write(b []byte) (int, error) {
4344
return len(b), p.Publish(pub)
4445
}
4546

46-
// Publish used to publish custom amqp.Publishing
47+
// PublishWithRoutingKey used to publish custom amqp.Publishing and routing key
4748
//
4849
// WARNING: this is blocking call, it will not return until connection is
4950
// available. The only way to stop it is to use Cancel() method.
50-
func (p *Publisher) Publish(pub amqp.Publishing) error {
51+
func (p *Publisher) PublishWithRoutingKey(pub amqp.Publishing, key string) error {
5152
reqRepl := publishMaybeErr{
5253
pub: make(chan amqp.Publishing, 2),
5354
err: make(chan error, 2),
55+
key: key,
5456
}
5557

5658
reqRepl.pub <- pub
@@ -66,6 +68,14 @@ func (p *Publisher) Publish(pub amqp.Publishing) error {
6668
return err
6769
}
6870

71+
// Publish used to publish custom amqp.Publishing
72+
//
73+
// WARNING: this is blocking call, it will not return until connection is
74+
// available. The only way to stop it is to use Cancel() method.
75+
func (p *Publisher) Publish(pub amqp.Publishing) error {
76+
return p.PublishWithRoutingKey(pub, p.key)
77+
}
78+
6979
// Cancel this publisher
7080
func (p *Publisher) Cancel() {
7181
p.m.Lock()
@@ -93,11 +103,11 @@ func (p *Publisher) serve(client mqDeleter, ch mqChannel) {
93103
msg := <-envelop.pub
94104
close(envelop.pub)
95105
if err := ch.Publish(
96-
p.exchange, // exchange
97-
p.key, // key
98-
false, // mandatory
99-
false, // immediate
100-
msg, // msg amqp.Publishing
106+
p.exchange, // exchange
107+
envelop.key, // key
108+
false, // mandatory
109+
false, // immediate
110+
msg, // msg amqp.Publishing
101111
); err != nil {
102112
envelop.err <- err
103113
}

publisher_test.go

+89-6
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ func TestPublisher_Cancel_willNotBlock(t *testing.T) {
6666

6767
func TestPublisher_serve(t *testing.T) {
6868
var (
69-
runSync = make(chan bool)
70-
deleted bool
71-
closed bool
72-
notifyClose bool
73-
testMsg *amqp.Publishing
69+
runSync = make(chan bool)
70+
deleted bool
71+
closed bool
72+
notifyClose bool
73+
exchangeName string
74+
routingKey string
75+
testMsg *amqp.Publishing
7476
)
7577

7678
p := newTestPublisher()
@@ -90,6 +92,8 @@ func TestPublisher_serve(t *testing.T) {
9092
return errChan
9193
},
9294
_Publish: func(ex string, key string, mandatory bool, immediate bool, msg amqp.Publishing) error {
95+
exchangeName = ex
96+
routingKey = key
9397
testMsg = &msg
9498
return nil
9599
},
@@ -118,6 +122,85 @@ func TestPublisher_serve(t *testing.T) {
118122
t.Error("should close channel")
119123
}
120124

125+
if exchangeName != "exchange.name" {
126+
t.Error("should set correct routing key")
127+
}
128+
129+
if routingKey != "routing.key" {
130+
t.Error("should set correct routing key")
131+
}
132+
133+
if bytes.Compare(testMsg.Body, []byte("test1")) != 0 {
134+
t.Error("should publish correct messaged")
135+
}
136+
}
137+
138+
func TestPublisher_serve_customRoutingKey(t *testing.T) {
139+
var (
140+
runSync = make(chan bool)
141+
deleted bool
142+
closed bool
143+
notifyClose bool
144+
exchangeName string
145+
routingKey string
146+
testMsg *amqp.Publishing
147+
)
148+
149+
p := newTestPublisher()
150+
cli := &mqDeleterTest{
151+
_deletePublisher: func(*Publisher) {
152+
deleted = true
153+
},
154+
}
155+
156+
ch1 := &mqChannelTest{
157+
_Close: func() error {
158+
closed = true
159+
return nil
160+
},
161+
_NotifyClose: func(errChan chan *amqp.Error) chan *amqp.Error {
162+
notifyClose = true
163+
return errChan
164+
},
165+
_Publish: func(ex string, key string, mandatory bool, immediate bool, msg amqp.Publishing) error {
166+
exchangeName = ex
167+
routingKey = key
168+
testMsg = &msg
169+
return nil
170+
},
171+
}
172+
173+
go func() {
174+
<-runSync
175+
p.serve(cli, ch1)
176+
runSync <- true
177+
}()
178+
179+
runSync <- true
180+
p.PublishWithRoutingKey(amqp.Publishing{Body: []byte("test1")}, "my.routing.key")
181+
p.Cancel()
182+
<-runSync
183+
184+
if !notifyClose {
185+
t.Error("should register notifyClose")
186+
}
187+
188+
if !deleted {
189+
t.Error("should delete publisher")
190+
}
191+
192+
if !closed {
193+
t.Error("should close channel")
194+
}
195+
196+
if exchangeName != "exchange.name" {
197+
t.Error("should set correct routing key")
198+
}
199+
200+
if routingKey != "my.routing.key" {
201+
t.Error("should set correct routing key")
202+
}
203+
121204
if bytes.Compare(testMsg.Body, []byte("test1")) != 0 {
122205
t.Error("should publish correct messaged")
123206
}
@@ -270,5 +353,5 @@ func TestPublishingTemplate(t *testing.T) {
270353
}
271354

272355
func newTestPublisher(opts ...PublisherOpt) *Publisher {
273-
return NewPublisher("", "", opts...)
356+
return NewPublisher("exchange.name", "routing.key", opts...)
274357
}

0 commit comments

Comments
 (0)