-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpostman-load-test-collection.json
More file actions
250 lines (250 loc) · 7.65 KB
/
postman-load-test-collection.json
File metadata and controls
250 lines (250 loc) · 7.65 KB
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
{
"info": {
"_postman_id": "load-test-yclubs-2025",
"name": "YClubs Load Testing Collection",
"description": "Load testing collection for YClubs API endpoints focusing on concurrent write operations",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Get Anonymous User ID",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [""],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"",
"// Extract and store user ID from response",
"if (pm.response.code === 200) {",
" var jsonData = pm.response.json();",
" if (jsonData.userId) {",
" pm.environment.set('ab_user_id', jsonData.userId);",
" }",
" // Also extract from Set-Cookie header if present",
" var cookies = pm.response.headers.get('Set-Cookie');",
" if (cookies) {",
" var match = cookies.match(/ab_user_id=([^;]+)/);",
" if (match && match[1]) {",
" pm.environment.set('ab_user_id', match[1]);",
" }",
" }",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"testName\": \"homepage_layout\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/abtest/assign",
"host": ["{{base_url}}"],
"path": ["api", "abtest", "assign"]
},
"description": "Get or create an anonymous user ID for A/B testing. This sets the ab_user_id cookie automatically. Run this first before testing A/B test endpoints."
},
"response": []
},
{
"name": "Follow/Unfollow Club",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"",
"pm.test(\"Response has isFollowing and followers\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('isFollowing');",
" pm.expect(jsonData).to.have.property('followers');",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Cookie",
"value": "token={{auth_token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"clubId\": \"{{test_club_id}}\",\n \"isFollowing\": {{follow_action}}\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/follow",
"host": ["{{base_url}}"],
"path": ["api", "follow"]
},
"description": "Follow or unfollow a club. This endpoint mutates shared state (follower counts) and uses MongoDB transactions, making it ideal for concurrency testing. **REQUIRES AUTHENTICATION** - This endpoint cannot be tested without a valid auth token."
},
"response": []
},
{
"name": "Log A/B Test Event",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"",
"pm.test(\"Response indicates success\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData).to.have.property('success', true);",
"});"
],
"type": "text/javascript"
}
}
],
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"// If ab_user_id is not set, try to get it from cookies",
"if (!pm.environment.get('ab_user_id')) {",
" // Postman will automatically use cookies from previous requests",
" // But we can also set it manually if needed",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"testName\": \"homepage_layout\",\n \"eventType\": \"click_follow_button\",\n \"eventData\": {\n \"clubId\": \"{{test_club_id}}\",\n \"timestamp\": {{$timestamp}}\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/api/abtest/event",
"host": ["{{base_url}}"],
"path": ["api", "abtest", "event"]
},
"description": "Log an A/B test event. This is a simpler write operation that can help identify concurrency issues in event logging. **Works without authentication** - uses anonymous user ID from 'Get Anonymous User ID' request. Postman will automatically use cookies from previous requests."
},
"response": []
},
{
"name": "Get Club Followers Count",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"",
"// Store followers count for verification",
"if (pm.response.code === 200) {",
" var clubs = pm.response.json();",
" var testClub = clubs.find(c => c._id === pm.environment.get('test_club_id'));",
" if (testClub) {",
" pm.environment.set('last_followers_count', testClub.followers || 0);",
" }",
"}"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/api/clubs",
"host": ["{{base_url}}"],
"path": ["api", "clubs"]
},
"description": "Get all clubs to verify follower counts after concurrent operations."
},
"response": []
}
],
"variable": [
{
"key": "base_url",
"value": "http://localhost:3000",
"type": "string"
},
{
"key": "test_club_id",
"value": "",
"type": "string"
},
{
"key": "auth_token",
"value": "",
"type": "string"
},
{
"key": "ab_user_id",
"value": "",
"type": "string"
},
{
"key": "follow_action",
"value": "true",
"type": "string"
}
]
}