forked from uciharis/dicoding-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20c-skenario-adding.js
60 lines (52 loc) · 2.11 KB
/
20c-skenario-adding.js
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
// --- Skenario Getting All notes
// membuat request baru pada collection Notes API test
// klik kanan pada collection lalu add request
// beri nama request dg Getting All Notes
// isi url : localhost:5000/notes dan metode GET
// tidak ada isian data apapun pada request. langsung lakukan tes
// tulis testing pertama utk nguji response code bernilai 200
// buat testing baru dg nama "response status code should have 200 value"
/*
pm.test('response status code should i have 200 value, ()=> {
pm.response.to.have.status(200);
});
*/
// buat lagi testing baru dg nama "response Content-Type header should have application/json"
/*
pm.test('response Content-Type header should have application/json value', ()=>{
});
*/
// buat testing baru dg nama 'response body should an object'
/*
pm.test('response body should an object', ()=> {
const responseJson = pm.response.json();
pm.expect(responseJson).to.be.an('object);
});
*/
// buat testing baru 'response body should have the correct property n value'
/*
pm.test('response body should have the correct property n value', ()=>{
const responseJson= pm.response.json();
pm.expect(responseJson).to.have.ownProperty('status');
pm.expect(responseJson.status).to.equals('success');
pm.expect(responseJson).to.have.ownProperty('data');
pm.expect(responseJson.data).to.be.an('object');
})
*/
// pengujian terakhir
// uji objek data yang ada di dalam response body. objek data harus
// memiliki array notes yang minimal memiliki 1 item note di dalam
// buat tes dg nama 'response body data should have a note array and contain at least 1 item'
// kemudian uji nilai objek data bahwa ia harus memiliki properti notes yang merupakan
// array dan minimal memiliki 1 item di dlamnya
/*
pm.test('response body data should have a notes array and contain at least 1 item', ()=>{
const responseJson = pm.response.json();
const {data} = responseJson;
pm.expect(data).to.have.ownProperty('notes');
pm.expect(data.notes).to.be.an('array');
pm.expect(data.notes).lenghtOf.at.least(1);
});
*/
// selanjutnya mengirim permintaan dg klik 'send'
// simpan req. tsb dg klik tombol save