mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
252 lines
7.6 KiB
TypeScript
252 lines
7.6 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 Streetwriters (Private) Limited
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { test, expect } from "@playwright/test";
|
|
import { AppModel } from "./models/app.model";
|
|
import { Notebook } from "./models/types";
|
|
import {
|
|
groupByOptions,
|
|
NOTE,
|
|
NOTEBOOK,
|
|
orderByOptions,
|
|
sortByOptions
|
|
} from "./utils";
|
|
|
|
test("create a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
|
|
expect(notebook).toBeDefined();
|
|
});
|
|
|
|
test("create a note inside a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
const { notes } = (await notebook?.openNotebook()) || {};
|
|
|
|
const note = await notes?.createNote(NOTE);
|
|
|
|
expect(note).toBeDefined();
|
|
});
|
|
|
|
test("create a note inside a topic", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
const { topics } = (await notebook?.openNotebook()) || {};
|
|
const topic = await topics?.findItem({ title: NOTEBOOK.topics[0] });
|
|
const notes = await topic?.open();
|
|
|
|
const note = await notes?.createNote(NOTE);
|
|
|
|
expect(note).toBeDefined();
|
|
});
|
|
|
|
test("edit a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
|
|
const item: Notebook = {
|
|
title: "An Edited Notebook",
|
|
description: "A new edited description",
|
|
topics: ["Topic 1", "Topic 2", "Topic 3"]
|
|
};
|
|
await notebook?.editNotebook(item);
|
|
|
|
const editedNotebook = await notebooks.findNotebook(item);
|
|
expect(editedNotebook).toBeDefined();
|
|
expect(await editedNotebook?.getDescription()).toBe(item.description);
|
|
});
|
|
|
|
test("delete a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
|
|
await notebook?.moveToTrash();
|
|
|
|
expect(await notebook?.isPresent()).toBe(false);
|
|
expect(await app.toasts.waitForToast("1 notebook moved to trash")).toBe(true);
|
|
const trash = await app.goToTrash();
|
|
expect(await trash.findItem(NOTEBOOK.title)).toBeDefined();
|
|
});
|
|
|
|
test("restore a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
await notebook?.moveToTrash();
|
|
const trash = await app.goToTrash();
|
|
const trashItem = await trash.findItem(NOTEBOOK.title);
|
|
|
|
await trashItem?.restore();
|
|
|
|
await app.goToNotebooks();
|
|
const restoredNotebook = await notebooks.findNotebook(NOTEBOOK);
|
|
expect(restoredNotebook).toBeDefined();
|
|
expect(await app.toasts.waitForToast("1 item restored")).toBe(true);
|
|
});
|
|
|
|
test("permanently delete a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
await notebook?.moveToTrash();
|
|
const trash = await app.goToTrash();
|
|
const trashItem = await trash.findItem(NOTEBOOK.title);
|
|
|
|
await trashItem?.delete();
|
|
|
|
expect(await trashItem?.isPresent()).toBe(false);
|
|
});
|
|
|
|
test("pin a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
|
|
await notebook?.pin();
|
|
|
|
expect(await notebook?.isPinned()).toBe(true);
|
|
});
|
|
|
|
test("unpin a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
await notebook?.pin();
|
|
|
|
await notebook?.unpin();
|
|
|
|
expect(await notebook?.isPinned()).toBe(false);
|
|
});
|
|
|
|
test("create shortcut of a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
|
|
await notebook?.createShortcut();
|
|
|
|
expect(await notebook?.isShortcut()).toBe(true);
|
|
const allShortcuts = await app.navigation.getShortcuts();
|
|
expect(allShortcuts.includes(NOTEBOOK.title)).toBeTruthy();
|
|
});
|
|
|
|
test("remove shortcut of a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
await notebook?.createShortcut();
|
|
|
|
await notebook?.removeShortcut();
|
|
|
|
expect(await notebook?.isShortcut()).toBe(false);
|
|
const allShortcuts = await app.navigation.getShortcuts();
|
|
expect(allShortcuts.includes(NOTEBOOK.title)).toBeFalsy();
|
|
});
|
|
|
|
test("delete all notes within a notebook", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
let { notes } = (await notebook?.openNotebook()) || {};
|
|
for (let i = 0; i < 2; ++i) {
|
|
await notes?.createNote({
|
|
title: `Note ${i}`,
|
|
content: NOTE.content
|
|
});
|
|
}
|
|
await app.goBack();
|
|
|
|
await notebook?.moveToTrash(true);
|
|
|
|
notes = await app.goToNotes();
|
|
expect(await notes.isEmpty()).toBe(true);
|
|
});
|
|
|
|
test("delete all notes within a topic", async ({ page }) => {
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const notebook = await notebooks.createNotebook(NOTEBOOK);
|
|
const { topics } = (await notebook?.openNotebook()) || {};
|
|
const topic = await topics?.findItem({ title: NOTEBOOK.topics[0] });
|
|
let notes = await topic?.open();
|
|
for (let i = 0; i < 2; ++i) {
|
|
await notes?.createNote({
|
|
title: `Note ${i}`,
|
|
content: NOTE.content
|
|
});
|
|
}
|
|
await app.goBack();
|
|
await app.goBack();
|
|
|
|
await notebook?.moveToTrash(true);
|
|
|
|
notes = await app.goToNotes();
|
|
expect(await notes.isEmpty()).toBe(true);
|
|
});
|
|
|
|
test(`sort notebooks`, async ({ page }, info) => {
|
|
info.setTimeout(2 * 60 * 1000);
|
|
|
|
const app = new AppModel(page);
|
|
await app.goto();
|
|
const notebooks = await app.goToNotebooks();
|
|
const titles = ["G ", "C ", "Gz", "2 ", "A "];
|
|
for (const title of titles) {
|
|
NOTEBOOK.title = title + NOTEBOOK.title;
|
|
await notebooks.createNotebook(NOTEBOOK);
|
|
}
|
|
|
|
for (const groupBy of groupByOptions) {
|
|
for (const sortBy of sortByOptions) {
|
|
for (const orderBy of orderByOptions) {
|
|
await test.step(`group by ${groupBy}, sort by ${sortBy}, order by ${orderBy}`, async () => {
|
|
const sortResult = await notebooks?.sort({
|
|
groupBy,
|
|
orderBy,
|
|
sortBy
|
|
});
|
|
if (!sortResult) return;
|
|
|
|
expect(await notebooks.isEmpty()).toBeFalsy();
|
|
});
|
|
}
|
|
}
|
|
}
|
|
});
|