mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Introduce `paseo daemon pair` CLI command that generates a local pairing offer URL with QR code without requiring a running daemon. Update message input to support mute/unmute toggle during realtime voice sessions with visual feedback (MicOff icon). Fix android:prod build script to use prebuild + assembleRelease flow.
142 lines
6.0 KiB
TypeScript
142 lines
6.0 KiB
TypeScript
#!/usr/bin/env npx tsx
|
|
|
|
/**
|
|
* Phase 2: Daemon Command Tests
|
|
*
|
|
* Tests daemon commands - currently focused on error cases and help
|
|
* since daemon start may not be fully working yet.
|
|
*
|
|
* Tests:
|
|
* - daemon --help shows subcommands
|
|
* - daemon pair prints a local pairing link without requiring a running daemon
|
|
* - daemon status fails gracefully when daemon not running
|
|
* - daemon status --json outputs valid JSON (even for errors)
|
|
* - daemon stop handles daemon not running gracefully
|
|
*/
|
|
|
|
import assert from 'node:assert'
|
|
import { $ } from 'zx'
|
|
import { mkdtemp, rm } from 'fs/promises'
|
|
import { tmpdir } from 'os'
|
|
import { join } from 'path'
|
|
|
|
$.verbose = false
|
|
|
|
console.log('=== Daemon Commands ===\n')
|
|
|
|
// Get random port that's definitely not in use (never 6767)
|
|
const port = 10000 + Math.floor(Math.random() * 50000)
|
|
const paseoHome = await mkdtemp(join(tmpdir(), 'paseo-test-home-'))
|
|
|
|
try {
|
|
// Test 1: daemon --help shows subcommands
|
|
{
|
|
console.log('Test 1: daemon --help shows subcommands')
|
|
const result = await $`npx paseo daemon --help`.nothrow()
|
|
assert.strictEqual(result.exitCode, 0, 'daemon --help should exit 0')
|
|
assert(result.stdout.includes('start'), 'help should mention start')
|
|
assert(result.stdout.includes('status'), 'help should mention status')
|
|
assert(result.stdout.includes('stop'), 'help should mention stop')
|
|
assert(result.stdout.includes('restart'), 'help should mention restart')
|
|
assert(result.stdout.includes('pair'), 'help should mention pair')
|
|
console.log('✓ daemon --help shows subcommands\n')
|
|
}
|
|
|
|
// Test 2: daemon pair works without daemon process
|
|
{
|
|
console.log('Test 2: daemon pair prints local pairing URL')
|
|
const result =
|
|
await $`PASEO_HOME=${paseoHome} npx paseo daemon pair`.nothrow()
|
|
assert.strictEqual(result.exitCode, 0, 'daemon pair should succeed')
|
|
assert(result.stdout.includes('Scan to pair:'), 'output should include scan header')
|
|
assert(result.stdout.includes('#offer='), 'output should include pairing offer fragment')
|
|
console.log('✓ daemon pair prints local pairing URL\n')
|
|
}
|
|
|
|
// Test 3: daemon status fails gracefully when daemon not running
|
|
{
|
|
console.log('Test 3: daemon status fails gracefully when not running')
|
|
const result =
|
|
await $`PASEO_HOST=localhost:${port} PASEO_HOME=${paseoHome} npx paseo daemon status`.nothrow()
|
|
assert.notStrictEqual(result.exitCode, 0, 'should fail when daemon not running')
|
|
// The error should mention something about daemon not running or connection
|
|
const output = result.stdout + result.stderr
|
|
const hasDaemonError =
|
|
output.toLowerCase().includes('daemon') ||
|
|
output.toLowerCase().includes('connect') ||
|
|
output.toLowerCase().includes('running')
|
|
assert(hasDaemonError, 'error message should mention daemon/connect/running')
|
|
console.log('✓ daemon status fails gracefully when not running\n')
|
|
}
|
|
|
|
// Test 4: daemon status --json outputs valid JSON (even for errors)
|
|
{
|
|
console.log('Test 4: daemon status --json outputs JSON')
|
|
const result =
|
|
await $`PASEO_HOST=localhost:${port} PASEO_HOME=${paseoHome} npx paseo daemon status --json`.nothrow()
|
|
// Should still fail (daemon not running)
|
|
assert.notStrictEqual(result.exitCode, 0, 'should fail when daemon not running')
|
|
// But output should be valid JSON
|
|
const output = result.stdout.trim()
|
|
if (output.length > 0) {
|
|
try {
|
|
JSON.parse(output)
|
|
console.log('✓ daemon status --json outputs valid JSON\n')
|
|
} catch {
|
|
// If stdout is empty, check if stderr has the error (acceptable for now)
|
|
console.log('✓ daemon status --json handled error (output may be in stderr)\n')
|
|
}
|
|
} else {
|
|
// Empty stdout is acceptable if error is in stderr
|
|
console.log('✓ daemon status --json handled error gracefully\n')
|
|
}
|
|
}
|
|
|
|
// Test 5: daemon stop handles daemon not running gracefully
|
|
{
|
|
console.log('Test 5: daemon stop handles daemon not running')
|
|
const result =
|
|
await $`PASEO_HOST=localhost:${port} PASEO_HOME=${paseoHome} npx paseo daemon stop`.nothrow()
|
|
// Stop should succeed even if daemon not running (idempotent)
|
|
// OR it should fail gracefully with a clear message
|
|
const output = result.stdout + result.stderr
|
|
if (result.exitCode === 0) {
|
|
// If it succeeds, it should mention the daemon wasn't running
|
|
const mentionsNotRunning =
|
|
output.toLowerCase().includes('not running') ||
|
|
output.toLowerCase().includes('was not running')
|
|
assert(mentionsNotRunning, 'success output should mention daemon was not running')
|
|
console.log('✓ daemon stop succeeds gracefully when daemon not running\n')
|
|
} else {
|
|
// If it fails, error should be clear
|
|
const hasError =
|
|
output.toLowerCase().includes('daemon') ||
|
|
output.toLowerCase().includes('connect') ||
|
|
output.toLowerCase().includes('not running')
|
|
assert(hasError, 'error message should be clear about daemon state')
|
|
console.log('✓ daemon stop fails gracefully when daemon not running\n')
|
|
}
|
|
}
|
|
|
|
// Test 6: daemon restart fails when daemon not running
|
|
{
|
|
console.log('Test 6: daemon restart fails when daemon not running')
|
|
const result =
|
|
await $`PASEO_HOST=localhost:${port} PASEO_HOME=${paseoHome} npx paseo daemon restart`.nothrow()
|
|
// Restart should fail when daemon not running (can't restart something that's not running)
|
|
assert.notStrictEqual(result.exitCode, 0, 'should fail when daemon not running')
|
|
const output = result.stdout + result.stderr
|
|
const hasError =
|
|
output.toLowerCase().includes('daemon') ||
|
|
output.toLowerCase().includes('not running') ||
|
|
output.toLowerCase().includes('connect')
|
|
assert(hasError, 'error message should mention daemon state')
|
|
console.log('✓ daemon restart fails appropriately when daemon not running\n')
|
|
}
|
|
} finally {
|
|
// Clean up temp directory
|
|
await rm(paseoHome, { recursive: true, force: true })
|
|
}
|
|
|
|
console.log('=== All daemon tests passed ===')
|