Takes the flat module count from 66 to 42, continuing what admin/ and
calendar/ started.
lib/mailbox/ archiveDate, emptyFolder, folderMove, labelTree,
mailboxName, mailboxRoute
lib/sieve/ sieve, sieveApply, sieveFolders
lib/input/ keyboard, swipe, touch, listSelection, dropUpload
lib/notify/ notify, webpush, webpushEnable
lib/sw/ swCache, swFacts, staleBuild
lib/text/ html, markdown, text, emlName
FOUR THINGS THE FILENAMES GET WRONG, each checked by reading the file
rather than trusting what it is called:
- appFolder is not a mailbox. It is the `ihasmail` folder in JMAP
*Files*, where the client keeps signature images and synced settings.
It stays flat.
- format holds no formatting of text. It re-exports the date and clock
formatters, so it belongs with dates/datetime, not with text/.
- preview is the file viewer deciding what it can show without
downloading, and source is where to point someone asking for this
instance's AGPL source. Neither is about text.
- notify is not Web Push. It is the tab title, the favicon badge and
the new-mail sound -- in-app notification, which is why it sits with
webpush rather than under sw/ with the service worker's own concerns.
threadScroll stays flat too: it decides where a conversation opens, which
is view state rather than a gesture, and input/ is honest only if
everything in it interprets something the reader did.
No behavior change. Almost every reference was on the @/ alias; eight
relative imports in files that did not move, or that moved away from a
sibling, needed rewriting by hand.
109 lines
5.1 KiB
TypeScript
109 lines
5.1 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { retargetRules, detachFolders } from "../sieveFolders";
|
|
import { newRule, type SieveRule } from "../sieve";
|
|
|
|
/**
|
|
* Rules name their destination folder by path, because that is what Sieve
|
|
* needs. Rename the folder and the path is a lie: mail stops being filed and
|
|
* nothing says so. These keep the rules following the folder.
|
|
*/
|
|
const fileinto = (mailbox: string, mailboxId?: string, extra: SieveRule["actions"] = []): SieveRule["actions"] =>
|
|
[{ type: "fileinto", mailbox, ...(mailboxId ? { mailboxId } : {}) }, ...extra];
|
|
|
|
const rule = (name: string, actions: SieveRule["actions"]) => newRule({ id: name, name, actions });
|
|
|
|
describe("retargetRules", () => {
|
|
it("follows a folder that was renamed, matching on the id", () => {
|
|
const rules = [rule("news", fileinto("Newsletters", "mb1"))];
|
|
const out = retargetRules(rules, [{ id: "mb1", path: "Newsletters", newPath: "Reading" }]);
|
|
expect(out.changed).toBe(1);
|
|
expect(out.rules[0]!.actions[0]).toMatchObject({ mailbox: "Reading", mailboxId: "mb1" });
|
|
});
|
|
|
|
it("follows a folder for older rules that only know the path", () => {
|
|
const rules = [rule("news", fileinto("Newsletters"))];
|
|
const out = retargetRules(rules, [{ id: "mb1", path: "newsletters", newPath: "Reading" }]);
|
|
expect(out.changed).toBe(1);
|
|
// The id is recorded on the way past, so the next rename needs no guessing.
|
|
expect(out.rules[0]!.actions[0]).toMatchObject({ mailbox: "Reading", mailboxId: "mb1" });
|
|
});
|
|
|
|
it("follows a child whose parent was renamed", () => {
|
|
const rules = [rule("inv", fileinto("Work/Invoices", "mb2"))];
|
|
const out = retargetRules(rules, [
|
|
{ id: "mb1", path: "Work", newPath: "Clients" },
|
|
{ id: "mb2", path: "Work/Invoices", newPath: "Clients/Invoices" },
|
|
]);
|
|
expect(out.rules[0]!.actions[0]).toMatchObject({ mailbox: "Clients/Invoices" });
|
|
});
|
|
|
|
it("leaves everything alone when nothing actually moved", () => {
|
|
const rules = [rule("news", fileinto("Newsletters", "mb1"))];
|
|
const out = retargetRules(rules, [{ id: "mb1", path: "Newsletters", newPath: "Newsletters" }]);
|
|
expect(out.changed).toBe(0);
|
|
expect(out.rules).toBe(rules); // same array, so the caller can skip saving
|
|
});
|
|
|
|
it("does not touch rules aimed somewhere else", () => {
|
|
const rules = [rule("other", fileinto("Archive", "mb9"))];
|
|
expect(retargetRules(rules, [{ id: "mb1", path: "Newsletters", newPath: "Reading" }]).changed).toBe(0);
|
|
});
|
|
|
|
it("keeps the rule's other actions", () => {
|
|
const rules = [rule("news", fileinto("Newsletters", "mb1", [{ type: "markread" }, { type: "stop" }]))];
|
|
const out = retargetRules(rules, [{ id: "mb1", path: "Newsletters", newPath: "Reading" }]);
|
|
expect(out.rules[0]!.actions.map((a) => a.type)).toEqual(["fileinto", "markread", "stop"]);
|
|
});
|
|
});
|
|
|
|
describe("detachFolders", () => {
|
|
it("removes only the filing action, leaving the rest of the rule doing its job", () => {
|
|
const rules = [rule("news", fileinto("Newsletters", "mb1", [{ type: "markread" }, { type: "stop" }]))];
|
|
const out = detachFolders(rules, [{ id: "mb1", path: "Newsletters" }]);
|
|
expect(out.removed).toEqual([]);
|
|
expect(out.edited).toHaveLength(1);
|
|
expect(out.rules[0]!.actions.map((a) => a.type)).toEqual(["markread", "stop"]);
|
|
});
|
|
|
|
it("removes the rule when filing was all it did", () => {
|
|
const rules = [rule("news", fileinto("Newsletters", "mb1")), rule("keep", fileinto("Archive", "mb9"))];
|
|
const out = detachFolders(rules, [{ id: "mb1", path: "Newsletters" }]);
|
|
expect(out.removed.map((r) => r.name)).toEqual(["news"]);
|
|
expect(out.rules.map((r) => r.name)).toEqual(["keep"]);
|
|
});
|
|
|
|
it("handles a deleted folder's children too", () => {
|
|
const rules = [
|
|
rule("a", fileinto("Work", "mb1")),
|
|
rule("b", fileinto("Work/Invoices", "mb2", [{ type: "flag" }])),
|
|
];
|
|
const out = detachFolders(rules, [{ id: "mb1", path: "Work" }, { id: "mb2", path: "Work/Invoices" }]);
|
|
expect(out.removed.map((r) => r.name)).toEqual(["a"]);
|
|
expect(out.rules.map((r) => r.name)).toEqual(["b"]);
|
|
expect(out.rules[0]!.actions.map((a) => a.type)).toEqual(["flag"]);
|
|
});
|
|
|
|
it("still finds the rule when only the path matches", () => {
|
|
const rules = [rule("news", fileinto("Newsletters"))];
|
|
expect(detachFolders(rules, [{ id: "mb1", path: "NEWSLETTERS" }]).removed).toHaveLength(1);
|
|
});
|
|
|
|
it("keeps a second filing action aimed somewhere that still exists", () => {
|
|
const rules = [rule("both", [
|
|
{ type: "fileinto", mailbox: "Newsletters", mailboxId: "mb1" },
|
|
{ type: "fileinto", mailbox: "Archive", mailboxId: "mb9", copy: true },
|
|
])];
|
|
const out = detachFolders(rules, [{ id: "mb1", path: "Newsletters" }]);
|
|
expect(out.removed).toEqual([]);
|
|
expect(out.rules[0]!.actions).toEqual([{ type: "fileinto", mailbox: "Archive", mailboxId: "mb9", copy: true }]);
|
|
});
|
|
|
|
it("leaves the list untouched when nothing matches", () => {
|
|
const rules = [rule("keep", fileinto("Archive", "mb9"))];
|
|
const out = detachFolders(rules, [{ id: "mb1", path: "Newsletters" }]);
|
|
expect(out.rules).toBe(rules);
|
|
expect(out.edited).toEqual([]);
|
|
expect(out.removed).toEqual([]);
|
|
});
|
|
});
|