Terakhir diperbaharui: Oct 24, 2020
Testing
Setelah menambahkan route handler, saatnya kita uji API dengan menggunakan Postman.
Buat sebuah note baru
- Setup:
URL: http://localhost:3001/note
HTTP Method: POST
- Response:
- MongoDB Compass:
Tampilkan semua note
- Setup:
URL: http://localhost:3001/notes
HTTP Method: GET
- Response:
Tampilkan satu note
- Setup:
URL: http://localhost:3001/note/5f75d755fc5cf558be48b9d4
HTTP Method: GET
Note Id: 5f75d755fc5cf558be48b9d4
- Response:
Update note
- Setup:
URL: http://localhost:3001/note/5f75d755fc5cf558be48b9d4
HTTP Method: PUT
Note Id: 5f75d755fc5cf558be48b9d4
- Response:
- MongoDB Compass:
Hapus note
- Setup:
URL: http://localhost:3001/note/5f75d755fc5cf558be48b9d4
HTTP Method: DELETE
Note Id: 5f75d755fc5cf558be48b9d4
- Response:
Untuk memastikan data sudah terhapus, kita bisa cek dengan mengirim GET request untuk id note yang sudah dihapus