forked from apache/pulsar-client-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProducerTest.cc
More file actions
755 lines (594 loc) · 29 KB
/
ProducerTest.cc
File metadata and controls
755 lines (594 loc) · 29 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include <gtest/gtest.h>
#include <pulsar/Client.h>
#include <thread>
#include "HttpHelper.h"
#include "PulsarFriend.h"
#include "lib/Future.h"
#include "lib/Latch.h"
#include "lib/LogUtils.h"
#include "lib/ProducerImpl.h"
#include "lib/Utils.h"
DECLARE_LOG_OBJECT()
using namespace pulsar;
static const std::string serviceUrl = "pulsar://localhost:6650";
static const std::string adminUrl = "http://localhost:8080/";
// See the `maxMessageSize` config in test-conf/standalone-ssl.conf
static constexpr size_t maxMessageSize = 1024000;
TEST(ProducerTest, producerNotInitialized) {
Producer producer;
Message msg = MessageBuilder().setContent("test").build();
ASSERT_EQ(ResultProducerNotInitialized, producer.send(msg));
Promise<Result, MessageId> promise;
producer.sendAsync(msg, WaitForCallbackValue<MessageId>(promise));
MessageId mi;
ASSERT_EQ(ResultProducerNotInitialized, promise.getFuture().get(mi));
ASSERT_EQ(ResultProducerNotInitialized, producer.close());
Promise<bool, Result> promiseClose;
producer.closeAsync(WaitForCallback(promiseClose));
Result result;
promiseClose.getFuture().get(result);
ASSERT_EQ(ResultProducerNotInitialized, result);
ASSERT_TRUE(producer.getTopic().empty());
}
TEST(ProducerTest, exactlyOnceWithProducerNameSpecified) {
Client client(serviceUrl);
std::string topicName = "persistent://public/default/exactlyOnceWithProducerNameSpecified";
Producer producer1;
ProducerConfiguration producerConfiguration1;
producerConfiguration1.setProducerName("p-name-1");
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration1, producer1));
Producer producer2;
ProducerConfiguration producerConfiguration2;
producerConfiguration2.setProducerName("p-name-2");
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration2, producer2));
Producer producer3;
Result result = client.createProducer(topicName, producerConfiguration2, producer3);
ASSERT_EQ(ResultProducerBusy, result);
}
TEST(ProducerTest, testSynchronouslySend) {
Client client(serviceUrl);
const std::string topic = "ProducerTestSynchronouslySend";
Consumer consumer;
ASSERT_EQ(ResultOk, client.subscribe(topic, "sub-name", consumer));
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topic, producer));
MessageId messageId;
ASSERT_EQ(ResultOk, producer.send(MessageBuilder().setContent("hello").build(), messageId));
LOG_INFO("Send message to " << messageId);
Message receivedMessage;
ASSERT_EQ(ResultOk, consumer.receive(receivedMessage, 3000));
LOG_INFO("Received message from " << receivedMessage.getMessageId());
ASSERT_EQ(receivedMessage.getMessageId(), messageId);
ASSERT_EQ(ResultOk, consumer.acknowledge(receivedMessage));
client.close();
}
TEST(ProducerTest, testIsConnected) {
Client client(serviceUrl);
const std::string nonPartitionedTopic =
"testProducerIsConnectedNonPartitioned-" + std::to_string(time(nullptr));
const std::string partitionedTopic =
"testProducerIsConnectedPartitioned-" + std::to_string(time(nullptr));
Producer producer;
ASSERT_FALSE(producer.isConnected());
// ProducerImpl
ASSERT_EQ(ResultOk, client.createProducer(nonPartitionedTopic, producer));
ASSERT_TRUE(producer.isConnected());
ASSERT_EQ(ResultOk, producer.close());
ASSERT_FALSE(producer.isConnected());
int res = makePutRequest(
adminUrl + "admin/v2/persistent/public/default/" + partitionedTopic + "/partitions", "2");
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
// PartitionedProducerImpl
ASSERT_EQ(ResultOk, client.createProducer(partitionedTopic, producer));
ASSERT_TRUE(producer.isConnected());
ASSERT_EQ(ResultOk, producer.close());
ASSERT_FALSE(producer.isConnected());
client.close();
}
TEST(ProducerTest, testSendAsyncAfterCloseAsyncWithLazyProducers) {
Client client(serviceUrl);
const std::string partitionedTopic =
"testProducerIsConnectedPartitioned-" + std::to_string(time(nullptr));
int res = makePutRequest(
adminUrl + "admin/v2/persistent/public/default/" + partitionedTopic + "/partitions", "10");
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
ProducerConfiguration producerConfiguration;
producerConfiguration.setLazyStartPartitionedProducers(true);
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(partitionedTopic, producerConfiguration, producer));
Message msg = MessageBuilder().setContent("test").build();
Promise<bool, Result> promiseClose;
producer.closeAsync(WaitForCallback(promiseClose));
Promise<Result, MessageId> promise;
producer.sendAsync(msg, WaitForCallbackValue<MessageId>(promise));
MessageId mi;
ASSERT_EQ(ResultAlreadyClosed, promise.getFuture().get(mi));
Result result;
promiseClose.getFuture().get(result);
ASSERT_EQ(ResultOk, result);
}
TEST(ProducerTest, testGetNumOfChunks) {
ASSERT_EQ(ProducerImpl::getNumOfChunks(11, 5), 3);
ASSERT_EQ(ProducerImpl::getNumOfChunks(10, 5), 2);
ASSERT_EQ(ProducerImpl::getNumOfChunks(8, 5), 2);
ASSERT_EQ(ProducerImpl::getNumOfChunks(4, 5), 1);
ASSERT_EQ(ProducerImpl::getNumOfChunks(1, 0), 1);
}
TEST(ProducerTest, testBacklogQuotasExceeded) {
std::string ns = "public/test-backlog-quotas";
std::string topic = ns + "/testBacklogQuotasExceeded" + std::to_string(time(nullptr));
int res = makePutRequest(adminUrl + "admin/v2/persistent/" + topic + "/partitions", "5");
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
LOG_INFO("Created topic " << topic << " with 5 partitions");
auto setBacklogPolicy = [&ns](const std::string& policy, int limitSize) {
const auto body = R"({"policy":")" + policy + R"(","limitSize":)" + std::to_string(limitSize) + "}";
int res = makePostRequest(adminUrl + "admin/v2/namespaces/" + ns + "/backlogQuota", body);
LOG_INFO(res << " | Change the backlog policy to: " << body);
ASSERT_TRUE(res == 204 || res == 409);
std::this_thread::sleep_for(std::chrono::seconds(1));
};
Client client(serviceUrl);
// Create a topic with backlog size that is greater than 1024
Consumer consumer;
ASSERT_EQ(ResultOk, client.subscribe(topic, "sub", consumer)); // create a cursor
Producer producer;
const auto partition = topic + "-partition-0";
ASSERT_EQ(ResultOk, client.createProducer(partition, producer));
ASSERT_EQ(ResultOk, producer.send(MessageBuilder().setContent(std::string(1024L, 'a')).build()));
ASSERT_EQ(ResultOk, producer.close());
setBacklogPolicy("producer_request_hold", 1024);
ASSERT_EQ(ResultProducerBlockedQuotaExceededError, client.createProducer(topic, producer));
ASSERT_EQ(ResultProducerBlockedQuotaExceededError, client.createProducer(partition, producer));
setBacklogPolicy("producer_exception", 1024);
ASSERT_EQ(ResultProducerBlockedQuotaExceededException, client.createProducer(topic, producer));
ASSERT_EQ(ResultProducerBlockedQuotaExceededException, client.createProducer(partition, producer));
setBacklogPolicy("consumer_backlog_eviction", 1024);
ASSERT_EQ(ResultOk, client.createProducer(topic, producer));
ASSERT_EQ(ResultOk, client.createProducer(partition, producer));
client.close();
}
class ProducerTest : public ::testing::TestWithParam<bool> {};
TEST_P(ProducerTest, testMaxMessageSize) {
Client client(serviceUrl);
const auto topic = std::string("ProducerTest-NoBatchMaxMessageSize-") +
(GetParam() ? "batch-" : "-no-batch-") + std::to_string(time(nullptr));
Consumer consumer;
ASSERT_EQ(ResultOk, client.subscribe(topic, "sub", consumer));
Producer producer;
ProducerConfiguration conf;
conf.setBatchingEnabled(GetParam());
ASSERT_EQ(ResultOk, client.createProducer(topic, conf, producer));
std::string msg = std::string(maxMessageSize / 2, 'a');
ASSERT_EQ(ResultOk, producer.send(MessageBuilder().setContent(msg).build()));
Message message;
ASSERT_EQ(ResultOk, consumer.receive(message));
ASSERT_EQ(msg, message.getDataAsString());
std::string orderKey = std::string(maxMessageSize, 'a');
ASSERT_EQ(ResultMessageTooBig, producer.send(MessageBuilder().setOrderingKey(orderKey).build()));
ASSERT_EQ(ResultMessageTooBig,
producer.send(MessageBuilder().setContent(std::string(maxMessageSize, 'b')).build()));
ASSERT_EQ(ResultOk, producer.send(MessageBuilder().setContent(msg).build()));
client.close();
}
TEST(ProducerTest, testChunkingMaxMessageSize) {
Client client(serviceUrl);
const auto topic = std::string("ProducerTest-ChunkingMaxMessageSize-") + std::to_string(time(nullptr));
Consumer consumer;
ASSERT_EQ(ResultOk, client.subscribe(topic, "sub", consumer));
Producer producer;
ProducerConfiguration conf;
conf.setBatchingEnabled(false);
conf.setChunkingEnabled(true);
ASSERT_EQ(ResultOk, client.createProducer(topic, conf, producer));
std::string orderKey = std::string(maxMessageSize, 'a');
ASSERT_EQ(ResultMessageTooBig, producer.send(MessageBuilder().setOrderingKey(orderKey).build()));
std::string msg = std::string(2 * maxMessageSize + 10, 'b');
Message message;
ASSERT_EQ(ResultOk, producer.send(MessageBuilder().setContent(msg).build()));
ASSERT_EQ(ResultOk, consumer.receive(message));
ASSERT_EQ(msg, message.getDataAsString());
ASSERT_LE(1L, message.getMessageId().entryId());
client.close();
}
TEST(ProducerTest, testExclusiveProducer) {
Client client(serviceUrl);
std::string topicName =
"persistent://public/default/testExclusiveProducer" + std::to_string(time(nullptr));
Producer producer1;
ProducerConfiguration producerConfiguration1;
producerConfiguration1.setProducerName("p-name-1");
producerConfiguration1.setAccessMode(ProducerConfiguration::Exclusive);
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration1, producer1));
Producer producer2;
ProducerConfiguration producerConfiguration2;
producerConfiguration2.setProducerName("p-name-2");
producerConfiguration2.setAccessMode(ProducerConfiguration::Exclusive);
ASSERT_EQ(ResultProducerFenced, client.createProducer(topicName, producerConfiguration2, producer2));
Producer producer3;
ProducerConfiguration producerConfiguration3;
producerConfiguration3.setProducerName("p-name-3");
ASSERT_EQ(ResultProducerBusy, client.createProducer(topicName, producerConfiguration3, producer3));
}
TEST(ProducerTest, testWaitForExclusiveProducer) {
Client client(serviceUrl);
std::string topicName =
"persistent://public/default/testWaitForExclusiveProducer" + std::to_string(time(nullptr));
Producer producer1;
ProducerConfiguration producerConfiguration1;
producerConfiguration1.setProducerName("p-name-1");
producerConfiguration1.setAccessMode(ProducerConfiguration::Exclusive);
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration1, producer1));
ASSERT_EQ(ResultOk, producer1.send(MessageBuilder().setContent("content").build()));
Producer producer2;
ProducerConfiguration producerConfiguration2;
producerConfiguration2.setProducerName("p-name-2");
producerConfiguration2.setAccessMode(ProducerConfiguration::WaitForExclusive);
Latch latch(1);
client.createProducerAsync(topicName, producerConfiguration2,
[&latch, &producer2](Result res, const Producer& producer) {
ASSERT_EQ(ResultOk, res);
producer2 = producer;
latch.countdown();
});
// when p1 close, p2 success created.
producer1.close();
latch.wait();
ASSERT_EQ(ResultOk, producer2.send(MessageBuilder().setContent("content").build()));
producer2.close();
}
TEST(ProducerTest, testExclusiveWithFencingProducer) {
Client client(serviceUrl);
std::string topicName =
"persistent://public/default/testExclusiveWithFencingProducer" + std::to_string(time(nullptr));
Producer producer1;
ProducerConfiguration producerConfiguration1;
producerConfiguration1.setProducerName("p-name-1");
producerConfiguration1.setAccessMode(ProducerConfiguration::Exclusive);
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration1, producer1));
producer1.send(MessageBuilder().setContent("content").build());
Producer producer2;
ProducerConfiguration producerConfiguration2;
producerConfiguration2.setProducerName("p-name-2");
producerConfiguration2.setAccessMode(ProducerConfiguration::WaitForExclusive);
Latch latch(1);
client.createProducerAsync(topicName, producerConfiguration2,
[&latch, &producer2](Result res, const Producer& producer) {
// producer2 will be fenced
ASSERT_EQ(ResultProducerFenced, res);
latch.countdown();
producer2 = producer;
});
// wait for all the Producers to be enqueued in order to prevent races
sleep(1);
// producer3 will create success.
Producer producer3;
ProducerConfiguration producerConfiguration3;
producerConfiguration3.setProducerName("p-name-3");
producerConfiguration3.setAccessMode(ProducerConfiguration::ExclusiveWithFencing);
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration3, producer3));
ASSERT_EQ(ResultOk, producer3.send(MessageBuilder().setContent("content").build()));
latch.wait();
// producer1 will be fenced
ASSERT_EQ(ResultProducerFenced, producer1.send(MessageBuilder().setContent("content").build()));
// Again create producer4 with WaitForExclusive
Producer producer4;
ProducerConfiguration producerConfiguration4;
producerConfiguration2.setProducerName("p-name-4");
producerConfiguration2.setAccessMode(ProducerConfiguration::WaitForExclusive);
Latch latch2(1);
client.createProducerAsync(topicName, producerConfiguration2,
[&latch2, &producer4](Result res, const Producer& producer) {
// producer4 will be success
ASSERT_EQ(ResultOk, res);
producer4 = producer;
latch2.countdown();
});
ASSERT_EQ(ResultProducerNotInitialized, producer4.send(MessageBuilder().setContent("content").build()));
// When producer3 is close, producer4 will be create success
producer3.close();
latch2.wait();
ASSERT_EQ(ResultOk, producer4.send(MessageBuilder().setContent("content").build()));
client.close();
}
TEST_P(ProducerTest, testFlushNoBatch) {
Client client(serviceUrl);
auto partitioned = GetParam();
const auto topicName = std::string("testFlushNoBatch") +
(partitioned ? "partitioned-" : "-no-partitioned-") +
std::to_string(time(nullptr));
if (partitioned) {
// call admin api to make it partitioned
std::string url = adminUrl + "admin/v2/persistent/public/default/" + topicName + "/partitions";
int res = makePutRequest(url, "5");
LOG_INFO("res = " << res);
ASSERT_FALSE(res != 204 && res != 409);
}
ProducerConfiguration producerConfiguration;
producerConfiguration.setBatchingEnabled(false);
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration, producer));
std::atomic_int needCallBack(100);
auto cb = [&needCallBack](Result code, const MessageId& msgId) {
ASSERT_EQ(code, ResultOk);
needCallBack.fetch_sub(1);
};
for (int i = 0; i < 100; ++i) {
Message msg = MessageBuilder().setContent("content").build();
producer.sendAsync(msg, cb);
}
producer.flush();
ASSERT_EQ(needCallBack.load(), 0);
producer.close();
client.close();
}
// Verifies that getLastSequenceId() is correct after sendAsync + flush when batching is enabled.
// Previously the batch used the last message's sequence_id, causing lastSequenceIdPublished_ to be
// doubled (e.g. 3 messages yielded 4 instead of 2). The batch must use the first message's
// sequence_id so that lastSequenceIdPublished_ = sequenceId + messagesCount - 1 is correct.
TEST(ProducerTest, testGetLastSequenceIdAfterBatchFlush) {
Client client(serviceUrl);
const std::string topicName =
"persistent://public/default/testGetLastSequenceIdAfterBatchFlush-" + std::to_string(time(nullptr));
ProducerConfiguration producerConfiguration;
producerConfiguration.setBatchingEnabled(true);
producerConfiguration.setBatchingMaxMessages(10);
producerConfiguration.setBatchingMaxPublishDelayMs(60000);
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration, producer));
// Send 3 messages in a batch, then flush. Sequence ids are [0, 1, 2], so getLastSequenceId() must be 2.
for (int i = 0; i < 3; i++) {
Message msg = MessageBuilder().setContent("content").build();
producer.sendAsync(msg, nullptr);
}
ASSERT_EQ(ResultOk, producer.flush());
ASSERT_EQ(producer.getLastSequenceId(), 2) << "After 3 messages, last sequence id should be 2";
// Send 2 more (total 5), flush. Sequence ids for these are [3, 4], so getLastSequenceId() must be 4.
for (int i = 0; i < 2; i++) {
Message msg = MessageBuilder().setContent("content").build();
producer.sendAsync(msg, nullptr);
}
ASSERT_EQ(ResultOk, producer.flush());
ASSERT_EQ(producer.getLastSequenceId(), 4) << "After 5 messages total, last sequence id should be 4";
producer.close();
client.close();
}
TEST_P(ProducerTest, testFlushBatch) {
Client client(serviceUrl);
auto partitioned = GetParam();
const auto topicName = std::string("testFlushNoBatch") +
(partitioned ? "partitioned-" : "-no-partitioned-") +
std::to_string(time(nullptr));
if (partitioned) {
// call admin api to make it partitioned
std::string url = adminUrl + "admin/v2/persistent/public/default/" + topicName + "/partitions";
int res = makePutRequest(url, "5");
LOG_INFO("res = " << res);
ASSERT_FALSE(res != 204 && res != 409);
}
ProducerConfiguration producerConfiguration;
producerConfiguration.setBatchingEnabled(true);
producerConfiguration.setBatchingMaxMessages(10);
producerConfiguration.setBatchingMaxPublishDelayMs(1000);
producerConfiguration.setBatchingMaxAllowedSizeInBytes(4 * 1024 * 1024);
// test all messages in batch has been sent
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration, producer));
std::atomic_int needCallBack(100);
auto cb = [&needCallBack](Result code, const MessageId& msgId) {
ASSERT_EQ(code, ResultOk);
needCallBack.fetch_sub(1);
};
for (int i = 0; i < 100; ++i) {
Message msg = MessageBuilder().setContent("content").build();
producer.sendAsync(msg, cb);
}
auto assertFlushCallbackOnce = [&producer] {
Latch latch{1};
std::mutex mutex;
std::vector<Result> results;
producer.flushAsync([&](Result result) {
{
std::lock_guard<std::mutex> lock{mutex};
results.emplace_back(result);
}
latch.countdown();
});
latch.wait();
std::lock_guard<std::mutex> lock{mutex};
ASSERT_EQ(results, (std::vector<Result>{ResultOk}));
};
assertFlushCallbackOnce();
ASSERT_EQ(needCallBack.load(), 0);
producer.close();
// test remain messages in batch not send
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration, producer));
std::atomic_int needCallBack2(105);
auto cb2 = [&needCallBack2](Result code, const MessageId& msgId) {
ASSERT_EQ(code, ResultOk);
needCallBack2.fetch_sub(1);
};
for (int i = 0; i < 105; ++i) {
Message msg = MessageBuilder().setContent("content").build();
producer.sendAsync(msg, cb2);
}
assertFlushCallbackOnce();
ASSERT_EQ(needCallBack2.load(), 0);
producer.close();
client.close();
}
TEST(ProducerTest, testCloseSubProducerWhenFail) {
Client client(serviceUrl);
std::string ns = "test-close-sub-producer-when-fail";
std::string localName = std::string("testCloseSubProducerWhenFail") + std::to_string(time(nullptr));
std::string topicName = "persistent://public/" + ns + '/' + localName;
const int maxProducersPerTopic = 10;
const int partitionNum = 5;
// call admin api to create namespace with max prodcuer limit
std::string url = adminUrl + "admin/v2/namespaces/public/" + ns;
int res =
makePutRequest(url, "{\"max_producers_per_topic\": " + std::to_string(maxProducersPerTopic) + "}");
ASSERT_TRUE(res == 204 || res == 409) << "res:" << res;
// call admin api to create partitioned topic
res = makePutRequest(adminUrl + "admin/v2/persistent/public/" + ns + "/" + localName + "/partitions",
std::to_string(partitionNum));
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
ProducerConfiguration producerConfiguration;
producerConfiguration.setBatchingEnabled(false);
// create producers for partition-0 up to max producer limit
std::vector<Producer> producers;
for (int i = 0; i < maxProducersPerTopic; ++i) {
Producer producer;
ASSERT_EQ(ResultOk,
client.createProducer(topicName + "-partition-0", producerConfiguration, producer));
producers.push_back(producer);
}
// create partitioned producer, should fail because partition-0 already reach max producer limit
for (int i = 0; i < maxProducersPerTopic; ++i) {
Producer producer;
ASSERT_EQ(ResultProducerBusy, client.createProducer(topicName, producer));
}
std::this_thread::sleep_for(std::chrono::seconds(1));
// create producer for partition-1, should succeed
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topicName + "-partition-1", producerConfiguration, producer));
producers.push_back(producer);
for (auto& producer : producers) {
producer.close();
}
client.close();
}
TEST(ProducerTest, testCloseProducerBeforeCreated) {
Client client(serviceUrl);
std::string ns = "test-close-producer-before-created";
std::string localName = std::string("testCloseProducerBeforeCreated") + std::to_string(time(nullptr));
std::string topicName = "persistent://public/" + ns + '/' + localName;
const int maxProducersPerTopic = 10;
const int partitionNum = 5;
// call admin api to create namespace with max prodcuer limit
std::string url = adminUrl + "admin/v2/namespaces/public/" + ns;
int res =
makePutRequest(url, "{\"max_producers_per_topic\": " + std::to_string(maxProducersPerTopic) + "}");
ASSERT_TRUE(res == 204 || res == 409) << "res:" << res;
// call admin api to create partitioned topic
res = makePutRequest(adminUrl + "admin/v2/persistent/public/" + ns + "/" + localName + "/partitions",
std::to_string(partitionNum));
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
ProducerConfiguration producerConfiguration;
producerConfiguration.setLazyStartPartitionedProducers(true);
producerConfiguration.setPartitionsRoutingMode(ProducerConfiguration::RoundRobinDistribution);
producerConfiguration.setBatchingEnabled(false);
Message msg = MessageBuilder().setContent("test").build();
for (int i = 0; i < maxProducersPerTopic * 100; ++i) {
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topicName, producerConfiguration, producer));
// trigger lazy producer creation
for (int j = 0; j < partitionNum; ++j) {
producer.sendAsync(msg, [](pulsar::Result, const pulsar::MessageId&) {});
}
producer.close();
}
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer(topicName, {}, producer));
producer.close();
client.close();
}
TEST(ProducerTest, testNoDeadlockWhenClosingPartitionedProducerAfterPartitionsUpdate) {
const std::string topic = "public/default/partition-test" + std::to_string(time(nullptr));
std::string topicOperateUrl = adminUrl + "admin/v2/persistent/" + topic + "/partitions";
int res = makePutRequest(topicOperateUrl, "2");
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
ClientConfiguration clientConf;
clientConf.setPartititionsUpdateInterval(1);
Client client(serviceUrl, clientConf);
ProducerConfiguration conf;
Producer producer;
client.createProducer(topic, conf, producer);
PartitionedProducerImpl& partitionedProducer = PulsarFriend::getPartitionedProducerImpl(producer);
// TODO: Replace by producer interceptor to reproduce the issue then we can remove
// PulsarFriend::updatePartitions
PulsarFriend::updatePartitions(partitionedProducer, 3);
producer.close();
client.close();
}
TEST(ProducerTest, testReconnectMultiConnectionsPerBroker) {
ClientConfiguration conf;
conf.setConnectionsPerBroker(10);
Client client(serviceUrl, conf);
Producer producer;
ASSERT_EQ(ResultOk, client.createProducer("producer-test-reconnect-twice", producer));
for (int i = 0; i < 5; i++) {
ASSERT_TRUE(PulsarFriend::reconnect(producer)) << "i: " << i;
}
client.close();
}
TEST(ProducerTest, testFailedToCreateNewPartitionProducer) {
const std::string topic =
"public/default/testFailedToCreateNewPartitionProducer" + std::to_string(time(nullptr));
std::string topicOperateUrl = adminUrl + "admin/v2/persistent/" + topic + "/partitions";
int res = makePutRequest(topicOperateUrl, "2");
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
ClientConfiguration clientConf;
clientConf.setPartititionsUpdateInterval(1);
Client client(serviceUrl, clientConf);
ProducerConfiguration conf;
Producer producer;
client.createProducer(topic, conf, producer);
ASSERT_TRUE(waitUntil(std::chrono::seconds(1), [&producer]() -> bool { return producer.isConnected(); }));
PartitionedProducerImpl& partitionedProducer = PulsarFriend::getPartitionedProducerImpl(producer);
PulsarFriend::updatePartitions(partitionedProducer, 3);
std::this_thread::sleep_for(std::chrono::milliseconds(500));
auto& newProducer = PulsarFriend::getInternalProducerImpl(producer, 2);
ASSERT_FALSE(newProducer.isConnected()); // should fail with topic not found
res = makePostRequest(topicOperateUrl, "3");
ASSERT_TRUE(res == 204 || res == 409) << "res: " << res;
ASSERT_TRUE(
waitUntil(std::chrono::seconds(5), [&newProducer]() -> bool { return newProducer.isConnected(); }));
producer.close();
client.close();
}
TEST(ProducerTest, testLargeProperties) {
const std::string topic = "producer-test-large-properties-" + std::to_string(time(nullptr));
Client client(serviceUrl);
Producer producer;
ProducerConfiguration conf;
conf.setBatchingEnabled(false);
ASSERT_EQ(ResultOk, client.createProducer(topic, conf, producer));
Consumer consumer;
ASSERT_EQ(ResultOk, client.subscribe(topic, "sub", consumer));
MessageBuilder::StringMap properties;
constexpr int propertyCount = 20000;
auto builder = MessageBuilder().setContent("msg");
for (int i = 0; i < propertyCount; i++) {
builder.setProperty("key" + std::to_string(i), "value-" + std::to_string(i));
}
// ASSERT_EQ(ResultOk,
// producer.send(MessageBuilder().setContent("msg").setProperties(properties).build()));
ASSERT_EQ(ResultOk, producer.send(builder.build()));
Message msg;
ASSERT_EQ(ResultOk, consumer.receive(msg, 3000));
ASSERT_EQ(msg.getProperties().size(), propertyCount);
for (int i = 0; i < propertyCount; i++) {
auto it = msg.getProperties().find("key" + std::to_string(i));
ASSERT_NE(it, msg.getProperties().cend());
}
client.close();
}
INSTANTIATE_TEST_CASE_P(Pulsar, ProducerTest, ::testing::Values(true, false));