1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\MessageQueue\UseCase;
- class AsyncMultipleTopicsWithEachQueueTest extends QueueTestCaseAbstract
- {
- /**
- * @var string[]
- */
- protected $uniqueID;
- /**
- * @var \Magento\TestModuleAsyncAmqp\Model\AsyncTestData
- */
- protected $msgObject;
- /**
- * @var string[]
- */
- protected $consumers = ['queue.for.multiple.topics.test.y', 'queue.for.multiple.topics.test.z'];
- /**
- * @var string[]
- */
- private $topics = ['multi.topic.queue.topic.y', 'multi.topic.queue.topic.z'];
- /**
- * Verify that Queue Framework processes multiple asynchronous topics sent to the same queue.
- *
- * Current test is not test of Web API framework itself, it just utilizes its infrastructure to test Message Queue.
- */
- public function testAsyncMultipleTopicsPerQueue()
- {
- $this->msgObject = $this->objectManager->create(\Magento\TestModuleAsyncAmqp\Model\AsyncTestData::class);
- foreach ($this->topics as $topic) {
- $this->uniqueID[$topic] = md5(uniqid($topic));
- $this->msgObject->setValue($this->uniqueID[$topic] . "_" . $topic);
- $this->msgObject->setTextFilePath($this->logFilePath);
- $this->publisher->publish($topic, $this->msgObject);
- }
- $this->waitForAsynchronousResult(count($this->uniqueID), $this->logFilePath);
- //assertions
- foreach ($this->topics as $item) {
- $this->assertContains($this->uniqueID[$item] . "_" . $item, file_get_contents($this->logFilePath));
- }
- }
- }
|