67 lines
2.2 KiB
JavaScript
67 lines
2.2 KiB
JavaScript
import assert from 'node:assert/strict';
|
|||
|
|
import fs from 'node:fs/promises';
|
||
|
|
import os from 'node:os';
|
||
|
|
import path from 'node:path';
|
||
|
|
import test from 'node:test';
|
||
|
|
|
||
|
|
import {
|
||
|
|
buildLinuxAutostartDesktopEntry,
|
||
|
|
readLinuxAutostartEnabled,
|
||
|
|
resolveLinuxAutostartFilePath,
|
||
|
|
resolveLinuxLaunchExecutable,
|
||
|
|
setLinuxAutostartEnabled,
|
||
|
|
} from './linux-autostart.mjs';
|
||
|
|
|
||
|
|
test('prefers APPIMAGE path for Linux autostart Exec', () => {
|
||
|
|
assert.equal(
|
||
|
|
resolveLinuxLaunchExecutable({
|
||
|
|
env: { APPIMAGE: '/home/user/OpenChamber.AppImage' },
|
||
|
|
execPath: '/tmp/.mount_OpenChXXXX/openchamber',
|
||
|
|
}),
|
||
|
|
'/home/user/OpenChamber.AppImage',
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('builds a background autostart desktop entry', () => {
|
||
|
|
const entry = buildLinuxAutostartDesktopEntry({
|
||
|
|
executable: '/home/user/Open Chamber.AppImage',
|
||
|
|
backgroundArg: '--background',
|
||
|
|
});
|
||
|
|
assert.match(entry, /Type=Application/);
|
||
|
|
assert.match(entry, /Exec="\/home\/user\/Open Chamber\.AppImage" --background/);
|
||
|
|
assert.match(entry, /X-GNOME-Autostart-enabled=true/);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('writes and removes the XDG autostart file', async () => {
|
||
|
|
const homeDir = await fs.mkdtemp(path.join(os.tmpdir(), 'openchamber-autostart-'));
|
||
|
|
const env = { XDG_CONFIG_HOME: path.join(homeDir, 'config') };
|
||
|
|
const filePath = resolveLinuxAutostartFilePath({ env, homeDir });
|
||
|
|
|
||
|
|
try {
|
||
|
|
assert.equal(await readLinuxAutostartEnabled({ env, homeDir }), false);
|
||
|
|
|
||
|
|
const enabled = await setLinuxAutostartEnabled({
|
||
|
|
enabled: true,
|
||
|
|
backgroundArg: '--background',
|
||
|
|
env: { ...env, APPIMAGE: '/opt/OpenChamber.AppImage' },
|
||
|
|
homeDir,
|
||
|
|
});
|
||
|
|
assert.equal(enabled.enabled, true);
|
||
|
|
assert.equal(enabled.filePath, filePath);
|
||
|
|
assert.equal(await readLinuxAutostartEnabled({ env, homeDir }), true);
|
||
|
|
|
||
|
|
const contents = await fs.readFile(filePath, 'utf8');
|
||
|
|
assert.match(contents, /Exec=\/opt\/OpenChamber\.AppImage --background/);
|
||
|
|
|
||
|
|
const disabled = await setLinuxAutostartEnabled({
|
||
|
|
enabled: false,
|
||
|
|
env,
|
||
|
|
homeDir,
|
||
|
|
});
|
||
|
|
assert.equal(disabled.enabled, false);
|
||
|
|
assert.equal(await readLinuxAutostartEnabled({ env, homeDir }), false);
|
||
|
|
} finally {
|
||
|
|
await fs.rm(homeDir, { recursive: true, force: true });
|
||
|
|
}
|
||
|
|
});
|