-
Notifications
You must be signed in to change notification settings - Fork 2
/
ApiTesting.http
44 lines (36 loc) · 1.69 KB
/
ApiTesting.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
###################################################################################
###### CREATE ACCOUNT ######
###################################################################################
### Send POST request with json body
POST http://localhost:3000/auth/create-account
Content-Type: application/json
{
"organizationId": 1,
"name": "Test User",
"email": "test@tester.com",
"password": "toohardpasswd"
}
###################################################################################
###### LOGIN ######
###################################################################################
### Send POST request with json body
POST http://localhost:3000/auth/login
Content-Type: application/json
{
"email": "test@tester.com",
"password": "toohardpasswd"
}
###################################################################################
###### EXAMPLE ROUTE TESTS, WITH AUTH AND NO AUTH ######
###################################################################################
### No authentication, result will be ok without token
GET http://localhost:3000/example/no-auth
Accept: application/json
### Token missing, throw error 400
GET http://localhost:3000/example/with-auth
Accept: application/json
### Token provided, get token from login
GET http://localhost:3000/example/with-auth
Accept: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX25hbWUiOiJUZXN0IFVzZXIiLCJpZCI6MywiZW1haWwiOiJ0ZXN0QHRlc3Rlci5jb20iLCJpYXQiOjE1OTgzNDIzNzksImV4cCI6MTU5ODM0NTk3OX0.mgyA-axI4kd-IW-YbyJK7KqpCmIJLyNF3bLM7Fnu9fo
###