forked from zadam/trilium
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #215 from TriliumNext/feature/investigate_tests
(Bug report) Search not working correctly
- Loading branch information
Showing
9 changed files
with
125 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,5 @@ | ||
import crypto = require("crypto"); | ||
import etapi = require("../support/etapi"); | ||
describe("Notes", () => { | ||
it("zzz", () => { | ||
|
||
etapi.describeEtapi("notes", () => { | ||
it("create", async () => { | ||
const { note, branch } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
prefix: "Custom prefix", | ||
}); | ||
|
||
expect(note.title).toEqual("Hello World!"); | ||
expect(branch.parentNoteId).toEqual("root"); | ||
expect(branch.prefix).toEqual("Custom prefix"); | ||
|
||
const rNote = await etapi.getEtapi(`notes/${note.noteId}`); | ||
expect(rNote.title).toEqual("Hello World!"); | ||
|
||
const rContent = await ( | ||
await etapi.getEtapiContent(`notes/${note.noteId}/content`) | ||
).text(); | ||
expect(rContent).toEqual("Content"); | ||
|
||
const rBranch = await etapi.getEtapi(`branches/${branch.branchId}`); | ||
expect(rBranch.parentNoteId).toEqual("root"); | ||
expect(rBranch.prefix).toEqual("Custom prefix"); | ||
}); | ||
|
||
it("patch", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
}); | ||
|
||
await etapi.patchEtapi(`notes/${note.noteId}`, { | ||
title: "new title", | ||
type: "code", | ||
mime: "text/apl", | ||
dateCreated: "2000-01-01 12:34:56.999+0200", | ||
utcDateCreated: "2000-01-01 10:34:56.999Z", | ||
}); | ||
|
||
const rNote = await etapi.getEtapi(`notes/${note.noteId}`); | ||
expect(rNote.title).toEqual("new title"); | ||
expect(rNote.type).toEqual("code"); | ||
expect(rNote.mime).toEqual("text/apl"); | ||
expect(rNote.dateCreated).toEqual("2000-01-01 12:34:56.999+0200"); | ||
expect(rNote.utcDateCreated).toEqual("2000-01-01 10:34:56.999Z"); | ||
}); | ||
|
||
it("update content", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
}); | ||
|
||
await etapi.putEtapiContent(`notes/${note.noteId}/content`, "new content"); | ||
|
||
const rContent = await ( | ||
await etapi.getEtapiContent(`notes/${note.noteId}/content`) | ||
).text(); | ||
expect(rContent).toEqual("new content"); | ||
}); | ||
|
||
it("create / update binary content", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "file", | ||
title: "Hello World!", | ||
content: "ZZZ", | ||
}); | ||
|
||
const updatedContent = crypto.randomBytes(16); | ||
|
||
await etapi.putEtapiContent(`notes/${note.noteId}/content`, updatedContent); | ||
|
||
const rContent = await ( | ||
await etapi.getEtapiContent(`notes/${note.noteId}/content`) | ||
).arrayBuffer(); | ||
expect(Buffer.from(new Uint8Array(rContent))).toEqual(updatedContent); | ||
}); | ||
|
||
it("delete note", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
}); | ||
|
||
await etapi.deleteEtapi(`notes/${note.noteId}`); | ||
|
||
const resp = await etapi.getEtapiResponse(`notes/${note.noteId}`); | ||
expect(resp.status).toEqual(404); | ||
|
||
const error = await resp.json(); | ||
expect(error.status).toEqual(404); | ||
expect(error.code).toEqual("NOTE_NOT_FOUND"); | ||
expect(error.message).toEqual(`Note '${note.noteId}' not found.`); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
import crypto = require("crypto"); | ||
import etapi = require("../support/etapi"); | ||
|
||
etapi.describeEtapi("notes", () => { | ||
it("create", async () => { | ||
const { note, branch } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
prefix: "Custom prefix", | ||
}); | ||
|
||
expect(note.title).toEqual("Hello World!"); | ||
expect(branch.parentNoteId).toEqual("root"); | ||
expect(branch.prefix).toEqual("Custom prefix"); | ||
|
||
const rNote = await etapi.getEtapi(`notes/${note.noteId}`); | ||
expect(rNote.title).toEqual("Hello World!"); | ||
|
||
const rContent = await ( | ||
await etapi.getEtapiContent(`notes/${note.noteId}/content`) | ||
).text(); | ||
expect(rContent).toEqual("Content"); | ||
|
||
const rBranch = await etapi.getEtapi(`branches/${branch.branchId}`); | ||
expect(rBranch.parentNoteId).toEqual("root"); | ||
expect(rBranch.prefix).toEqual("Custom prefix"); | ||
}); | ||
|
||
it("patch", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
}); | ||
|
||
await etapi.patchEtapi(`notes/${note.noteId}`, { | ||
title: "new title", | ||
type: "code", | ||
mime: "text/apl", | ||
dateCreated: "2000-01-01 12:34:56.999+0200", | ||
utcDateCreated: "2000-01-01 10:34:56.999Z", | ||
}); | ||
|
||
const rNote = await etapi.getEtapi(`notes/${note.noteId}`); | ||
expect(rNote.title).toEqual("new title"); | ||
expect(rNote.type).toEqual("code"); | ||
expect(rNote.mime).toEqual("text/apl"); | ||
expect(rNote.dateCreated).toEqual("2000-01-01 12:34:56.999+0200"); | ||
expect(rNote.utcDateCreated).toEqual("2000-01-01 10:34:56.999Z"); | ||
}); | ||
|
||
it("update content", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
}); | ||
|
||
await etapi.putEtapiContent(`notes/${note.noteId}/content`, "new content"); | ||
|
||
const rContent = await ( | ||
await etapi.getEtapiContent(`notes/${note.noteId}/content`) | ||
).text(); | ||
expect(rContent).toEqual("new content"); | ||
}); | ||
|
||
it("create / update binary content", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "file", | ||
title: "Hello World!", | ||
content: "ZZZ", | ||
}); | ||
|
||
const updatedContent = crypto.randomBytes(16); | ||
|
||
await etapi.putEtapiContent(`notes/${note.noteId}/content`, updatedContent); | ||
|
||
const rContent = await ( | ||
await etapi.getEtapiContent(`notes/${note.noteId}/content`) | ||
).arrayBuffer(); | ||
expect(Buffer.from(new Uint8Array(rContent))).toEqual(updatedContent); | ||
}); | ||
|
||
it("delete note", async () => { | ||
const { note } = await etapi.postEtapi("create-note", { | ||
parentNoteId: "root", | ||
type: "text", | ||
title: "Hello World!", | ||
content: "Content", | ||
}); | ||
|
||
await etapi.deleteEtapi(`notes/${note.noteId}`); | ||
|
||
const resp = await etapi.getEtapiResponse(`notes/${note.noteId}`); | ||
expect(resp.status).toEqual(404); | ||
|
||
const error = await resp.json(); | ||
expect(error.status).toEqual(404); | ||
expect(error.code).toEqual("NOTE_NOT_FOUND"); | ||
expect(error.message).toEqual(`Note '${note.noteId}' not found.`); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters