trilium/test-etapi/create-entities.http

135 lines
3.8 KiB
Plaintext
Raw Normal View History

2022-01-08 02:33:59 +08:00
POST {{triliumHost}}/etapi/create-note
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
Content-Type: application/json
{
"parentNoteId": "root",
"title": "Hello",
"type": "text",
"content": "Hi there!"
}
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body.note.title == "Hello");
client.assert(response.body.branch.parentNoteId == "root");
});
2022-01-08 02:33:59 +08:00
client.log(`Created note ` + response.body.note.noteId + ` and branch ` + response.body.branch.branchId);
2022-01-06 02:25:17 +08:00
client.global.set("createdNoteId", response.body.note.noteId);
client.global.set("createdBranchId", response.body.branch.branchId);
%}
2022-01-08 02:33:59 +08:00
### Clone to another location
POST {{triliumHost}}/etapi/branches
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-08 02:33:59 +08:00
Content-Type: application/json
{
"noteId": "{{createdNoteId}}",
"parentNoteId": "hidden"
}
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body.parentNoteId == "hidden");
});
client.global.set("clonedBranchId", response.body.branchId);
client.log(`Created cloned branch ` + response.body.branchId);
%}
2022-01-06 02:25:17 +08:00
###
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body.noteId == client.global.get("createdNoteId"));
client.assert(response.body.title == "Hello");
2022-01-08 02:33:59 +08:00
// order is not defined and may fail in the future
client.assert(response.body.parentBranchIds[0] == client.global.get("clonedBranchId"))
client.assert(response.body.parentBranchIds[1] == client.global.get("createdBranchId"));
2022-01-06 02:25:17 +08:00
});
%}
###
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}/content
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body == "Hi there!");
});
%}
###
GET {{triliumHost}}/etapi/branches/{{createdBranchId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body.branchId == client.global.get("createdBranchId"));
client.assert(response.body.parentNoteId == "root");
});
%}
###
2022-01-08 02:33:59 +08:00
GET {{triliumHost}}/etapi/branches/{{clonedBranchId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-08 02:33:59 +08:00
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body.branchId == client.global.get("clonedBranchId"));
client.assert(response.body.parentNoteId == "hidden");
});
%}
###
2022-01-06 02:25:17 +08:00
POST {{triliumHost}}/etapi/attributes
Content-Type: application/json
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
{
"noteId": "{{createdNoteId}}",
"type": "label",
"name": "mylabel",
"value": "val",
"isInheritable": "true"
}
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
});
2022-01-08 02:33:59 +08:00
client.log(`Created attribute ` + response.body.attributeId);
2022-01-06 02:25:17 +08:00
client.global.set("createdAttributeId", response.body.attributeId);
%}
###
GET {{triliumHost}}/etapi/attributes/{{createdAttributeId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
client.test("Request executed successfully", function() {
client.assert(response.status === 200, "Response status is not 200");
client.assert(response.body.attributeId == client.global.get("createdAttributeId"));
});
%}