29 lines
1.9 KiB
TypeScript
29 lines
1.9 KiB
TypeScript
|
|
import assert from 'node:assert/strict';
|
||
|
|
import { readFileSync } from 'node:fs';
|
||
|
|
import test from 'node:test';
|
||
|
|
|
||
|
|
const appSource = [
|
||
|
|
readFileSync(new URL('../app/AppSideEffects.tsx', import.meta.url), 'utf8'),
|
||
|
|
readFileSync(new URL('../app/hosts/TerminalHost.tsx', import.meta.url), 'utf8'),
|
||
|
|
readFileSync(new URL('../app/hosts/ChromeHost.tsx', import.meta.url), 'utf8'),
|
||
|
|
].join('\n');
|
||
|
|
const hookSource = readFileSync(new URL('./useManualTerminalChromeSurfaceInjection.ts', import.meta.url), 'utf8');
|
||
|
|
const bridgeSource = readFileSync(new URL('../../components/terminalLayer/TerminalLayerTabBridge.tsx', import.meta.url), 'utf8');
|
||
|
|
const varsSource = readFileSync(new URL('../../infrastructure/theme/terminalAppearanceVars.ts', import.meta.url), 'utf8');
|
||
|
|
|
||
|
|
test('manual mode injects chrome surfaces from focused session theme', () => {
|
||
|
|
assert.match(appSource, /includeChromeSurfaces: followAppTerminalTheme/);
|
||
|
|
assert.match(bridgeSource, /useManualTerminalChromeSurfaceInjection/);
|
||
|
|
assert.match(bridgeSource, /!s\.followAppTerminalTheme && isTerminalLayerVisible/);
|
||
|
|
assert.match(readFileSync(new URL('../app/AppHostTreeLayer.tsx', import.meta.url), 'utf8'), /useManualTerminalChromeSurfaceInjection/);
|
||
|
|
// App feeds the focused-session resolver to AppActiveTabChrome through the
|
||
|
|
// memoized shell chrome bag (AppShell spreads it onto the chrome component).
|
||
|
|
assert.match(appSource, /resolveSessionAppearance: resolveFocusedAppearance/);
|
||
|
|
assert.match(hookSource, /applyTopTabsChromeThemeVars\(theme\)/);
|
||
|
|
assert.match(hookSource, /injectTerminalLayerChromeSurfaceVars\(theme\)/);
|
||
|
|
assert.match(hookSource, /if \(wasEnabled\) \{[\s\S]*clearTerminalLayerChromeSurfaceVars\(\)/);
|
||
|
|
assert.doesNotMatch(hookSource, /clearTopTabsChromeThemeVars\(\)/);
|
||
|
|
assert.match(varsSource, /injectTerminalLayerChromeSurfaceVars/);
|
||
|
|
assert.match(varsSource, /clearTerminalLayerChromeSurfaceVars/);
|
||
|
|
});
|