65 lines
2.8 KiB
TypeScript
65 lines
2.8 KiB
TypeScript
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|
import { VizioClient, VizioConfigFlow, VizioIntegration, VizioMapper, createVizioDiscoveryDescriptor, type IVizioSnapshot } from '../../ts/integrations/vizio/index.js';
|
|
|
|
const rawData = {
|
|
"power": true,
|
|
"input": "HDMI-1",
|
|
"volume": 12
|
|
};
|
|
|
|
tap.test('matches manual VIZIO SmartCast candidates and creates config flow output', async () => {
|
|
const descriptor = createVizioDiscoveryDescriptor();
|
|
const matcher = descriptor.getMatchers().find((matcherArg) => matcherArg.id === 'vizio-manual-match');
|
|
const result = await matcher!.matches({ host: 'vizio.local', name: 'VIZIO SmartCast', metadata: { rawData } }, {});
|
|
|
|
expect(result.matched).toBeTrue();
|
|
expect(result.candidate?.integrationDomain).toEqual('vizio');
|
|
|
|
const validation = await descriptor.getValidators()[0].validate(result.candidate!, {});
|
|
expect(validation.matched).toBeTrue();
|
|
|
|
const done = await (await new VizioConfigFlow().start(result.candidate!, {})).submit!({});
|
|
expect(done.kind).toEqual('done');
|
|
expect(done.config?.host).toEqual('vizio.local');
|
|
});
|
|
|
|
tap.test('maps VIZIO SmartCast raw snapshots to runtime devices and entities', async () => {
|
|
const client = new VizioClient({ name: 'VIZIO SmartCast Test', rawData });
|
|
const snapshot = await client.getSnapshot();
|
|
const devices = VizioMapper.toDevices(snapshot);
|
|
const entities = VizioMapper.toEntities(snapshot);
|
|
|
|
expect(snapshot.online).toBeTrue();
|
|
expect(snapshot.source).toEqual('manual');
|
|
expect(devices[0].integrationDomain).toEqual('vizio');
|
|
expect(entities.length > 0).toBeTrue();
|
|
});
|
|
|
|
tap.test('exposes VIZIO SmartCast runtime services without fake live control', async () => {
|
|
const runtime = await new VizioIntegration().setup({ name: 'VIZIO SmartCast Runtime', rawData }, {});
|
|
const status = await runtime.callService!({ domain: 'vizio', service: 'status', target: {} });
|
|
const snapshot = status.data as IVizioSnapshot;
|
|
|
|
expect(status.success).toBeTrue();
|
|
expect(snapshot.online).toBeTrue();
|
|
expect((await runtime.devices())[0].name).toEqual('VIZIO SmartCast Runtime');
|
|
|
|
const liveCommand = await runtime.callService!({ domain: 'vizio', service: 'turn_on', target: {} });
|
|
expect(liveCommand.success).toBeFalse();
|
|
await runtime.destroy();
|
|
|
|
const executorRuntime = await new VizioIntegration().setup({
|
|
name: 'VIZIO SmartCast Executor',
|
|
rawData,
|
|
commandExecutor: {
|
|
execute: async (requestArg) => ({ success: true, data: { service: requestArg.service } }),
|
|
},
|
|
}, {});
|
|
const executed = await executorRuntime.callService!({ domain: 'vizio', service: 'turn_on', target: {} });
|
|
expect(executed.success).toBeTrue();
|
|
expect((executed.data as { service: string }).service).toEqual('turn_on');
|
|
await executorRuntime.destroy();
|
|
});
|
|
|
|
export default tap.start();
|