Modern Smoke testing tool written in Go. Inspired by Shisha
Create a Vapefile
file in the format:
[
{
"uri": "/health",
"expected_status_code": 200
},
{
"uri": "/page-that-should-not-exist",
"expected_status_code": 404
}
]
then execute vape http://your.domain
to run the checks
Create the Vapefile
file as above but be sure to mount it inside the container:
docker run \
--rm \
-t \
-v $(PWD)/Vapefile.example:/Vapefile \
symm/vape:latest \
https://your.domain
-config full/path/to/Vapefile
specify an alternative to looking for Vapefile
in the current directory
This project is HackDay™ quality. In need of test coverage and refactoring