Files
obsidian-livesync/test/e2e-obsidian/runner/mobileUi.ts
T
2026-07-26 08:06:48 +00:00

164 lines
7.0 KiB
TypeScript

import { mkdir } from "node:fs/promises";
import { join } from "node:path";
import {
assertLocatorHasMinimumTouchTarget,
assertLocatorWithinSafeArea,
assertLocatorWithinViewport,
assertNoHorizontalOverflow,
} from "@vrtmrz/obsidian-test-session";
import type { Locator, Page } from "playwright";
import { withObsidianPage } from "./ui.ts";
export const mobileViewport = { width: 390, height: 844 } as const;
export const desktopViewport = { width: 1024, height: 768 } as const;
export const iPhoneSafeArea = { top: 47, right: 0, bottom: 34, left: 0 } as const;
type ObsidianTestApp = {
isMobile?: boolean;
emulateMobile?: (mobile: boolean) => void;
plugins?: { plugins: Record<string, unknown> };
workspace?: { layoutReady?: boolean };
};
type ObsidianTestGlobal = typeof globalThis & { app?: ObsidianTestApp };
async function applyObsidianMobileTestMode(
port: number,
enabled: boolean,
timeoutMs: number,
waitForLiveSync: boolean
): Promise<void> {
await withObsidianPage(port, async (page) => {
await page.setViewportSize(enabled ? mobileViewport : desktopViewport);
await page.evaluate((nextEnabled) => {
const obsidianApp = (globalThis as ObsidianTestGlobal).app;
if (typeof obsidianApp?.emulateMobile !== "function") {
throw new Error("app.emulateMobile is unavailable");
}
obsidianApp.emulateMobile(nextEnabled);
}, enabled);
// Obsidian reopens its workspace layout when platform emulation
// changes. Loading a controlled plug-in before that transition has
// completed can leave the plug-in enabled but absent from the active
// renderer.
try {
await page.waitForFunction(
({ nextEnabled, waitForLiveSync }) => {
const obsidianApp = (globalThis as ObsidianTestGlobal).app;
return (
document.body.classList.contains("is-mobile") === nextEnabled &&
obsidianApp?.workspace?.layoutReady === true &&
(!waitForLiveSync || obsidianApp?.plugins?.plugins["obsidian-livesync"] !== undefined)
);
},
{ nextEnabled: enabled, waitForLiveSync },
{ timeout: timeoutMs }
);
} catch (error) {
const state = await page.evaluate(() => {
const obsidianApp = (globalThis as ObsidianTestGlobal).app;
return {
appIsMobile: obsidianApp?.isMobile ?? null,
bodyClasses: document.body.className,
documentReadyState: document.readyState,
liveSyncLoaded: obsidianApp?.plugins?.plugins["obsidian-livesync"] !== undefined,
viewport: { width: window.innerWidth, height: window.innerHeight },
workspaceLayoutReady: obsidianApp?.workspace?.layoutReady ?? null,
};
});
const outputDirectory = process.env.E2E_OBSIDIAN_DIAGNOSTICS_DIR ?? "/tmp/obsidian-livesync-e2e";
await mkdir(outputDirectory, { recursive: true });
const screenshotPath = join(
outputDirectory,
waitForLiveSync
? "mobile-mode-transition.failure.png"
: "mobile-mode-before-plugin-start.failure.png"
);
await page.screenshot({ path: screenshotPath, fullPage: true });
const detail = error instanceof Error ? error.message : String(error);
throw new Error(
`Obsidian mobile-mode transition did not settle: ${JSON.stringify(state)}; screenshot=${screenshotPath}; cause=${detail}`
);
}
await page.evaluate(
(safeArea) => {
for (const edge of ["top", "right", "bottom", "left"] as const) {
const property = `--safe-area-inset-${edge}`;
if (safeArea === null) document.body.style.removeProperty(property);
else document.body.style.setProperty(property, `${safeArea[edge]}px`);
}
},
enabled ? iPhoneSafeArea : null
);
});
}
/** Enters mobile emulation before LiveSync's first load in a controlled session. */
export async function setObsidianMobileTestModeBeforePluginStart(
port: number,
enabled: boolean,
timeoutMs: number
): Promise<void> {
await applyObsidianMobileTestMode(port, enabled, timeoutMs, false);
}
export async function setObsidianMobileTestMode(port: number, enabled: boolean, timeoutMs: number): Promise<void> {
await applyObsidianMobileTestMode(port, enabled, timeoutMs, true);
}
export async function assertMobileDialogueLayout(page: Page, container: Locator, label: string): Promise<void> {
const dialogue = container.locator(".modal").last();
const closeButton = dialogue.locator(".modal-close-button");
await assertLocatorWithinViewport(page, dialogue, { label });
await assertNoHorizontalOverflow(page, dialogue, { label });
await assertLocatorWithinSafeArea(page, dialogue, {
label,
safeAreaInsets: iPhoneSafeArea,
});
await assertLocatorWithinSafeArea(page, closeButton, {
label: `${label} close button`,
safeAreaInsets: iPhoneSafeArea,
});
await assertLocatorHasMinimumTouchTarget(page, closeButton, {
label: `${label} close button`,
});
const visibleButtons = dialogue.locator("button:visible");
for (let index = 0; index < (await visibleButtons.count()); index++) {
const button = visibleButtons.nth(index);
const buttonLabel = (await button.innerText()).trim() || `button ${index + 1}`;
await assertLocatorWithinViewport(page, button, { label: `${label}: ${buttonLabel}` });
await assertLocatorWithinSafeArea(page, button, {
label: `${label}: ${buttonLabel}`,
safeAreaInsets: iPhoneSafeArea,
});
await assertNoHorizontalOverflow(page, button, { label: `${label}: ${buttonLabel}` });
await assertLocatorHasMinimumTouchTarget(page, button, { label: `${label}: ${buttonLabel}` });
}
}
export async function assertMobileNoticeLayout(
page: Page,
notice: Locator,
label: string,
reservedRightPx = 56
): Promise<void> {
await assertLocatorWithinViewport(page, notice, { label });
await assertNoHorizontalOverflow(page, notice, { label });
await assertLocatorWithinSafeArea(page, notice, {
label,
safeAreaInsets: iPhoneSafeArea,
});
const box = await notice.boundingBox();
if (box === null) {
throw new Error(`${label} did not expose a measurable viewport rectangle.`);
}
const viewportWidth = await page.evaluate(() => window.innerWidth);
const rightEdge = box.x + box.width;
if (rightEdge > viewportWidth - reservedRightPx) {
throw new Error(
`${label} overlaps the reserved close-control column: right edge ${rightEdge}, limit ${viewportWidth - reservedRightPx}.`
);
}
}