test: Add a test harness for the built card (#2653)

Mounts the card from `dist/` the way Home Assistant does, by URL with a
HACS tag, and asserts the entry stays a facade, that no chunk imports
it, that the browser is served the file unmodified, and that the card
starts up and fetches a language chunk lazily.

Runs in Chromium, Firefox and WebKit, so a change of bundler or minifier
is checked against every engine.
This commit is contained in:
Dermot Duffy
2026-08-03 21:50:21 -07:00
committed by GitHub
parent 18ea725564
commit 2d124fe3cd
18 changed files with 483 additions and 50 deletions
+30 -6
View File
@@ -1,8 +1,8 @@
import { expect, onTestFinished, vi } from 'vitest';
import { ACTION_HANDLER_HOLD_SECONDS } from '../../src/action-handler-directive';
import type { AdvancedCameraCard } from '../../src/card';
import type { RawAdvancedCameraCardConfig } from '../../src/config/types';
import { ACTION_HANDLER_HOLD_SECONDS } from '../../src/const';
import type { FakeEntityOptions, FakeHASS } from './fake-hass';
import { defineHAElementStubs } from './ha-element-stubs';
import { clickElement, deepQuery, deepQueryAll, getAllShadowRoots } from './test-utils';
@@ -400,21 +400,24 @@ export class MountedCard {
/**
* The card is ready to observe but not yet rendered: initializing happens
* after this returns, so a test waits for whatever it will assert on.
*
* `loadCard` puts the card's elements into the page. Where they come from is
* the caller's to decide: `MountedCardFactory` takes them from `src/`, and the
* suite covering a build ("dist") takes them from the file the build
* produced.
*/
public static async create(
loadCard: () => Promise<unknown>,
config: RawAdvancedCameraCardConfig,
hass: FakeHASS,
options?: MountOptions,
): Promise<MountedCard> {
// `src/patches` subclasses Home Assistant's three player elements as soon as
// those are defined, so the stubs must come first.
defineHAElementStubs();
await import('../../src/card');
await loadCard();
return new MountedCard(config, hass, options);
}
private constructor(
protected constructor(
config: RawAdvancedCameraCardConfig,
hass: FakeHASS,
options?: MountOptions,
@@ -613,3 +616,24 @@ export class MountedCard {
this.console.destroy();
}
}
export class MountedCardFactory {
// A card built from `src/`. Constrast with dist.browsers.test.ts .
public static async createFromSource(
config: RawAdvancedCameraCardConfig,
hass: FakeHASS,
options?: MountOptions,
): Promise<MountedCard> {
return await MountedCard.create(
async () => {
// `src/patches` subclasses Home Assistant's three player elements as
// soon as those are defined, so the stubs must come first.
defineHAElementStubs();
await import('../../src/card');
},
config,
hass,
options,
);
}
}
+4
View File
@@ -96,6 +96,9 @@ export interface StillCameraHASSOptions {
// Anything else the card should be able to see, as entity ID to state.
entities?: Record<string, FakeEntityOptions | string>;
// The language Home Assistant is set to for translation tests.
language?: string;
}
/**
@@ -111,6 +114,7 @@ export const createStillCameraHASS = (options?: StillCameraHASSOptions): FakeHAS
...options?.entities,
},
registry: Object.fromEntries(cameras.map((camera) => [camera, {}])),
...(options?.language && { language: options.language }),
});
};
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import { MountedCard } from '../browser/mounted-card';
import { MountedCardFactory, type MountedCard } from '../browser/mounted-card';
import {
createStillCameraHASS,
createStillImageCardConfig,
@@ -10,7 +10,7 @@ const TRIGGER_ENTITY = 'input_boolean.zoom';
const mount = async (): Promise<MountedCard> => {
const hass = createStillCameraHASS({ entities: { [TRIGGER_ENTITY]: 'off' } });
return await MountedCard.create(
return await MountedCardFactory.createFromSource(
createStillImageCardConfig({
automations: [
{
@@ -1,7 +1,7 @@
import { describe, expect, it, onTestFinished } from 'vitest';
import { createLogAction } from '../../src/utils/action';
import { MountedCard } from '../browser/mounted-card';
import { MountedCardFactory, type MountedCard } from '../browser/mounted-card';
import {
CARD_INITIALIZED_MESSAGE,
createInitializedAutomation,
@@ -18,7 +18,7 @@ import {
const KEY_MESSAGE = /key pressed/;
const mountCard = async (): Promise<MountedCard> => {
const card = await MountedCard.create(
const card = await MountedCardFactory.createFromSource(
createStillImageCardConfig({
automations: [
createInitializedAutomation(),
@@ -1,7 +1,7 @@
import { describe, expect, it, vi } from 'vitest';
import type { RawAdvancedCameraCardConfig } from '../../../src/config/types';
import { MountedCard } from '../../browser/mounted-card';
import { MountedCardFactory, type MountedCard } from '../../browser/mounted-card';
import {
CARD_INITIALIZED_MESSAGE,
createInitializedAutomation,
@@ -24,7 +24,7 @@ const createConfig = (
const mount = async (
overrides?: Partial<RawAdvancedCameraCardConfig>,
): Promise<MountedCard> =>
await MountedCard.create(
await MountedCardFactory.createFromSource(
createConfig(overrides),
createStillCameraHASS({ cameras: [OTHER_CAMERA_ENTITY] }),
);
@@ -1,6 +1,6 @@
import { describe, expect, it, vi } from 'vitest';
import { MountedCard } from '../../../browser/mounted-card';
import { MountedCardFactory, type MountedCard } from '../../../browser/mounted-card';
import {
CARD_INITIALIZED_MESSAGE,
createInitializedAutomation,
@@ -31,7 +31,7 @@ const waitForInitializationFailures = async (card: MountedCard): Promise<void> =
* is what makes it initializable, which a test does with `setEntityState`.
*/
const mountBrokenCard = async (): Promise<MountedCard> =>
await MountedCard.create(
await MountedCardFactory.createFromSource(
createStillImageCardConfig({
cameras: [createStillImageCameraConfig(MISSING_CAMERA_ENTITY)],
@@ -5,7 +5,11 @@ import { MEDIA_LOADING_TIMEOUT_SECONDS } from '../../../../src/card-controller/i
import { LIVENESS_ENTITY_UNAVAILABLE_GRACE_SECONDS } from '../../../../src/components-lib/live/liveness/detectors/entity-availability';
import { FRAME_STALL_SECONDS } from '../../../../src/components-lib/media-player/frame-stall-watchdog';
import type { RawAdvancedCameraCardConfig } from '../../../../src/config/types';
import { MountedCard, type MountOptions } from '../../../browser/mounted-card';
import {
MountedCardFactory,
type MountedCard,
type MountOptions,
} from '../../../browser/mounted-card';
import { useTestMedia } from '../../../browser/test-media';
import {
createFailingMediaURL,
@@ -58,7 +62,7 @@ const mountCard = async (
): Promise<MountedCard> => {
const { cameras, ...mountOptions } = options ?? {};
return await MountedCard.create(
return await MountedCardFactory.createFromSource(
createStillImageCardConfig({ status_bar: { style: 'outside' }, ...config }),
createStillCameraHASS({ cameras }),
mountOptions,
@@ -2,7 +2,11 @@ import { assert, describe, expect, it } from 'vitest';
import type { LogActionConfig } from '../../src/config/schema/actions/custom/log';
import { createLogAction } from '../../src/utils/action';
import { MountedCard, type MountOptions } from '../browser/mounted-card';
import {
MountedCardFactory,
type MountedCard,
type MountOptions,
} from '../browser/mounted-card';
import {
CARD_INITIALIZED_MESSAGE,
clickElement,
@@ -44,7 +48,7 @@ interface MountCardOptions extends MountOptions {
const mountCard = async (options?: MountCardOptions): Promise<MountedCard> => {
const { keyMessage, ...mountOptions } = options ?? {};
const card = await MountedCard.create(
const card = await MountedCardFactory.createFromSource(
createStillImageCardConfig({
menu: { style: 'outside', buttons: { expand: { enabled: true } } },
elements: [
@@ -1,7 +1,7 @@
import { describe, expect, it } from 'vitest';
import type { MediaLoadedInfoEventDetail } from '../../src/types';
import { MountedCard } from '../browser/mounted-card';
import { MountedCardFactory, type MountedCard } from '../browser/mounted-card';
import {
createStillCameraHASS,
createStillImageCardConfig,
@@ -23,7 +23,7 @@ interface RenderedElement extends Element {
const mount = async (): Promise<MountedCard> => {
const hass = createStillCameraHASS({ entities: { [UNRELATED_ENTITY]: 'off' } });
return await MountedCard.create(createStillImageCardConfig(), hass);
return await MountedCardFactory.createFromSource(createStillImageCardConfig(), hass);
};
const getMediaLoadedInfos = (card: MountedCard): MediaLoadedInfoEventDetail[] =>
+229
View File
@@ -0,0 +1,229 @@
import { beforeAll, describe, expect, it } from 'vitest';
import { commands } from 'vitest/browser';
import type { RawAdvancedCameraCardConfig } from '../../src/config/types';
import type { FakeHASS } from '../browser/fake-hass';
import { defineHAElementStubs } from '../browser/ha-element-stubs';
import {
MountedCard,
MountedCardFactory,
type MountOptions,
} from '../browser/mounted-card';
import {
createStillCameraHASS,
createStillImageCardConfig,
isLiveMediaShowing,
} from '../browser/test-utils';
// The two filenames a dashboard resource can name. Home Assistant loads one of
// these directly, so their names are fixed and the rest of the output is
// hashed.
const PUBLIC_ENTRY = 'advanced-camera-card.js';
const LEGACY_ENTRY = 'frigate-hass-card.js';
const PUBLIC_ENTRIES = [PUBLIC_ENTRY, LEGACY_ENTRY];
// A facade holds one re-export and nothing else. Generous size, so that this
// fails on an entry carrying the (whole) card rather than on formatting.
const MAX_FACADE_BYTES = 1024;
// What HACS appends to a dashboard resource URL. The value is arbitrary; that
// there is one is the point.
const HACSTAG = '1234567890';
const CARD_ELEMENT = 'advanced-camera-card';
const LEGACY_CARD_ELEMENT = 'frigate-card';
interface DistImports {
staticImports: string[];
dynamicImports: string[];
}
declare module 'vitest/browser' {
interface BrowserCommands {
listDistFiles: () => Promise<string[]>;
getDistImportGraph: () => Promise<Record<string, DistImports>>;
}
}
/**
* The card types registered in Home Assistant's card picker.
*/
const getRegisteredCardTypes = (): string[] => {
const registry: unknown = Reflect.get(window, 'customCards');
if (!Array.isArray(registry)) {
return [];
}
return registry.flatMap((entry: unknown) =>
typeof entry === 'object' && entry !== null && 'type' in entry
? [String(entry.type)]
: [],
);
};
// Read before the bundle is loaded below, so a test can tell what loading it
// registered.
const registrationsBeforeLoad = {
card: !!customElements.get(CARD_ELEMENT),
legacy: !!customElements.get(LEGACY_CARD_ELEMENT),
cardTypes: getRegisteredCardTypes(),
};
const getFileName = (specifier: string): string =>
specifier.split('/').pop() ?? specifier;
class BuildMountedCardFactory extends MountedCardFactory {
/**
* A card loaded from `url`, the way Home Assistant loads one: as a dashboard
* resource, with a HACS tag attached.
*/
public static async createFromBuild(
url: string,
config: RawAdvancedCameraCardConfig,
hass: FakeHASS,
options?: MountOptions,
): Promise<MountedCard> {
return await MountedCard.create(
async () => {
// The card side-loads Home Assistant's own elements as a required step
// of initializing, and gives up if they cannot be had. Before the card
// loads, because the build subclasses the three player elements as soon
// as they exist.
defineHAElementStubs();
// The backticks matter! Vite leaves a dynamic import alone
// when the file is a quoted string, and rewrites anything
// else to append `?import`, which asks for the file as a module and
// makes Vite refuse to serve a static one.
//
// The comment only silences the warning that the name could not be read
// at build time.
await import(/* @vite-ignore */ `${url}`);
},
config,
hass,
options,
);
}
}
/**
* The built card on the page, mounted from the file Home Assistant would load
* rather than from `src/`.
*/
const mountBuiltCard = async (
hass: FakeHASS = createStillCameraHASS(),
): Promise<MountedCard> =>
await BuildMountedCardFactory.createFromBuild(
`/${PUBLIC_ENTRY}?hacstag=${HACSTAG}`,
createStillImageCardConfig(),
hass,
);
beforeAll(async () => {
// These tests read a build rather than making one. Insist on existence.
const files = await commands.listDistFiles();
if (!files.includes(PUBLIC_ENTRY)) {
throw new Error(`No build to test. Run \`yarn run build\` first.`);
}
});
describe('the built card', () => {
it('should ship a public entry that only re-exports a hashed chunk', async () => {
const files = await commands.listDistFiles();
const graph = await commands.getDistImportGraph();
for (const entry of PUBLIC_ENTRIES) {
expect(files).toContain(entry);
const source = await commands.readFile(`dist/${entry}`);
expect(source.length).toBeLessThan(MAX_FACADE_BYTES);
// Everything it names is a real file, and none of it is another entry.
const specifiers = [...graph[entry].staticImports, ...graph[entry].dynamicImports];
expect(specifiers.length).toBeGreaterThan(0);
for (const specifier of specifiers) {
expect(files).toContain(getFileName(specifier));
}
}
});
it('should hand the browser the file exactly as it was built', async () => {
const served = await (await fetch(`/${PUBLIC_ENTRY}`)).text();
// Every other test here assumes the card it loads is the built one, which
// stops being true if Vite transforms the file on the way in.
expect(served).toBe(await commands.readFile(`dist/${PUBLIC_ENTRY}`));
});
it('should never import a public entry from another file', async () => {
const graph = await commands.getDistImportGraph();
// The browser treats a different URL as a different file, so a chunk
// importing the untagged entry would fetch and run the card a second time.
const offenders = Object.entries(graph).flatMap(([file, imports]) =>
[...imports.staticImports, ...imports.dynamicImports]
.filter((specifier) => PUBLIC_ENTRIES.includes(getFileName(specifier)))
.map((specifier) => `${file} -> ${specifier}`),
);
expect(offenders).toEqual([]);
});
it('should only have JavaScript output', async () => {
const files = await commands.listDistFiles();
// Home Assistant is pointed at one file and a release ships `dist/*.js`, so
// a stylesheet or an image emitted beside the bundle would never reach a
// user. Sourcemaps are allowed: a development build writes them, and they
// are not something the card fetches.
const assets = files.filter(
(file) => !file.endsWith('.js') && !file.endsWith('.js.map'),
);
expect(assets).toEqual([]);
});
it('should register the card exactly once when loaded with a HACS tag', async () => {
expect(registrationsBeforeLoad.card).toBe(false);
expect(registrationsBeforeLoad.legacy).toBe(false);
expect(registrationsBeforeLoad.cardTypes).not.toContain(CARD_ELEMENT);
await mountBuiltCard();
expect(customElements.get(CARD_ELEMENT)).toBeDefined();
expect(customElements.get(LEGACY_CARD_ELEMENT)).toBeDefined();
expect(
getRegisteredCardTypes().filter((type) => type.includes(CARD_ELEMENT)),
).toHaveLength(1);
});
it('should start up and show its camera', async () => {
const mounted = await mountBuiltCard();
// Starting up runs the whole of Lit's update cycle, which reaches the card
// only through the accessors `@property` installs. Were the decorator
// output wrong, writes would land on plain instance fields and none of this
// would work. This verifies the build's treatment of decorators rather than
// the card's behaviour per se (already well covered in other tests).
await mounted.events.waitForFirst('advanced-camera-card:media:loaded');
expect(isLiveMediaShowing(mounted.card)).toBe(true);
});
it('should fetch a language chunk only when that language is used', async () => {
const getLanguageChunks = (): string[] =>
performance
.getEntriesByType('resource')
.map((entry) => getFileName(entry.name))
.filter((file) => file.startsWith('lang-'));
// Clear resource timings to only measure the impact of mounting the card.
performance.clearResourceTimings();
const mounted = await mountBuiltCard(createStillCameraHASS({ language: 'de' }));
await mounted.events.waitForFirst('advanced-camera-card:media:loaded');
expect(getLanguageChunks()).toEqual([expect.stringMatching(/^lang-de-/)]);
});
});