8000 [Messenger] [Sqs] Add `AddFifoStamp` middleware by tyx · Pull Request #48095 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Messenger] [Sqs] Add AddFifoStamp middleware #48095

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Symfony/Component/Messenger/Bridge/AmazonSqs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

6.4
---

* Add `AddFifoStampMiddleware` to help adding `AmazonSqsFifoStamp`

6.1
---

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Messenger\Bridge\AmazonSqs;

/**
* @see https://docs.aws.amazon.com/en_gb/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html
*/
interface MessageDeduplicationAwareInterface
{
/**
* The max length of MessageDeduplicationId is 128 characters.
* Valid values: alphanumeric characters and punctuation (!"#$%&'()*+,-./:;<=>?@[]^_`{|}~).
*/
public function getMessageDeduplicationId(): ?string;
}
10000
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Messenger\Bridge\AmazonSqs;

/**
* @see https://docs.aws.amazon.com/en_gb/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagegroupid-property.html
*/
interface MessageGroupAwareInterface
{
/**
* The max length of MessageGroupId is 128 characters.
* Valid values: alphanumeric characters and punctuation (!"#$%&'()*+,-./:;<=>?@[]^_`{|}~).
*/
public function getMessageGroupId(): ?string;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Messenger\Bridge\AmazonSqs\Middleware;

use Symfony\Component\Messenger\Bridge\AmazonSqs\MessageDeduplicationAwareInterface;
use Symfony\Component\Messenger\Bridge\AmazonSqs\MessageGroupAwareInterface;
use Symfony\Component\Messenger\Bridge\AmazonSqs\Transport\AmazonSqsFifoStamp;
use Symfony\Component\Messenger\Envelope;
use Symfony\Component\Messenger\Middleware\MiddlewareInterface;
use Symfony\Component\Messenger\Middleware\StackInterface;

final class AddFifoStampMiddleware implements MiddlewareInterface
{
public function handle(Envelope $envelope, StackInterface $stack): Envelope
{
$message = $envelope->getMessage();
$messageGroupId = null;
$messageDeduplicationId = null;

if ($message instanceof MessageGroupAwareInterface) {
$messageGroupId = $message->getMessageGroupId();
}
if ($message instanceof MessageDeduplicationAwareInterface) {
$messageDeduplicationId = $message->getMessageDeduplicationId();
}

if (null !== $messageGroupId || null !== $messageDeduplicationId) {
$envelope = $envelope->with(new AmazonSqsFifoStamp($messageGroupId, $messageDeduplicationId));
}

return $stack->next()->handle($envelope, $stack);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\Messenger\Bridge\AmazonSqs\Tests\Middleware;

use Symfony\Component\Messenger\Bridge\AmazonSqs\MessageDeduplicationAwareInterface;
use Symfony\Component\Messenger\Bridge\AmazonSqs\MessageGroupAwareInterface;
use Symfony\Component\Messenger\Bridge\AmazonSqs\Middleware\AddFifoStampMiddleware;
use Symfony\Component\Messenger\Bridge\AmazonSqs\Transport\AmazonSqsFifoStamp;
use Symfony\Component\Messenger\Envelope;
use Symfony\Component\Messenger\Test\Middleware\MiddlewareTestCase;

class AddFifoStampTest extends MiddlewareTestCase
{
public function testAddStampWithGroupIdOnly()
{
$middleware = new AddFifoStampMiddleware();
$envelope = new Envelope(new WithMessageGroupIdMessage('groupId'));
$finalEnvelope = $middleware->handle($envelope, $this->getStackMock());
$stamp = $finalEnvelope->last(AmazonSqsFifoStamp::class);
$this->assertInstanceOf(AmazonSqsFifoStamp::class, $stamp);
$this->assertSame('groupId', $stamp->getMessageGroupId());
$this->assertNull($stamp->getMessageDeduplicationId());
}

public function testHandleWithDeduplicationIdOnly()
{
$middleware = new AddFifoStampMiddleware();
$envelope = new Envelope(new WithMessageDeduplicationIdMessage('deduplicationId'));
$finalEnvelope = $middleware->handle($envelope, $this->getStackMock());
$stamp = $finalEnvelope->last(AmazonSqsFifoStamp::class);
$this->assertInstanceOf(AmazonSqsFifoStamp::class, $stamp);
$this->assertSame('deduplicationId', $stamp->getMessageDeduplicationId());
$this->assertNull($stamp->getMessageGroupId());
}

public function testHandleWithGroupIdAndDeduplicationId()
{
$middleware = new AddFifoStampMiddleware();
$envelope = new Envelope(new WithMessageDeduplicationIdAndMessageGroupIdMessage('my_group', 'my_random_id'));
$finalEnvelope = $middleware->handle($envelope, $this->getStackMock());
$stamp = $finalEnvelope->last(AmazonSqsFifoStamp::class);
$this->assertInstanceOf(AmazonSqsFifoStamp::class, $stamp);
$this->assertSame('my_random_id', $stamp->getMessageDeduplicationId());
$this->assertSame('my_group', $stamp->getMessageGroupId());
}

public function testHandleWithoutId()
{
$middleware = new AddFifoStampMiddleware();
$envelope = new Envelope(new WithoutIdMessage());
$finalEnvelope = $middleware->handle($envelope, $this->getStackMock());
$stamp = $finalEnvelope->last(AmazonSqsFifoStamp::class);
$this->assertNull($stamp);
}
}

class WithMessageDeduplicationIdAndMessageGroupIdMessage implements MessageDeduplicationAwareInterface, MessageGroupAwareInterface
{
public function __construct(
private string $messageGroupId,
private string $messageDeduplicationId,
) {
}

public function getMessageDeduplicationId(): ?string
{
return $this->messageDeduplicationId;
}

public function getMessageGroupId(): ?string
{
return $this->messageGroupId;
}
}

class WithMessageDeduplicationIdMessage implements MessageDeduplicationAwareInterface
{
public function __construct(
private string $messageDeduplicationId,
) {
}

public function getMessageDeduplicationId(): ?string
{
return $this->messageDeduplicationId;
}
}

class WithMessageGroupIdMessage implements MessageGroupAwareInterface
{
public function __construct(
private string $messageGroupId,
) {
}

public function getMessageGroupId(): ?string
{
return $this->messageGroupId;
}
}
class WithoutIdMessage
{
}
0