Add native media and network integrations

This commit is contained in:
2026-05-05 16:20:10 +00:00
parent 1eebd71e7d
commit 489d9d5243
63 changed files with 8605 additions and 195 deletions
+59
View File
@@ -0,0 +1,59 @@
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { createTplinkDiscoveryDescriptor } from '../../ts/integrations/tplink/index.js';
tap.test('matches TP-Link Kasa/Tapo mDNS records', async () => {
const descriptor = createTplinkDiscoveryDescriptor();
const matcher = descriptor.getMatchers()[0];
const result = await matcher.matches({
type: '_tplink._tcp.local.',
name: 'Living Plug._tplink._tcp.local.',
host: 'living-plug.local',
port: 80,
txt: {
model: 'KP125M',
mac: 'F0-A7-31-00-11-22',
alias: 'Living Plug',
},
}, {});
expect(result.matched).toBeTrue();
expect(result.candidate?.integrationDomain).toEqual('tplink');
expect(result.normalizedDeviceId).toEqual('f0:a7:31:00:11:22');
});
tap.test('matches Home Assistant TP-Link DHCP rules', async () => {
const descriptor = createTplinkDiscoveryDescriptor();
const matcher = descriptor.getMatchers()[1];
const result = await matcher.matches({
hostname: 'HS110-Office',
ipAddress: '192.168.1.44',
macAddress: '50:C7:BF:AA:BB:CC',
}, {});
expect(result.matched).toBeTrue();
expect(result.candidate?.host).toEqual('192.168.1.44');
});
tap.test('validates manual snapshot candidates', async () => {
const descriptor = createTplinkDiscoveryDescriptor();
const manualMatcher = descriptor.getMatchers()[2];
const validator = descriptor.getValidators()[0];
const manual = await manualMatcher.matches({
host: '192.168.1.55',
model: 'Tapo P110',
alias: 'Desk Plug',
snapshot: {
connected: true,
devices: [],
entities: [],
events: [],
},
}, {});
const validated = await validator.validate(manual.candidate!, {});
expect(manual.matched).toBeTrue();
expect(validated.matched).toBeTrue();
expect(validated.metadata?.encryptedLocalProtocolImplemented).toEqual(false);
});
export default tap.start();