This repository contains a simple web application written in Java & Spring Boot.
It has a signup form and login form where you can signup for a new user account and login to an existing user account.
The goal of this kata is to simulate a real world example of how we use Test Driven Development (TDD) on an existing code base. So given a ready made web application, how would you use TDD to drive the introduction of a new feature - in this case, an enhancement to the signup form.
Your facilitators will show you how to use a "Test First" strategy of adding new automated test codes in the test suite (to simulate the new feature), before attempting to build the feature in the leanest way, and then proceed to refactor the code. We hope that you will see how having automated tests helps you in building higher quality code.
If time permits, your facilitators may also introduce you to the idea of refactoring of an existing code base.
The product owner is very happy with the application, but would like some enhancements. People are able to sign up for new accounts, but the ACISO (Agency Chief Information Security Officer) said that some users are able to sign-up with too short a password. Security policy recommends enforcing a longer password length of at least 12 characters to make the application more secure.
As a User,
When I signup with for a new user account.
And I key in a password which is too short.
Then I should see an alert telling me my password is too short.
Acceptance Criteria:
- Error alert should be visible when the password is too short.
- Password must be at least 12 characters in length.
- This should be a server-side implementation.
- There should be additional automated test coverage.
Open this folder in your terminal app. And run these commands in the terminal.
-
Install dependencies:
make install
-
Start the app:
make run
You can open this url in your browser to view the app: http://localhost:8080
-
To run the test:
make test
TBC
-
GET /
This is the home page. The login form is also here.
-
GET /signup
This is the registration form.
-
POST /signup
Sign up for new user account.
-
POST /signin
This is how you login to the app. You will need to login with
email
andpassword
.Create a new user before trying to login.
-
GET /users/welcome
Landing page after you have successfully logged in with the correct credentials.
-
GET /users/logout
URL for logging out of the application.