-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestcase.txt
More file actions
393 lines (314 loc) · 11.9 KB
/
testcase.txt
File metadata and controls
393 lines (314 loc) · 11.9 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
TestCase ID : 1 --> GET : localhost:9000/ (or) https://nodejs-restapi-backend.herokuapp.com/
Testname : To get all the data about clusters
Test steps:
1. set the http request as GET method
2. set The URL to get all the data about cluster as localhost:9000/ (or) https://nodejs-restapi-backend.herokuapp.com/
Expected output: {
"data": [
{
"_id": "615ff97f1e2ffeea87fbc9f0",
"clusterName": "C1",
"clusterRegion": "us-east1",
"machines": [
{
"name": "M1",
"ipaddress": "192.81.03.2",
"instance-type": "EC3",
"tags": "stop"
},
{
"name": "M5",
"ipaddress": "191.01.07.1",
"instance-type": "EC2",
"tags": "stop"
}
]
},
{
"_id": "615ff9a11e2ffeea87fbc9f1",
"clusterName": "C2",
"clusterRegion": "us-central1",
"machines": [
{
"name": "M8",
"ipaddress": "191.01.07.1",
"instance-type": "EC2",
"tags": "stop"
}
]
},
{
"_id": "615ff9b41e2ffeea87fbc9f2",
"clusterName": "C3",
"clusterRegion": "us-west1",
"machines": [
{
"name": "M3",
"ipaddress": "191.22.03.2",
"instance-type": "EC2",
"tags": "stop"
},
{
"name": "M4",
"ipaddress": "191.22.07.1",
"instance-type": "EC2",
"tags": "stop"
},
{
"name": "M6",
"ipaddress": "191.13.08.1",
"instance-type": "EC2",
"tags": "stop"
},
{
"name": "M7",
"ipaddress": "191.13.08.1",
"instance-type": "EC2",
"tags": "stop"
}
]
}
]
}
postman testcases :
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("clusterName");
pm.expect(pm.response.text()).to.include("clusterRegion");
pm.expect(pm.response.text()).to.include("machines");
pm.expect(pm.response.text()).to.include("name");
pm.expect(pm.response.text()).to.include("ipaddress");
pm.expect(pm.response.text()).to.include("instance-type");
pm.expect(pm.response.text()).to.include("tags");
});
________________________________________________________________________________________________________________________________________________
TestCase ID : 2 --> POST : localhost:9000/add (or) https://nodejs-restapi-backend.herokuapp.com/add
Testname : To add new clusters
Test steps:
1. set the http request as POST method
2. set The URL to post a new cluster in the db as localhost:9000/add (or) https://nodejs-restapi-backend.herokuapp.com/add
3. set the body request in json format containing fields clusterName,clusterRegion and machines
TESTDATA:
req.body = {
"clusterName":"C4",
"clusterRegion":"asia-southeast",
"machines":[]
}
Expected output: {
"message": "cluster created"
}
postman testcases :
pm.test("Successful POST request", function () {
pm.expect(pm.response.code).to.be.oneOf([201, 202]);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"cluster created"}');
});
________________________________________________________________________________________________________________________________________________
TestCase ID: 3 --> DELETE : localhost:9000/delete/:clusterName
Testname : To Delete the cluster
Test steps:
1. set the http request as DELETE method
2. set The URL to delete a cluster from the db as localhost:9000/delete/:clusterName (or) https://nodejs-restapi-backend.herokuapp.com/delete/:clustername
3. choose the cluster that has to be deleted in the request params
Expected output:
{
"message": "cluster deleted"
}
postman testcases :
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"cluster deleted"}');
});
_________________________________________________________________________________________________________________________________________________
TestCase ID : 4 --> PUT : localhost:9000/machines/:clusterName
Testname : To add machines to cluster
Test steps:
1. set the http request as PUT method
2. set The URL to add machine to the cluster in the db as localhost:9000/machines/:clusterName (or) https://nodejs-restapi-backend.herokuapp.com/machines/:clusterName
3. choose the cluster that has to be updated in the request params
4.set the body request in json format.
5.add the json data under machines field containing the fieldnames as name,ipaddress,instance-type and tags
TESTDATA:
req.body = {
"machines":{
"name":"M6",
"ipaddress":"191.13.08.1",
"instance-type":"EC2",
"tags":"start"
}
}
Expected output:
{
"message":"machine added to cluster"
}
POSITIVE-CASES:
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"machine added to cluster"}');
});
NEGATIVE-CASES:
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"machine already added to one of the cluster"}');
});
pm.test("Data already added", function () {
pm.expect(pm.response.code).to.be.oneOf([208]);
});
________________________________________________________________________________________________________________________________________________
TestCase ID : 5 --> PUT : localhost:9000/machines/tags/:clusterName/:machinename
Testname : To update tags on machine
Test steps:
1. set the http request as PUT method
2. set The URL to update tags on machine in the db as localhost:9000/machines/tags/:clusterName/:machinename (or) https://nodejs-restapi-backend.herokuapp.com/machines/tags/:clusterName/:machinename
3. choose the cluster and machine in the request params that has to be updated with tags as start,stop and reboot.
4. set the body request in json format containing the field name as tags
TESTDATA
req.body ={
"tags":"stop"
}
Expected output:
{
"message": "tag updated"
}
postman testcases:
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"tag updated"}');
});
________________________________________________________________________________________________________________________________________________
TestCase : 6 --> DELETE : localhost:9000/machines/delete/:clusterName/:machinename
Testname: To delete machines from cluster
Test steps:
1. set the http request as DELETE method
2. set The URL to delete machine from cluster in db as localhost:9000/machines/delete/:clusterName/:machinename (or) https://nodejs-restapi-backend.herokuapp.com/machines/delete/:clusterName/:machinename
3. choose the cluster and the machine that to be deleted in request params
Expected output:
{
"message":"machine deleted"
}
postman testcases:
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"machine deleted"}');
});
________________________________________________________________________________________________________________________________________________
TestCase : 7 --> GET : localhost:9000/machines/tags/:tags
Testname: To get data based on tags
Test steps:
1. set the http request as GET method
2. set The URL find out the clusters and machines which have tags as start,stop and reboot operations in db as localhost:9000/machines/tags/:tags (or) https://nodejs-restapi-backend.herokuapp.com/machines/tags/:tags
3.choose the tags as start,stop and reboot and get all the information about the particular tag.
Expected output:
{
"data": [
{
"_id": "615ff97f1e2ffeea87fbc9f0",
"clusterName": "C1",
"clusterRegion": "us-east1",
"machines": [
{
"name": "M1",
"ipaddress": "192.81.03.2",
"instance-type": "EC3",
"tags": "stop"
},
{
"name": "M5",
"ipaddress": "191.01.07.1",
"instance-type": "EC2",
"tags": "stop"
}
]
},
{
"_id": "615ff9a11e2ffeea87fbc9f1",
"clusterName": "C2",
"clusterRegion": "us-central1",
"machines": [
{
"name": "M8",
"ipaddress": "191.01.07.1",
"instance-type": "EC2",
"tags": "stop"
}
]
},
{
"_id": "615ff9b41e2ffeea87fbc9f2",
"clusterName": "C3",
"clusterRegion": "us-west1",
"machines": [
{
"name": "M3",
"ipaddress": "191.22.03.2",
"instance-type": "EC2",
"tags": "stop"
},
{
"name": "M4",
"ipaddress": "191.22.07.1",
"instance-type": "EC2",
"tags": "stop"
},
{
"name": "M6",
"ipaddress": "191.13.08.1",
"instance-type": "EC2",
"tags": "stop"
},
{
"name": "M7",
"ipaddress": "191.13.08.1",
"instance-type": "EC2",
"tags": "stop"
}
]
}
]
}
postman testcases:
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("data");
pm.expect(pm.response.text()).to.include("clusterName");
pm.expect(pm.response.text()).to.include("clusterRegion");
pm.expect(pm.response.text()).to.include("machines");
pm.expect(pm.response.text()).to.include("name");
pm.expect(pm.response.text()).to.include("ipaddress");
pm.expect(pm.response.text()).to.include("instance");
pm.expect(pm.response.text()).to.include("tags");
});
___________________________________________________________________________________________________________________________________________________
TestCase : 8 --> PUT : localhost:9000/machines/tags/:tags
Testname: To delete machines from cluster
Test steps:
1. set the http request as GET method
2. set The URL to update the tags on multiple machines at the same time in db as localhost:9000/machines/tags/:tags (or) https://nodejs-restapi-backend.herokuapp.com/machines/tags/:tags
3. choose the tag in request params and update it with new tag in the request body.
TESTDATA
req.body ={
"tags":"reboot"
}
Expected output:
{
"message":"tags updated"
}
postman testcases:
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include('{"message":"tags updated"}');
});