-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest-rest-api-account.http
252 lines (213 loc) · 4.7 KB
/
test-rest-api-account.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
@jsonType = application/json
# OPTIONS Request
curl -H "Origin: http://localhost:8080" \
-H "Access-Control-Request-Method: POST" \
-H "Access-Control-Request-Headers: X-Requested-With" \
-X OPTIONS http://localhost:8080/rpc
### Create User
# @name CreateUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Create",
"request": {
"username": "sumo",
"firstName": "sumo",
"lastName": "demo",
"email": "sumo@demo.com"
}
}
### Create User 2
# @name CreateUser2
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Create",
"request": {
"username": "sumo1",
"firstName": "sumo1",
"lastName": "demo1",
"email": "sumo1@demo.com"
}
}
### List User
# @name ListUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.List",
"request": {
}
}
### List User 2
# @name ListUser2
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.List",
"request": {
"limit": 10,
"page": 1
}
}
### List User 3
# @name ListUser3
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.List",
"request": {
"limit": 10,
"page": 1,
"sort" : "username",
"lastName": "demo",
"email": "sumo@demo.com"
}
}
@firstUserId = {{ListUser.response.body.results[0].id}}
### Get User
# @name GetUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Get",
"request": {
"id": "{{firstUserId}}"
}
}
### Exist User
# @name ExistUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Exist",
"request": {
"id": "{{firstUserId}}"
}
}
### Exist User
# @name ExistUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Exist",
"request": {
"username": "sumo",
"id": "{{firstUserId}}",
"email": "sumo1@demo.com"
}
}
### Update User
# @name UpdateUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Update",
"request": {
"id": "{{firstUserId}}",
"username": "sumo222",
"firstName": "sumoto222",
"lastName": "demo222",
"email": "sumo222@demo.com"
}
}
### Delete User
# @name DeleteUser
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "UserService.Delete",
"request": {
"id": "{{firstUserId}}"
}
}
### Profile Test
### Create Profile
# @name CreateProfile
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "ProfileService.Create",
"request": {
"user_id": "{{firstUserId}}",
"tz" : "PST",
"avatar": "sumo1.jpg",
"gender": 2,
"birthday": "2017-01-15T01:30:15.01Z",
"preferred_theme": "cosmic"
}
}
### List Profiles
# @name ListProfile
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "ProfileService.List",
"request": {
}
}
### List Profiles 2
# @name ListProfile2
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "ProfileService.List",
"request": {
"limit": 10,
"page": 1,
"sort" : "gender",
"preferred_theme": "cosmic",
"gender": 2
}
}
@firstProfileId = {{ListProfile.response.body.results[0].id}}
### Get GetProfileByID
# @name GetProfileByID
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "ProfileService.Get",
"request": {
"profile_id": "{{firstProfileId}}"
}
}
### Get GetProfileByUserID
# @name GetProfileByUserID
POST {{api-gateway-url}}/rpc
content-type: {{jsonType}}
Accept: {{jsonType}}
{
"service": "gkit.service.account",
"method": "ProfileService.Get",
"request": {
"user_id": "{{firstUserId}}"
}
}