BDD testing of pippo demo angular-crud-app with Cucumber and Serenity
Sources for the blog posts Using docker for orchestrating a reusable BDD web testing setup with Selenium grid - Part I and BDD web testing setup - Docker, Cucumber and Serenity - Part II
- Install Docker and Docker-compose
- Clone this repository
$ git clone [email protected]:balamaci/blog-ui-bdd-testing.git
- Create the docker images locally There is a one time run of
$ ./docker-images-build.sh
which will create the docker images locally. Normally you'd have them pushed to a repository, but I wanted to show there are no "hidden tricks", or you can use them as example to build your own. So instead we use the script to build locally the required images.
To run the bdd tests anytime just do
$ ./restart.sh
which basically does docker-compose run uitests mvn clean verify
This would execute the Cucumber tests and produce the Serenity reports which can be accessed at ./target/site/index.html
We included pippo-demo.war -the application we run our tests against- on the repo to have a single command to run the job. Normally you'd have it provided by another build job that would trigger the testing job.