Files
notesnook/apps/mobile/e2e/tests/notebook.e2e.js

310 lines
9.2 KiB
JavaScript
Raw Permalink Normal View History

/*
This file is part of the Notesnook project (https://notesnook.com/)
2023-01-16 13:44:52 +05:00
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/>.
*/
2022-08-30 16:13:11 +05:00
import { notesnook } from "../test.ids";
import {
2022-04-01 00:53:37 +05:00
tapById,
elementById,
visibleByText,
tapByText,
createNote,
prepare,
notVisibleById,
navigate,
elementByText,
2023-02-13 12:11:08 +05:00
sleep,
2023-03-17 16:18:57 +05:00
notVisibleByText,
2023-09-25 13:02:50 +05:00
visibleById,
createNotebook
} from "./utils";
2022-04-01 00:53:37 +05:00
// async function addTopic(title = "Topic") {
// await tapById(notesnook.buttons.add);
// await elementById("input-title").typeText(title);
// await tapByText("Add");
// await sleep(500);
// }
2022-04-01 00:53:37 +05:00
describe("NOTEBOOKS", () => {
it("Create a notebook with title only", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", false, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
await visibleByText("Notebook 1");
2022-04-01 00:53:37 +05:00
});
it("Create a notebook title & description", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", true, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
await visibleByText("Notebook 1");
2022-04-01 00:53:37 +05:00
});
2023-11-27 16:33:09 +05:00
it("Create a notebook, move notes", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
2023-11-27 16:33:09 +05:00
let note = await createNote();
await navigate("Notebooks");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", true, true);
2022-08-09 18:13:12 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapById("listitem.select");
await tapByText("Move selected notes");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Notebook 1");
await sleep(500);
await visibleByText(note.body);
2022-04-01 00:53:37 +05:00
});
2023-11-27 16:33:09 +05:00
it("Add a sub notebook to a notebook", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", true, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Notebook 1");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapById("add-notebook-button");
await createNotebook("Sub notebook", true, true);
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await device.pressBack();
await visibleByText("Sub notebook");
await tapById(notesnook.ids.notebook.menu);
await tapByText("Move to trash");
await sleep(300);
await tapByText("Delete");
await notVisibleByText("Sub notebook");
2022-04-01 00:53:37 +05:00
});
2023-11-27 16:33:09 +05:00
it("Remove a sub notebook from notebook", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", true, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
await tapByText("Notebook 1");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapById("add-notebook-button");
await createNotebook("Sub notebook", true, true);
await sleep(500);
await device.pressBack();
await visibleByText("Sub notebook");
});
it("Edit notebook", async () => {
await prepare();
await navigate("Notebooks");
await sleep(500);
await tapById(notesnook.buttons.add);
await createNotebook("Notebook 1", true);
await sleep(500);
await device.pressBack();
await tapById(notesnook.ids.notebook.menu);
await tapByText("Edit notebook");
await elementById(notesnook.ids.dialogs.notebook.inputs.title).typeText(
" (edited)"
);
await tapByText("Save");
await visibleByText("Notebook 1 (edited)");
2022-04-01 00:53:37 +05:00
});
2023-11-27 16:33:09 +05:00
it("Edit a sub notebook", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapById(notesnook.buttons.add);
await createNotebook("Notebook 1", true);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
await tapByText("Notebook 1");
2023-11-27 16:33:09 +05:00
await sleep(500);
await tapById("add-notebook-button");
await createNotebook("Sub notebook", true, true);
await device.pressBack();
await sleep(500);
2022-04-01 00:53:37 +05:00
await tapById(notesnook.ids.notebook.menu);
2023-11-27 16:33:09 +05:00
await tapByText("Edit notebook");
await sleep(500);
await elementById(notesnook.ids.dialogs.notebook.inputs.title).typeText(
" (edited)"
);
await tapByText("Save");
2023-11-27 16:33:09 +05:00
await sleep(500);
await visibleByText("Sub notebook (edited)");
2022-04-01 00:53:37 +05:00
});
2023-11-27 16:33:09 +05:00
it("Add a note to notebook", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
2022-04-01 00:53:37 +05:00
await sleep(500);
await createNotebook("Notebook 1", true, true);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Notebook 1");
2022-04-01 00:53:37 +05:00
await createNote();
});
2023-11-27 16:33:09 +05:00
it("Remove note from Notebook", async () => {
2022-04-01 00:53:37 +05:00
await prepare();
await navigate("Notebooks");
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", true, true);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-01 00:53:37 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Notebook 1");
await sleep(500);
2022-04-01 00:53:37 +05:00
let note = await createNote();
await elementByText(note.body).longPress();
await tapById("select-minus");
2022-04-01 00:53:37 +05:00
await notVisibleById(note.title);
});
2023-03-17 16:18:57 +05:00
it("Add/Remove note to notebook from home", async () => {
2022-04-03 01:48:44 +05:00
await prepare();
await navigate("Notebooks");
2022-04-03 01:48:44 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", true, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-03 01:48:44 +05:00
await sleep(500);
await navigate("Notes");
await createNote();
2022-04-03 01:48:44 +05:00
await tapById(notesnook.listitem.menu);
2023-03-17 16:18:57 +05:00
await tapById("icon-notebooks");
2022-04-03 01:48:44 +05:00
await sleep(500);
await tapByText("Notebook 1");
2023-02-13 12:11:08 +05:00
await tapByText("Save");
await sleep(300);
2023-11-27 16:33:09 +05:00
await visibleByText("Notebook 1");
2022-04-03 01:48:44 +05:00
});
2023-11-27 16:33:09 +05:00
it("Edit notebook title, description", async () => {
2022-04-03 01:48:44 +05:00
await prepare();
await navigate("Notebooks");
2022-04-03 01:48:44 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
2022-04-03 01:48:44 +05:00
await createNotebook();
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-03 01:48:44 +05:00
await sleep(500);
await visibleByText("Notebook 1");
2022-04-03 01:48:44 +05:00
await tapById(notesnook.ids.notebook.menu);
await tapByText("Edit notebook");
2022-04-03 01:48:44 +05:00
await sleep(500);
await elementById(notesnook.ids.dialogs.notebook.inputs.title).typeText(
" (Edited)"
);
await elementById(
notesnook.ids.dialogs.notebook.inputs.description
).clearText();
await elementById(
notesnook.ids.dialogs.notebook.inputs.description
).typeText("Description of Notebook 1 (Edited)");
2023-11-27 16:33:09 +05:00
2023-04-18 01:54:51 +05:00
await tapByText("Save");
2022-04-03 01:48:44 +05:00
await sleep(500);
await visibleByText("Notebook 1 (Edited)");
await visibleByText("Description of Notebook 1 (Edited)");
2022-04-03 01:48:44 +05:00
});
2023-11-27 16:33:09 +05:00
it.skip("Move notebook to trash", async () => {
2022-04-03 01:48:44 +05:00
await prepare();
await navigate("Notebooks");
2023-02-13 12:11:08 +05:00
2022-04-03 01:48:44 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", false, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-03 01:48:44 +05:00
await sleep(500);
await visibleByText("Notebook 1");
2022-04-03 01:48:44 +05:00
await tapById(notesnook.ids.notebook.menu);
await tapByText("Move to trash");
2023-01-14 11:42:24 +05:00
await sleep(2000);
2023-04-18 01:54:51 +05:00
await tapByText("Delete");
2022-04-03 01:48:44 +05:00
await sleep(4000);
await navigate("Trash");
await visibleByText("Notebook 1");
2022-04-03 01:48:44 +05:00
});
2022-04-03 03:35:01 +05:00
2023-01-14 11:42:24 +05:00
it("Move notebook to trash with notes", async () => {
await prepare();
let note = await createNote();
await navigate("Notebooks");
2023-02-13 12:11:08 +05:00
2023-01-14 11:42:24 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
2023-01-14 11:42:24 +05:00
await createNotebook("Notebook 1", false, true);
await sleep(500);
await tapById("listitem.select");
await tapByText("Move selected notes");
await sleep(500);
await visibleByText("Notebook 1");
await tapById(notesnook.ids.notebook.menu);
await tapByText("Move to trash");
await sleep(2000);
2023-04-18 01:54:51 +05:00
await tapByText("Move all notes in this notebook to trash");
await sleep(500);
await tapByText("Delete");
2023-01-14 11:42:24 +05:00
await sleep(4000);
await navigate("Trash");
await visibleByText("Notebook 1");
await visibleByText(note.body);
});
it("Pin notebook to side menu", async () => {
2022-04-03 03:35:01 +05:00
await prepare();
await navigate("Notebooks");
2023-02-13 12:11:08 +05:00
2022-04-03 03:35:01 +05:00
await sleep(500);
2023-11-27 16:33:09 +05:00
await tapByText("Add your first notebook");
await createNotebook("Notebook 1", false, false);
2022-08-09 18:13:12 +05:00
await sleep(500);
await device.pressBack();
2022-04-03 03:35:01 +05:00
await sleep(500);
await visibleByText("Notebook 1");
2022-04-03 03:35:01 +05:00
await tapById(notesnook.ids.notebook.menu);
await tapByText("Add Shortcut");
2022-04-03 03:35:01 +05:00
let menu = elementById(notesnook.ids.default.header.buttons.left);
await menu.tap();
await visibleByText("Notebook 1");
2022-04-03 03:35:01 +05:00
});
2022-04-01 00:53:37 +05:00
});