-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.http
84 lines (59 loc) · 1.8 KB
/
test.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# 1) Register John as user.
POST http://localhost:8080/uaa/signup/user
Content-Type: application/json
{"username": "John", "password": "hello123"}
###
# 2) Register Mike as Service_provider.
POST http://localhost:8080/uaa/signup/service_provider
Content-Type: application/json
{"username": "Mike", "password": "hello123"}
###
# 3) Login with John's credentials
POST http://localhost:8080/login
Content-Type: application/json
{
"username": "John",
"password": "hello123"
}
###
# 4) Login with Mike Credentials.
POST http://localhost:8080/login
Content-Type: application/json
{
"username": "Mike",
"password": "hello123"
}
###
# 5) Submit a Service Request.
POST http://localhost:8080/requests/api/submit
Content-Type: application/json
Authorization: Bearer <token> # replace <token> with the token that you received in Step 3
{
"type":"Maintenance",
"title":"Maintenance",
"detail":"A Full Maintenance for my apartement",
"city":"yourCity"
}
###
# 6) Submit Offer
POST http://localhost:8080/offers/api/submit
Content-Type: application/json
Authorization: Bearer <token> # replace <token> with the token that you received in Step 4
{
"requestNumber": "John_0",
"message": "I'd like to take for $500 ",
"price": 500
}
###
# 7) get the offers of a service request
GET http://localhost:8080/offers/api/offers/John_0
Authorization: Bearer <token> # replace <token> with the token that you received in Step 3
###
# 8) Accept Offer
GET http://localhost:8080/requests/api/requests/accept/John_0/Mike_1
Authorization: Bearer <token> # replace <token> with the token that you received in Step 3
###
# 9) Reject Offer
GET http://localhost:8080/requests/api/requests/reject/John_0/Mike_3
Authorization: Bearer <token> # replace <token> with the token that you received in Step 3
###