Download the PHP package twentytwo-labs/behat-amqp without Composer
On this page you can find all versions of the php package twentytwo-labs/behat-amqp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download twentytwo-labs/behat-amqp
More information about twentytwo-labs/behat-amqp
Files in twentytwo-labs/behat-amqp
Package behat-amqp
Short Description Behat Amqp Context to test AMQP messages, based on Swarrot library and PECL AMQP php extension.
License MIT
Informations about the package behat-amqp
twentytwo-labs/behat-amqp
This project is an extension built for Behat that allows you to test AMQP messages.
It is based on Swarrot library and PECL AMQP php extension.
Setup
Simply add the
-
AmqpContext to your behat.yml config:
- BehatAmqpExtension to your behat.yml config:
By default the BehatAmqpExtension uses the default connection to RabbitMQ:
But you can override this configuration with your own values when you add the AmqpContext to your behat.yml file:
How to use
In your Behat test scenarios you can use these steps to test your AMQP Messages:
Then I set message properties:
(with properties described as YAML in a Gherkin PyStringNode)Then I set message body:
(with body as a Gherkin PyStringNode)Then I publish message with routing key :routingKey
(this will publish a message to RabbitMQ with previously set properties and/or body)Then I purge queue :queue_name
(will purge all messages in that queue)Given I have :count message(s) in amqp :transport queue
Given I have messages in amqp :transport queue
Given I wait :sleep second(s)
Then I consume a message from queue :queue_name
Then the message should have property :property equal to :value
Then the message should have header :header equal to :value
Then the message body should contain :body
Then the message body should be equal to :body
Then the message body should be match to :body
Then the message body should have JSON node :node equal to :value
Then print the message body
(to display the content of your message in console)Then print the message properties
(to display the message properties in console)
For a fully functional example see our Behat feature file: features/context.feature
Licence
MIT
All versions of behat-amqp with dependencies
ext-json Version *
swarrot/swarrot Version ^2.4 || ^3.0 || ^4.0
behat/behat Version ^3.4
symfony/yaml Version ^3.4 || ^4.0 || ^5.0 || ^6.0