The Garden Application
StartFragment
REST API
This is a course assignment, where i have created the REST API endpoints for TheGarden Application.
The application allows users to:
- signup, login, delete users.
- flower items: view, create, change, delete.
- colour: view, create, change, delete.
All the endpoints is tested in postman and all have each an example of one positive and one negative test:
- positive i tested if the application works with the token.
- negative i tested that it doesent work without the token. (signup and login is no need for token so here i have tested if the credentials are verified)
EndFragment
Auth
StartFragment
Auth folder is the user folder, where i tested the user login, logout and delete user.
- Signup - the user is created
- Login - the user logs in and is given a token
- Delete - the user is deleted
EndFragment
POSTSign up
StartFragment
The user is signed up with:
- name
- password
All the fields must be provided or else the user is not created. Which is what i tested for in this case one with all the needed credentials was positive. and one without one neccesary credential that was negative.
EndFragment
POSTLog in
StartFragment
The user is loged in with:
- password
All the fields must be provided and validated or else the user is not loged in. Which is what i tested for in this case one with all the needed credentials was positive. and one without one neccesary credential that was negative.
Here when the user is loged in they will also recieve a token.
EndFragment