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
+48
View File
@@ -0,0 +1,48 @@
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { createKodiDiscoveryDescriptor } from '../../ts/integrations/kodi/index.js';
tap.test('matches Kodi JSON-RPC mDNS records', async () => {
const descriptor = createKodiDiscoveryDescriptor();
const matcher = descriptor.getMatchers()[0];
const result = await matcher.matches({
type: '_xbmc-jsonrpc-h._tcp.local.',
name: 'Living Room Kodi._xbmc-jsonrpc-h._tcp.local.',
host: 'living-room-kodi.local',
port: 8080,
txt: {
uuid: 'kodi-uuid-123',
version: '21.0',
},
}, {});
expect(result.matched).toBeTrue();
expect(result.candidate?.host).toEqual('living-room-kodi.local');
expect(result.candidate?.port).toEqual(8080);
expect(result.normalizedDeviceId).toEqual('kodi-uuid-123');
});
tap.test('matches manual Kodi host entries', async () => {
const descriptor = createKodiDiscoveryDescriptor();
const matcher = descriptor.getMatchers()[1];
const result = await matcher.matches({
host: '192.168.1.70',
name: 'Living Room Kodi',
}, {});
expect(result.matched).toBeTrue();
expect(result.candidate?.host).toEqual('192.168.1.70');
expect(result.candidate?.port).toEqual(8080);
});
tap.test('validates Kodi candidates', async () => {
const descriptor = createKodiDiscoveryDescriptor();
const validator = descriptor.getValidators()[0];
const result = await validator.validate({
source: 'mdns',
integrationDomain: 'kodi',
host: '192.168.1.71',
port: 8080,
}, {});
expect(result.matched).toBeTrue();
expect(result.confidence).toEqual('high');
});
export default tap.start();