mirror of
https://github.com/zadam/trilium.git
synced 2025-01-15 11:39:37 +08:00
Merge pull request #3990 from mm21/master
Add ETAPI tests to repro inherited attribute issue #3989 and workaround
This commit is contained in:
commit
c802bf7d8b
2 changed files with 111 additions and 0 deletions
67
test-etapi/get-inherited-attribute-workaround.http
Normal file
67
test-etapi/get-inherited-attribute-workaround.http
Normal file
|
@ -0,0 +1,67 @@
|
||||||
|
POST {{triliumHost}}/etapi/attributes
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"noteId": "root",
|
||||||
|
"type": "label",
|
||||||
|
"name": "mylabel",
|
||||||
|
"value": "val",
|
||||||
|
"isInheritable": true
|
||||||
|
}
|
||||||
|
|
||||||
|
> {% client.global.set("createdInheritedAttributeId", response.body.attributeId); %}
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
POST {{triliumHost}}/etapi/create-note
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"parentNoteId": "root",
|
||||||
|
"title": "Hello",
|
||||||
|
"type": "text",
|
||||||
|
"content": "Hi there!"
|
||||||
|
}
|
||||||
|
|
||||||
|
> {%
|
||||||
|
client.global.set("createdNoteId", response.body.note.noteId);
|
||||||
|
client.global.set("createdBranchId", response.body.branch.branchId);
|
||||||
|
%}
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
POST {{triliumHost}}/etapi/attributes
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"noteId": "{{createdNoteId}}",
|
||||||
|
"type": "label",
|
||||||
|
"name": "mylabel",
|
||||||
|
"value": "val",
|
||||||
|
"isInheritable": false
|
||||||
|
}
|
||||||
|
|
||||||
|
> {% client.global.set("createdOwnedAttributeId", response.body.attributeId); %}
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
DELETE {{triliumHost}}/etapi/attributes/{{createdOwnedAttributeId}}
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
|
||||||
|
> {% client.assert(response.status === 204); %}
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
|
||||||
|
> {%
|
||||||
|
client.assert(response.status === 200);
|
||||||
|
client.assert(response.body.noteId == client.global.get("createdNoteId"));
|
||||||
|
client.assert(response.body.attributes.length == 1);
|
||||||
|
client.assert(response.body.attributes[0].attributeId ==
|
||||||
|
client.global.get("createdInheritedAttributeId"));
|
||||||
|
%}
|
44
test-etapi/get-inherited-attribute.http
Normal file
44
test-etapi/get-inherited-attribute.http
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
POST {{triliumHost}}/etapi/attributes
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"noteId": "root",
|
||||||
|
"type": "label",
|
||||||
|
"name": "mylabel",
|
||||||
|
"value": "val",
|
||||||
|
"isInheritable": true
|
||||||
|
}
|
||||||
|
|
||||||
|
> {% client.global.set("createdAttributeId", response.body.attributeId); %}
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
POST {{triliumHost}}/etapi/create-note
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"parentNoteId": "root",
|
||||||
|
"title": "Hello",
|
||||||
|
"type": "text",
|
||||||
|
"content": "Hi there!"
|
||||||
|
}
|
||||||
|
|
||||||
|
> {%
|
||||||
|
client.global.set("createdNoteId", response.body.note.noteId);
|
||||||
|
client.global.set("createdBranchId", response.body.branch.branchId);
|
||||||
|
%}
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}
|
||||||
|
Authorization: {{authToken}}
|
||||||
|
|
||||||
|
> {%
|
||||||
|
client.assert(response.status === 200);
|
||||||
|
client.assert(response.body.noteId == client.global.get("createdNoteId"));
|
||||||
|
client.assert(response.body.attributes.length == 1);
|
||||||
|
client.assert(response.body.attributes[0].attributeId ==
|
||||||
|
client.global.get("createdAttributeId"));
|
||||||
|
%}
|
Loading…
Reference in a new issue