35 lines
1.7 KiB
PHP
35 lines
1.7 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
it('copies the realtime terminal utilities into the container image', function () {
|
||
|
|
$dockerfile = file_get_contents(base_path('docker/coolify-realtime/Dockerfile'));
|
||
|
|
|
||
|
|
expect($dockerfile)->toContain('COPY docker/coolify-realtime/terminal-utils.js /terminal/terminal-utils.js');
|
||
|
|
});
|
||
|
|
|
||
|
|
it('mounts the realtime terminal utilities in local development compose files', function (string $composeFile) {
|
||
|
|
$composeContents = file_get_contents(base_path($composeFile));
|
||
|
|
|
||
|
|
expect($composeContents)->toContain('./docker/coolify-realtime/terminal-utils.js:/terminal/terminal-utils.js');
|
||
|
|
})->with([
|
||
|
|
'default dev compose' => 'docker-compose.dev.yml',
|
||
|
|
'maxio dev compose' => 'docker-compose-maxio.dev.yml',
|
||
|
|
]);
|
||
|
|
|
||
|
|
it('keeps terminal browser logging restricted to Vite development mode', function () {
|
||
|
|
$terminalClient = file_get_contents(base_path('resources/js/terminal.js'));
|
||
|
|
|
||
|
|
expect($terminalClient)
|
||
|
|
->toContain('const terminalDebugEnabled = import.meta.env.DEV;')
|
||
|
|
->toContain("logTerminal('log', '[Terminal] WebSocket connection established.');")
|
||
|
|
->not->toContain("console.log('[Terminal] WebSocket connection established. Cool cool cool cool cool cool.');");
|
||
|
|
});
|
||
|
|
|
||
|
|
it('keeps realtime terminal server logging restricted to development environments', function () {
|
||
|
|
$terminalServer = file_get_contents(base_path('docker/coolify-realtime/terminal-server.js'));
|
||
|
|
|
||
|
|
expect($terminalServer)
|
||
|
|
->toContain("const terminalDebugEnabled = ['local', 'development'].includes(")
|
||
|
|
->toContain('if (!terminalDebugEnabled) {')
|
||
|
|
->not->toContain("console.log('Coolify realtime terminal server listening on port 6002. Let the hacking begin!');");
|
||
|
|
});
|