-
Notifications
You must be signed in to change notification settings - Fork 436
Expand file tree
/
Copy pathRdKafkaContextTest.php
More file actions
124 lines (92 loc) · 3.59 KB
/
RdKafkaContextTest.php
File metadata and controls
124 lines (92 loc) · 3.59 KB
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
<?php
namespace Enqueue\RdKafka\Tests;
use Enqueue\Null\NullQueue;
use Enqueue\RdKafka\JsonSerializer;
use Enqueue\RdKafka\RdKafkaContext;
use Enqueue\RdKafka\Serializer;
use Interop\Queue\Exception\InvalidDestinationException;
use Interop\Queue\Exception\TemporaryQueueNotSupportedException;
use PHPUnit\Framework\TestCase;
class RdKafkaContextTest extends TestCase
{
public function testThrowNotImplementedOnCreateTemporaryQueue()
{
$context = new RdKafkaContext([]);
$this->expectException(TemporaryQueueNotSupportedException::class);
$context->createTemporaryQueue();
}
public function testThrowInvalidDestinationIfInvalidDestinationGivenOnCreateConsumer()
{
$context = new RdKafkaContext([]);
$this->expectException(InvalidDestinationException::class);
$context->createConsumer(new NullQueue('aQueue'));
}
public function testShouldSetJsonSerializerInConstructor()
{
$context = new RdKafkaContext([]);
$this->assertInstanceOf(JsonSerializer::class, $context->getSerializer());
}
public function testShouldUseStringSerializerClassFromConfig()
{
$mockSerializerClass = get_class($this->createMock(Serializer::class));
$context = new RdKafkaContext([
'serializer' => $mockSerializerClass,
]);
$this->assertInstanceOf($mockSerializerClass, $context->getSerializer());
}
public function testShouldUseJsonSerializer()
{
$context = new RdKafkaContext([]);
$this->assertInstanceOf(JsonSerializer::class, $context->getSerializer());
}
public function testShouldThrowExceptionOnInvalidSerializerConfig()
{
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('Invalid serializer configuration');
new RdKafkaContext([
'serializer' => 123,
]);
}
public function testShouldAllowGetPreviouslySetSerializer()
{
$context = new RdKafkaContext([]);
$expectedSerializer = $this->createMock(Serializer::class);
$context->setSerializer($expectedSerializer);
$this->assertSame($expectedSerializer, $context->getSerializer());
}
public function testShouldInjectItsSerializerToProducer()
{
$context = new RdKafkaContext([]);
$producer = $context->createProducer();
$this->assertSame($context->getSerializer(), $producer->getSerializer());
}
public function testShouldInjectItsSerializerToConsumer()
{
$context = new RdKafkaContext(['global' => [
'group.id' => uniqid('', true),
]]);
$producer = $context->createConsumer($context->createQueue('aQueue'));
$this->assertSame($context->getSerializer(), $producer->getSerializer());
}
public function testShouldNotCreateConsumerTwice()
{
$context = new RdKafkaContext(['global' => [
'group.id' => uniqid('', true),
]]);
$queue = $context->createQueue('aQueue');
$consumer = $context->createConsumer($queue);
$consumer2 = $context->createConsumer($queue);
$this->assertSame($consumer, $consumer2);
}
public function testShouldCreateTwoConsumers()
{
$context = new RdKafkaContext(['global' => [
'group.id' => uniqid('', true),
]]);
$queueA = $context->createQueue('aQueue');
$queueB = $context->createQueue('bQueue');
$consumer = $context->createConsumer($queueA);
$consumer2 = $context->createConsumer($queueB);
$this->assertNotSame($consumer, $consumer2);
}
}