Files
notesnook/apps/web/__e2e__/vault.test.ts

128 lines
4.3 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 { getTestId, NOTE, PASSWORD } from "./utils";
test("locking a note should show vault unlocked status", async ({ page }) => {
const app = new AppModel(page);
await app.goto();
const notes = await app.goToNotes();
const note = await notes.createNote(NOTE);
const vaultUnlockedStatus = page.locator(getTestId("vault-unlocked"));
await note?.contextMenu.lock(PASSWORD);
await expect(vaultUnlockedStatus).toBeVisible();
});
test("clicking on vault unlocked status should lock the vault", async ({
page
}) => {
const app = new AppModel(page);
await app.goto();
const notes = await app.goToNotes();
const note = await notes.createNote(NOTE);
const vaultUnlockedStatus = page.locator(getTestId("vault-unlocked"));
await note?.contextMenu.lock(PASSWORD);
await note?.openLockedNote(PASSWORD);
await vaultUnlockedStatus.waitFor({ state: "visible" });
await vaultUnlockedStatus.click();
await expect(vaultUnlockedStatus).toBeHidden();
expect(await note?.contextMenu.isLocked()).toBe(true);
});
test("opening a locked note should show vault unlocked status", async ({
page
}) => {
const app = new AppModel(page);
await app.goto();
const notes = await app.goToNotes();
const note = await notes.createNote(NOTE);
const vaultUnlockedStatus = page.locator(getTestId("vault-unlocked"));
await note?.contextMenu.lock(PASSWORD);
await vaultUnlockedStatus.waitFor({ state: "visible" });
await vaultUnlockedStatus.click();
await vaultUnlockedStatus.waitFor({ state: "hidden" });
await note?.openLockedNote(PASSWORD);
await expect(vaultUnlockedStatus).toBeVisible();
});
test("unlocking a note permanently should not show vault unlocked status", async ({
page
}) => {
const app = new AppModel(page);
await app.goto();
const notes = await app.goToNotes();
const note = await notes.createNote(NOTE);
const vaultUnlockedStatus = page.locator(getTestId("vault-unlocked"));
await note?.contextMenu.lock(PASSWORD);
await vaultUnlockedStatus.waitFor({ state: "visible" });
await vaultUnlockedStatus.click();
await vaultUnlockedStatus.waitFor({ state: "hidden" });
await note?.contextMenu.unlock(PASSWORD);
await expect(vaultUnlockedStatus).toBeHidden();
});
test("clicking on vault unlocked status should lock the note", async ({
page
}) => {
const app = new AppModel(page);
await app.goto();
const notes = await app.goToNotes();
const note = await notes.createNote(NOTE);
await note?.contextMenu.lock(PASSWORD);
await note?.openLockedNote(PASSWORD);
expect(await note?.isLockedNotePasswordFieldVisible()).toBe(false);
const vaultUnlockedStatus = page.locator(getTestId("vault-unlocked"));
await vaultUnlockedStatus.waitFor({ state: "visible" });
await vaultUnlockedStatus.click();
expect(await note?.isLockedNotePasswordFieldVisible()).toBe(true);
});
test("clicking on vault unlocked status should lock the readonly note", async ({
page
}) => {
const app = new AppModel(page);
await app.goto();
const notes = await app.goToNotes();
const note = await notes.createNote(NOTE);
await note?.properties.readonly();
await note?.contextMenu.lock(PASSWORD);
await note?.openLockedNote(PASSWORD);
expect(await note?.isLockedNotePasswordFieldVisible()).toBe(false);
const vaultUnlockedStatus = page.locator(getTestId("vault-unlocked"));
await vaultUnlockedStatus.waitFor({ state: "visible" });
await vaultUnlockedStatus.click();
expect(await note?.isLockedNotePasswordFieldVisible()).toBe(true);
});