-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathAmqpConsumerTest.php
203 lines (163 loc) · 5.81 KB
/
AmqpConsumerTest.php
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
<?php
namespace Enqueue\AmqpLib\Tests;
use Enqueue\AmqpLib\AmqpConsumer;
use Enqueue\AmqpLib\AmqpContext;
use Enqueue\NoEffect\NullMessage;
use Enqueue\Test\ClassExtensionTrait;
use Enqueue\Test\WriteAttributeTrait;
use Interop\Amqp\Impl\AmqpMessage;
use Interop\Amqp\Impl\AmqpQueue;
use Interop\Queue\Consumer;
use Interop\Queue\Exception\InvalidMessageException;
use PhpAmqpLib\Channel\AMQPChannel;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class AmqpConsumerTest extends TestCase
{
use ClassExtensionTrait;
use WriteAttributeTrait;
public function testShouldImplementConsumerInterface()
{
$this->assertClassImplements(Consumer::class, AmqpConsumer::class);
}
public function testCouldBeConstructedWithContextAndQueueAsArguments()
{
self::assertInstanceOf(AmqpConsumer::class,
new AmqpConsumer(
$this->createContextMock(),
new AmqpQueue('aName')
)
);
}
public function testShouldReturnQueue()
{
$queue = new AmqpQueue('aName');
$consumer = new AmqpConsumer($this->createContextMock(), $queue);
$this->assertSame($queue, $consumer->getQueue());
}
public function testOnAcknowledgeShouldThrowExceptionIfNotAmqpMessage()
{
$consumer = new AmqpConsumer($this->createContextMock(), new AmqpQueue('aName'));
$this->expectException(InvalidMessageException::class);
$this->expectExceptionMessage('The message must be an instance of Interop\Amqp\AmqpMessage but');
$consumer->acknowledge(new NullMessage());
}
public function testOnRejectShouldThrowExceptionIfNotAmqpMessage()
{
$consumer = new AmqpConsumer($this->createContextMock(), new AmqpQueue('aName'));
$this->expectException(InvalidMessageException::class);
$this->expectExceptionMessage('The message must be an instance of Interop\Amqp\AmqpMessage but');
$consumer->reject(new NullMessage());
}
public function testOnAcknowledgeShouldAcknowledgeMessage()
{
$channel = $this->createLibChannelMock();
$channel
->expects($this->once())
->method('basic_ack')
->with(167)
;
$context = $this->createContextMock();
$context
->expects($this->once())
->method('getLibChannel')
->willReturn($channel)
;
$consumer = new AmqpConsumer($context, new AmqpQueue('aName'));
$message = new AmqpMessage();
$message->setDeliveryTag(167);
$consumer->acknowledge($message);
}
public function testOnRejectShouldRejectMessage()
{
$channel = $this->createLibChannelMock();
$channel
->expects($this->once())
->method('basic_reject')
->with(125, $this->isTrue())
;
$context = $this->createContextMock();
$context
->expects($this->once())
->method('getLibChannel')
->willReturn($channel)
;
$consumer = new AmqpConsumer($context, new AmqpQueue('aName'));
$message = new AmqpMessage();
$message->setDeliveryTag(125);
$consumer->reject($message, true);
}
public function testShouldReturnMessageOnReceiveNoWait()
{
$libMessage = new \PhpAmqpLib\Message\AMQPMessage('body');
$libMessage->delivery_info['delivery_tag'] = 'delivery-tag';
$libMessage->delivery_info['routing_key'] = 'routing-key';
$libMessage->delivery_info['redelivered'] = true;
$libMessage->delivery_info['routing_key'] = 'routing-key';
$message = new AmqpMessage();
$channel = $this->createLibChannelMock();
$channel
->expects($this->once())
->method('basic_get')
->willReturn($libMessage)
;
$context = $this->createContextMock();
$context
->expects($this->once())
->method('getLibChannel')
->willReturn($channel)
;
$context
->expects($this->once())
->method('convertMessage')
->with($this->identicalTo($libMessage))
->willReturn($message)
;
$consumer = new AmqpConsumer($context, new AmqpQueue('aName'));
$receivedMessage = $consumer->receiveNoWait();
$this->assertSame($message, $receivedMessage);
}
public function testShouldReturnMessageOnReceiveWithReceiveMethodBasicGet()
{
$libMessage = new \PhpAmqpLib\Message\AMQPMessage('body');
$libMessage->delivery_info['delivery_tag'] = 'delivery-tag';
$libMessage->delivery_info['routing_key'] = 'routing-key';
$libMessage->delivery_info['redelivered'] = true;
$message = new AmqpMessage();
$channel = $this->createLibChannelMock();
$channel
->expects($this->once())
->method('basic_get')
->willReturn($libMessage)
;
$context = $this->createContextMock();
$context
->expects($this->once())
->method('getLibChannel')
->willReturn($channel)
;
$context
->expects($this->once())
->method('convertMessage')
->with($this->identicalTo($libMessage))
->willReturn($message)
;
$consumer = new AmqpConsumer($context, new AmqpQueue('aName'));
$receivedMessage = $consumer->receive();
$this->assertSame($message, $receivedMessage);
}
/**
* @return MockObject|AmqpContext
*/
public function createContextMock()
{
return $this->createMock(AmqpContext::class);
}
/**
* @return MockObject|AMQPChannel
*/
public function createLibChannelMock()
{
return $this->createMock(AMQPChannel::class);
}
}