Public
Documentation Settings

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

AUTHORIZATIONBearer Token
Token

<token>

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

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionThe Garden Application

POSTSign up

http://localhost:3000//signup

StartFragment

The user is signed up with:

  • name
  • email
  • 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

AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionThe Garden Application
Bodyraw (json)
json
{
    "name": "Test",
    "email": "TestUser@yahoo.com",
    "password": "1234"
}
Example Request
curl
curl --location 'http://localhost:3000/signup' \
--data-raw '{
    "name": "Test",
    "email": "TestUser@yahoo.com",
    "password": "1234"
}'
200 OK
Example Response
json
{
  "status": "success",
  "data": {
    "result": "You created an account."
  }
}
X-Powered-By

Express

Content-Type

application/json; charset=utf-8

Content-Length

64

ETag

W/"40-KQu+yleEFfLiSrqtmnTove03jkU"

Date

Fri, 14 Apr 2023 11:30:25 GMT

Connection

keep-alive

Keep-Alive

timeout=5

POSTLog in

http://localhost:3000/login

StartFragment

The user is loged in with:

  • email
  • 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

AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionThe Garden Application
Bodyraw (json)
json
{
    "name": "Test",
    "email": "TestUser@yahoo.com",
    "password": "1234"
}
Example Request
curl
curl --location 'http://localhost:3000/login' \
--data-raw '{
    "name": "Test",
    "email": "TestUser@yahoo.com",
    "password": "1234"
}'
200 OK
Example Response
json
{
  "status": "success",
  "data": {
    "result": "You are logged in",
    "id": 1,
    "email": "TestUser@yahoo.com",
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwiZW1haWwiOiJUZXN0VXNlckB5YWhvby5jb20iLCJpYXQiOjE2ODE0NzE5NDIsImV4cCI6MTY4MTQ3NTU0Mn0.UrHZyEbLvSQbq-ps0Gabi0wsmF9yoa3C7VfoDcf2L8w"
  }
}
X-Powered-By

Express

Content-Type

application/json; charset=utf-8

Content-Length

281

ETag

W/"119-1GNpXe7u6mAvnA7u2DvyKnEeyC4"

Date

Fri, 14 Apr 2023 11:32:22 GMT

Connection

keep-alive

Keep-Alive

timeout=5