65 lines
2.7 KiB
TypeScript
65 lines
2.7 KiB
TypeScript
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|
import { ValloxClient, ValloxConfigFlow, ValloxIntegration, ValloxMapper, createValloxDiscoveryDescriptor, type IValloxSnapshot } from '../../ts/integrations/vallox/index.js';
|
|
|
|
const rawData = {
|
|
"fan_speed": 3,
|
|
"temperature": 21.4,
|
|
"humidity": 43
|
|
};
|
|
|
|
tap.test('matches manual Vallox candidates and creates config flow output', async () => {
|
|
const descriptor = createValloxDiscoveryDescriptor();
|
|
const matcher = descriptor.getMatchers().find((matcherArg) => matcherArg.id === 'vallox-manual-match');
|
|
const result = await matcher!.matches({ host: 'vallox.local', name: 'Vallox', metadata: { rawData } }, {});
|
|
|
|
expect(result.matched).toBeTrue();
|
|
expect(result.candidate?.integrationDomain).toEqual('vallox');
|
|
|
|
const validation = await descriptor.getValidators()[0].validate(result.candidate!, {});
|
|
expect(validation.matched).toBeTrue();
|
|
|
|
const done = await (await new ValloxConfigFlow().start(result.candidate!, {})).submit!({});
|
|
expect(done.kind).toEqual('done');
|
|
expect(done.config?.host).toEqual('vallox.local');
|
|
});
|
|
|
|
tap.test('maps Vallox raw snapshots to runtime devices and entities', async () => {
|
|
const client = new ValloxClient({ name: 'Vallox Test', rawData });
|
|
const snapshot = await client.getSnapshot();
|
|
const devices = ValloxMapper.toDevices(snapshot);
|
|
const entities = ValloxMapper.toEntities(snapshot);
|
|
|
|
expect(snapshot.online).toBeTrue();
|
|
expect(snapshot.source).toEqual('manual');
|
|
expect(devices[0].integrationDomain).toEqual('vallox');
|
|
expect(entities.length > 0).toBeTrue();
|
|
});
|
|
|
|
tap.test('exposes Vallox runtime services without fake live control', async () => {
|
|
const runtime = await new ValloxIntegration().setup({ name: 'Vallox Runtime', rawData }, {});
|
|
const status = await runtime.callService!({ domain: 'vallox', service: 'status', target: {} });
|
|
const snapshot = status.data as IValloxSnapshot;
|
|
|
|
expect(status.success).toBeTrue();
|
|
expect(snapshot.online).toBeTrue();
|
|
expect((await runtime.devices())[0].name).toEqual('Vallox Runtime');
|
|
|
|
const liveCommand = await runtime.callService!({ domain: 'vallox', service: 'turn_on', target: {} });
|
|
expect(liveCommand.success).toBeFalse();
|
|
await runtime.destroy();
|
|
|
|
const executorRuntime = await new ValloxIntegration().setup({
|
|
name: 'Vallox Executor',
|
|
rawData,
|
|
commandExecutor: {
|
|
execute: async (requestArg) => ({ success: true, data: { service: requestArg.service } }),
|
|
},
|
|
}, {});
|
|
const executed = await executorRuntime.callService!({ domain: 'vallox', 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();
|