mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
dsh --profile <name> replaces the fixed entry modes: --config and -p are removed, --patch adds overlays over the composed profile, a positional task selects one-shot mode (requires the headless-runner row), and dsh web stays as the alias for --profile web carrying the Web flag family as patches. dsh plugin --profile <name> forwards verbatim to pnpm in the profile directory, initializes on first use, and reconciles the dsh.plugins layer list after add/remove (patch-less packages warn and stay plain dependencies). Config dumps and the keyless web e2e scaffold compose the same bundle layers over the same empty root as the boot.
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
/** Single-sample LAN-trust resolution for the /api browser-trust fence (`resolveLanTrust`). */
|
|
|
|
import { describe, expect, it, vi } from 'vitest'
|
|
import { resolveLanTrust } from '../src/web.ts'
|
|
|
|
vi.mock('node:os', () => ({
|
|
networkInterfaces: () => ({
|
|
lo0: [
|
|
{ family: 'IPv4', internal: true, address: '127.0.0.1' },
|
|
],
|
|
en0: [
|
|
{ family: 'IPv6', internal: false, address: 'fe80::1' },
|
|
{ family: 'IPv4', internal: false, address: '192.168.1.5' },
|
|
],
|
|
en1: [
|
|
{ family: 'IPv4', internal: false, address: '10.0.0.7' },
|
|
],
|
|
utun0: undefined,
|
|
}),
|
|
}))
|
|
|
|
describe('resolveLanTrust', () => {
|
|
it('samples non-internal IPv4 addresses once for an all-interfaces bind: trust and display share them', () => {
|
|
const { lanAddresses, trustedHosts } = resolveLanTrust('0.0.0.0', ['harness.internal:3080'])
|
|
expect(lanAddresses).toEqual(['192.168.1.5', '10.0.0.7'])
|
|
expect(trustedHosts).toEqual(['192.168.1.5', '10.0.0.7', 'harness.internal:3080'])
|
|
})
|
|
|
|
it('derives nothing for a loopback or unresolved bind — extras alone stand, no LAN URL to print', () => {
|
|
expect(resolveLanTrust('127.0.0.1', [])).toEqual({ lanAddresses: [], trustedHosts: [] })
|
|
expect(resolveLanTrust(undefined, ['lab.internal'])).toEqual({ lanAddresses: [], trustedHosts: ['lab.internal'] })
|
|
})
|
|
})
|