Member-only story

Unit+Functional test the Symfony4 Messenger

Kim Wuestkamp
codeburst
Published in
4 min readJul 2, 2019

So you are using the awesome Symfony4 Messenger component? Great. Now you would like to do some fancy unit and functional testing? Awesome!

We will show this by extending our Booking API example from before.

Parts

  1. Overview and simple demonstration of the Symfony Messenger
  2. (this article)

What will we do here today?

  1. First we’ll show the components of a simple project to use the Symfony Messenger with
  2. then we will write one Unit test
  3. then one Functional one.

Run the project yourself if you like that kind of stuff

This is all done already in branch step3 of this repo:

git clone git@github.com:wuestkamp/symfony-messaging-queuing-example.gitcd symfony-messaging-queuing-example
git checkout step3
composer install
bin/console doctrine:schema:create
bin/console doctrine:fixtures:load -n
bin/console server:run
# call the worker in a separate terminal
bin/console messenger:consume -vv
# run unit tests
bin/phpunit

The simple booking workflow

What can this simple project do? It’s a booking api and can list and create bookings:

List Bookings

Call http://127.0.0.1:8000/bookings to see existing bookings, we’ll get some json returned. I use Postman to call the API but you can use curl or any browser too.

/bookings

Create Booking

Call http://127.0.0.1:8000/bookings/create/new-booking to create a new booking, which will return:

/bookings/create/new-booking

The new booking was created instantly with a status of “new”.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Kim Wuestkamp

killercoda.com | killer.sh (CKS CKA CKAD Simulator) | Software Engineer, Infrastructure Architect, Certified Kubernetes

No responses yet

Write a response