alek-sys / animal-rescue-tdd

A demo repository for "Stop writing tests!" workshop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Animal Rescue ♥️😺 ♥️🐶 ♥️🐰 ♥️🐦 ♥️🐹

Test All

Sample Spring Boot app with React front-end.

Development

Run locally

Use the following commands to manage the local lifecycle of animal-rescue

./scripts/local.sh start         # start auth server, frontend app, and backend app
./scripts/local.sh start --quiet # start everything without launching the app in browser, and redirects all output to `./scripts/out/`
./scripts/local.sh stop          # stop auth server, frontend app, and backend app. You would only need to do this if you start the app in quiet mode.

Try it out

Visit https://localhost:3000/rescue, you should see cute animal bios with the Adopt buttons disabled. All the information are fetched from a public GET backend endpoint /animals. homepage

Click the Sign in to adopt button on the top right corner, you should be redirected to the login page if you haven't already logged in. Use alice / test or bob / test credentials to log in.

Once you logged in, you should see a greeting message regarding the username you log in with on the top right corner, and the Adopt buttons should be enabled. logged in view

Click on the Adopt button, input your contact email and application notes in the model, then click Apply, a POST request should be sent to a sso-enabled backend endpoint /animals/{id}/adoption-requests, with the adopter set to your username we parsed from your token. adopt model

Then the model should close, and you should see the Adopt button you clicked just now has turned into Edit Adoption Request. This is matched by your SSO log in username. adopted view

Click on the Edit Adoption Request again, you can view, edit (PUT), and delete (DELETE) the existing request. view or edit existing adoption request model

Note Documentation may get out of date. Please refer to the e2e test and the test output video for the most accurate user flow description.

Local security configuration

Backend uses Form login for local development with two test accounts - alice / test and bob / test.

It is also possible to use GitHub for OAuth2 login for the app. This requires setting properties github.client-id and github.client-secret either via properties file or the environment.

Tests

Execute the following script to run all tests:

./scripts/local.sh init          # install dependencies for the frontend folder and the e2e folder
./scripts/local.sh ci            # run backend tests and e2e tests
./scripts/local.sh backend       # run backend test only
./scripts/local.sh e2e --quiet   # run e2e test only without interactive mode

You can find an e2e test output video showing the whole journey in ./e2e/cypress/videos/ after the test run. If you would like to launch the test in an actual browser and run e2e test interactively, you may run the following commands:

./scripts/local.sh start
./scripts/local.sh e2e

More detail about the e2e testing framework can be found at cypress api doc

CI

GitHub Actions

GitHub Actions run all checks for the master branch and all PR requests. All workflow configuration can be found in .github/workflows.

About

A demo repository for "Stop writing tests!" workshop

License:Apache License 2.0


Languages

Language:Java 59.5%Language:JavaScript 29.6%Language:CSS 3.9%Language:Gherkin 2.6%Language:Shell 2.2%Language:HTML 2.2%Language:Dockerfile 0.1%