test: Add browser tests for the media viewing gallery and viewer (#2661)

This commit is contained in:
Dermot Duffy
2026-08-07 16:08:56 -07:00
committed by GitHub
parent 567690831c
commit 673d8fe133
25 changed files with 1563 additions and 144 deletions
+214 -49
View File
@@ -1,19 +1,24 @@
import { userEvent } from 'vitest/browser';
import type { RawAdvancedCameraCardConfig } from '../../src/config/types';
import type {
PartialAdvancedCameraCardConfig,
RawAdvancedCameraCardConfig,
} from '../../src/config/types';
import type { Entity } from '../../src/ha/registry/entity/types';
import type { MediaLoadedInfoEventDetail } from '../../src/types';
import { createLogAction } from '../../src/utils/action';
import { isTruthy } from '../../src/utils/basic';
import { FakeHASS, type FakeEntityOptions } from './fake-hass';
import { isTestMediaInUse } from './test-media';
import { createFixtureURL, SNAPSHOT_FIXTURE_FILENAME } from './fixtures';
import type { MountedCard } from './mounted-card';
import { createTestMediaURL } from './test-media';
export const STILL_CAMERA_ENTITY = 'camera.office';
const STILL_FIXTURE_FILENAME = 'still-red.png';
export const CAMERA_ENTITY = 'camera.office';
// A same-origin still red image, served by the Vite dev server. The same image
// is handed on by the worker in test-media.ts, which can be asked to misbehave
// in useful ways.
const STILL_FIXTURE_URL = `/tests/browser/fixtures/${STILL_FIXTURE_FILENAME}`;
const STILL_FIXTURE_URL = createFixtureURL(SNAPSHOT_FIXTURE_FILENAME);
/**
* A card showing one still image and nothing else: no stream, no transport and
@@ -24,7 +29,7 @@ const STILL_FIXTURE_URL = `/tests/browser/fixtures/${STILL_FIXTURE_FILENAME}`;
* configuration error instead of the image.
*/
export const createStillImageCameraConfig = (
cameraEntity: string = STILL_CAMERA_ENTITY,
cameraEntity: string = CAMERA_ENTITY,
url: string = STILL_FIXTURE_URL,
): RawAdvancedCameraCardConfig => ({
camera_entity: cameraEntity,
@@ -39,62 +44,53 @@ export const createStillImageCameraConfig = (
const HTTP_NOT_FOUND = 404;
const HTTP_OK = 200;
/**
* A media URL answered with the given statuses in order. Once they run out
* every request after them is answered as the last one was, or, if the camera
* is meant to go quiet, never answered at all.
*
* Every URL carries its own counter, since one worker serves every test in a
* file and a shared counter would make a test depend on what ran before it.
*/
const createMediaURL = (responses: number[], repeat = false): string => {
if (!isTestMediaInUse()) {
throw new Error(
'Media that misbehaves must be served in a file using useTestMedia().',
);
}
return (
`/test-media/${STILL_FIXTURE_FILENAME}?` +
new URLSearchParams({
token: crypto.randomUUID(),
responses: responses.join(','),
repeat: String(repeat),
}).toString()
);
};
/**
* A media URL that fails the given number of times and then works from there
* on, so a test can make a camera recover rather than only fail.
*/
export const createTemporarilyFailingMediaURL = (failures: number): string =>
createMediaURL([...Array(failures).fill(HTTP_NOT_FOUND), HTTP_OK], true);
export const createTemporarilyFailingMediaURL = (
failures: number,
filename?: string,
): string =>
createTestMediaURL([...Array(failures).fill(HTTP_NOT_FOUND), HTTP_OK], true, filename);
/**
* A media URL that never works, for a camera that is simply broken.
*/
export const createFailingMediaURL = (): string =>
createMediaURL([HTTP_NOT_FOUND], true);
createTestMediaURL([HTTP_NOT_FOUND], true);
/**
* A media URL that is never answered, for a camera that accepts the request and
* then says nothing. Silence is a different failure from a refusal, and the
* only one that can run a loading timeout out.
*/
export const createUnansweredMediaURL = (): string => createMediaURL([]);
export const createUnansweredMediaURL = (): string => createTestMediaURL([]);
/**
* A media URL that answers once and is then never answered again, for a camera
* that delivers a picture and goes quiet behind it.
*/
export const createStallingMediaURL = (): string => createMediaURL([HTTP_OK]);
export const createStallingMediaURL = (filename?: string): string =>
createTestMediaURL([HTTP_OK], false, filename);
export interface FakeCameraDescription {
entityID: string;
entity: FakeEntityOptions;
registry: Partial<Entity>;
}
const createGenericCameraDescription = (
entityID: string = CAMERA_ENTITY,
): FakeCameraDescription => ({
entityID,
entity: { state: 'idle' },
registry: {},
});
export interface CameraHASSOptions {
// Camera entities beyond the default one.
cameras?: string[];
// Anything else the card should be able to see, as entity ID to state.
// Anything that is not a camera the card should be able to see, such as a
// motion sensor. These get a state and no entity registry entry.
entities?: Record<string, FakeEntityOptions | string>;
// The language Home Assistant is set to for translation tests.
@@ -105,22 +101,48 @@ export interface CameraHASSOptions {
* A Home Assistant holding the cameras a card is about to be given, which is
* the minimum any browser test needs before it can mount anything.
*/
export const createCameraHASS = (options?: CameraHASSOptions): FakeHASS => {
const cameras = [STILL_CAMERA_ENTITY, ...(options?.cameras ?? [])];
return new FakeHASS({
export const createCameraHASS = (
cameras: FakeCameraDescription[],
options?: CameraHASSOptions,
): FakeHASS =>
new FakeHASS({
entities: {
...Object.fromEntries(cameras.map((camera) => [camera, { state: 'idle' }])),
...Object.fromEntries(cameras.map((camera) => [camera.entityID, camera.entity])),
...options?.entities,
},
registry: Object.fromEntries(cameras.map((camera) => [camera, {}])),
registry: Object.fromEntries(
cameras.map((camera) => [camera.entityID, camera.registry]),
),
...(options?.language && { language: options.language }),
});
export interface GenericCameraHASSOptions extends CameraHASSOptions {
// Camera entities beyond `CAMERA_ENTITY`, which is always present. Each gets
// a state and an entity registry entry, which is what the card reads to
// resolve a camera and choose its engine.
cameras?: string[];
}
/**
* A Home Assistant whose cameras all belong to no named integration, for a test
* that is about the card rather than about where its media comes from.
*/
export const createGenericCameraHASS = (
options?: GenericCameraHASSOptions,
): FakeHASS => {
const { cameras, ...hassOptions } = options ?? {};
return createCameraHASS(
[CAMERA_ENTITY, ...(cameras ?? [])].map((camera) =>
createGenericCameraDescription(camera),
),
hassOptions,
);
};
export const createStillImageCardConfig = (
overrides?: Partial<RawAdvancedCameraCardConfig>,
): RawAdvancedCameraCardConfig => ({
overrides?: PartialAdvancedCameraCardConfig,
): PartialAdvancedCameraCardConfig => ({
type: 'custom:advanced-camera-card',
cameras: [createStillImageCameraConfig()],
@@ -224,6 +246,149 @@ export const isLiveMediaShowing = (root: ParentNode): boolean =>
(provider) => !!deepQuery(provider, MEDIA_SELECTOR),
);
/**
* Wait until the card has been told an element is on screen.
*
* Parts of the card only begin work once an element becomes visible, being
* notified by an `IntersectionObserver`. A test cannot reach those observers,
* but it can make one of its own: a document notifies its observers in the
* order they were created, so one created after the card's is strictly called
* after them. As such, by the time this function reports the element, the
* card's intersection observer callback has already run and whatever it started
* is deterministically under way.
*
* Name the element the card is itself watching, e.g.
* `advanced-camera-card-live-provider` for liveness detection. It is waited for
* rather than taken as an element, since the card makes its observer when the
* element connects: observing beforehand would make this the earlier of the two
* and run the ordering above the other way.
*/
export const waitUntilObservedVisible = async (
card: MountedCard,
selector: string,
): Promise<void> => {
const element = await card.waitForSelector(selector);
await new Promise<void>((resolve) => {
const observer = new IntersectionObserver((entries) => {
if (entries.some((entry) => entry.isIntersecting)) {
observer.disconnect();
resolve();
}
});
observer.observe(element);
});
};
/**
* Where a media element is being served from.
*/
const getMediaURL = (media: Element): string | null => {
if (media instanceof HTMLImageElement || media instanceof HTMLMediaElement) {
return media.currentSrc || media.getAttribute('src') || null;
}
return null;
};
/**
* Every media the media viewer has loaded, in the order it rendered them. The
* viewer holds a provider per media item and each loads once it has been on
* screen, so this is one entry per media a test has visited.
*/
export const getMediaViewerMediaURLs = (root: ParentNode): string[] =>
deepQueryAll(root, 'advanced-camera-card-viewer-provider')
.map((provider) => deepQuery(provider, MEDIA_SELECTOR))
.map((media) => (media ? getMediaURL(media) : null))
.filter((url) => url !== null);
/**
* The thumbnails on screen.
*/
export const getThumbnails = (root: ParentNode): HTMLElement[] =>
deepQueryAll<HTMLElement>(root, 'advanced-camera-card-thumbnail');
export const getSelectedThumbnail = (root: ParentNode): HTMLElement | null =>
deepQuery<HTMLElement>(root, 'advanced-camera-card-thumbnail.slide-selected');
export const clickThumbnail = async (root: ParentNode, index: number): Promise<void> => {
const thumbnail = getThumbnails(root)[index];
if (!thumbnail) {
throw new Error(`There is no thumbnail at index ${index} to click`);
}
await clickElement(thumbnail);
};
export const waitForThumbnails = async (
card: MountedCard,
count: number,
): Promise<void> => {
await card.waitForRender(
() => (getThumbnails(card.card).length >= count ? true : null),
`${count} thumbnail(s)`,
);
};
/**
* Wait until the media viewer has loaded a media whose URL contains the given
* text, which is how a test waits for the media it asked for to arrive.
*/
export const waitForMediaViewerMedia = async (
card: MountedCard,
url: string,
): Promise<void> => {
await card.waitForRender(
() =>
getMediaViewerMediaURLs(card.card).some((shown) => shown.includes(url)) || null,
`the media viewer showing ${url}`,
);
};
/**
* Move the media viewer to the next or previous media.
*
* A next/previous control has no size of its own: what is drawn and positioned
* is within it, so that is what a real pointer can reach.
*/
export const clickNextPreviousMedia = async (
root: ParentNode,
side: 'left' | 'right',
): Promise<void> => {
const control = deepQuery(
root,
`advanced-camera-card-next-previous-control[slot="${side}"]`,
);
const clickable = control ? deepQuery(control, '.controls') : null;
if (!clickable) {
throw new Error(`The media viewer is showing no ${side} control`);
}
await clickElement(clickable);
};
// Everything the status bar is displaying gets this class, whether it is a
// string, an icon or an image.
const STATUS_BAR_ITEM_SELECTOR = '.item';
const getStatusBarItems = (root: ParentNode): Element[] => [
...(deepQuery(root, 'advanced-camera-card-status-bar')?.shadowRoot?.querySelectorAll(
STATUS_BAR_ITEM_SELECTOR,
) ?? []),
];
/**
* What the status bar is displaying, one entry per item, in the order shown.
* Items with no text of their own (an icon, an image) are omitted.
*/
export const getStatusBarStrings = (root: ParentNode): string[] =>
getStatusBarItems(root)
.map((item) => (item.textContent ?? '').trim())
.filter(isTruthy);
/**
* Get a status bar item by the title it carries.
*/
export const getStatusBarItem = (root: ParentNode, title: string): Element | null =>
getStatusBarItems(root).find((item) => item.getAttribute('title') === title) ?? null;
// `userEvent.keyboard` is given one string naming every key to press, in which
// a name of more than one character is wrapped in braces (`{Escape}`) and a
// single character stands for itself.