Testing Asynchronous Messaging
Testing asynchronous communication in PHP
When we make our code asynchronous, simply sending a command isn't enough to test the complete flow. The message lands in a message queue, waiting to be processed. To test the full workflow, we need to run the asynchronous consumer that pulls messages from the channel and executes our handlers.
Ecotone provides full testing support for asynchronous messaging, letting us verify end-to-end flows with real message brokers or using in memory implementation. This way we can test async behavior the same way we test synchronous code—keeping our tests fast, reliable, and easy to maintain.
Example Asynchronous Handler
As an example, let's imagine scenario, where after placing order we want to send notification asynchronously.
class NotificationService
{
#[Asynchronous('notifications')]
#[EventHandler(endpointId: 'notifyOrderWasPlaced')]
public function notify(OrderWasPlaced $event, Notifier $notifier): void
{
$notifier->notifyAbout('placedOrder', $event->getOrderId());
}
}Running Asynchronous Consumer
Ecotone provides support for testing asynchronous scenarios using Ecotone Lite:
$ecotoneTestSupport = EcotoneLite::bootstrapFlowTesting(
[OrderService::class, NotificationService::class],
[new OrderService(), new NotificationService()],
// 1. we need to provide Message Channel to use
enableAsynchronousProcessing: [
// In this scenario we are using In Memory implementation
SimpleMessageChannelBuilder::create('notifications')
]
);
// you could run Event Bus with OrderWasPlaced here instead
$ecotoneTestSupport->sendCommandWithRoutingKey('order.register', new PlaceOrder('123'));
// 2. running consumer
$ecotoneTestSupport->run('notifications');
$this->assertEquals(
1,
// 3. asserting the result
count($this->notifier->getNotificationsOf('placedOrder'))
);Enable asynchronous processing - We enable asynchronous processing and provide Message Channel to poll from. Message Channel can be Real (SQS, RabbitMQ, Dbal etc) or In Memory one
Run - This runs the the consumer (test is still kept synchronous, therefore all debugging will work)
Assert - We assert the state after consumer has exited
In the example above, we run the consumer within the same process as our test. We can also run the consumer from a separate process like this (example for Symfony):
php bin/console ecotone:run notifications --handledMessageLimit=1 --executionTimeLimit=100 --stopOnFailure
However, we don't recommend running the consumer as a separate process for testing. Here's why: it requires booting up a new PHP process for each test, which significantly slows down your test suite. More importantly, separate processes don't share memory, which means we can't use in-memory implementations, ensuring Message Consumers close correctly, and making debugging process much more difficult. By keeping everything in the same process, our tests run in milliseconds instead of seconds.
Default Message Channels
For testing, we don't need to configure any specific message channel implementation. Ecotone automatically provides in-memory message channels for us. This means our tests run instantly without needing RabbitMQ, Redis, or any external services—perfect for fast, isolated unit tests that we can run anywhere, even on CI/CD pipelines without extra setup.
Polling Metadata
By default Ecotone will optimize for your test scenario:
If real Message Channel like RabbitMQ, SQS, Redis will be used in test, then Message Consumer will be running up to 100ms and will stop on error.
If In Memory Channel will be used, then Message Consumer will be running till it fetches all Messages or error will happen.
The above default configuration ensures, tests will be kept stable and will run finish quickly.
However if in case of need this behaviour can be customized by providing ExecutionPollingMetadata.
Testing Serialization
To test serialization we may fetch Message directly from the Channel and verify it's payload.
We can enable serialization on this channel for given
Media Type. In this case, we say serialize tojsonall message going throughnotifications.We pull and verify messages sent to
notificationschannel, if their were sent injsonformat
By default In Memory Queue Channel will do the serialization to PHP native serialization or your default Serialization if defined. This way it works in similar way to your production Queue Channels.
If you don't want to use serialization however, you may set type to conversionMediaType: MediaType::createApplicationXPHP()
If our serialization mechanism is JMS Module, we will need to enable it for testing:
Otherwise we will need to include Classes that customize our serialization.
Testing Delayed Messages
Our Handlers may be delayed in time and we may want to run peform few actions and then release the message, to verify production like flow.
The default behaviour for In Memory Channels is to ignore delays. By setting
second parametertotruewe are registering In Memory Channel that will be aware of delays.We are releasing messages that awaits for 60 seconds or less.
Delaying to given date
If we delay to given point in time, then we can use date time for releasing this message.
Dropping all messages coming to given channel
In some scenarios, you may just want to turn off given channel, because you're not interested in messages that goes through it.
By registering
nullable channel, we make use that all messages that will go to given channel will be dropped.
Last updated
Was this helpful?