Files
electron/spec/fuses-spec.ts
Shelley Vohr eb29568e45 feat: introduce os_crypt_async in safeStorage (#49054)
* feat: support Freedesktop Secret Service OSCrypt client

Refs https://issues.chromium.org/issues/40086962
Refs https://issues.chromium.org/issues/447372315

* chore: rework to async interface

* refactor: allow customizing freedesktop config

* docs: add more async impl info

* refactor: reject when temporarily unavailable

* chore: feedback from review

* chore: push_back => emplace_back
2026-02-15 19:54:50 +01:00

115 lines
4.5 KiB
TypeScript

import { BrowserWindow } from 'electron';
import { expect } from 'chai';
import { spawn, spawnSync } from 'node:child_process';
import { once } from 'node:events';
import path = require('node:path');
import { startRemoteControlApp } from './lib/spec-helpers';
describe('fuses', () => {
it('can be enabled by command-line argument during testing', async () => {
const child0 = spawn(process.execPath, ['-v'], { env: { NODE_OPTIONS: '-e 0' } });
const [code0] = await once(child0, 'exit');
// Should exit with 9 because -e is not allowed in NODE_OPTIONS
expect(code0).to.equal(9);
const child1 = spawn(process.execPath, ['--set-fuse-node_options=0', '-v'], { env: { NODE_OPTIONS: '-e 0' } });
const [code1] = await once(child1, 'exit');
// Should print the version and exit with 0
expect(code1).to.equal(0);
});
it('disables --inspect flag when node_cli_inspect is 0', () => {
const { status, stderr } = spawnSync(process.execPath, ['--set-fuse-node_cli_inspect=0', '--inspect', '-v'], { encoding: 'utf-8' });
expect(stderr).to.not.include('Debugger listening on ws://');
// Should print the version and exit with 0
expect(status).to.equal(0);
});
it('disables fetching file:// URLs when grant_file_protocol_extra_privileges is 0', async () => {
const rc = await startRemoteControlApp(['--set-fuse-grant_file_protocol_extra_privileges=0']);
await expect(rc.remotely(async (fixture: string) => {
const bw = new BrowserWindow({ show: false });
await bw.loadFile(fixture);
return await bw.webContents.executeJavaScript("ajax('file:///etc/passwd')");
}, path.join(__dirname, 'fixtures', 'pages', 'fetch.html'))).to.eventually.be.rejectedWith('Failed to fetch');
});
describe('cookie_encryption', () => {
it('allows setting and retrieving cookies when enabled', async () => {
const rc = await startRemoteControlApp(['--set-fuse-cookie_encryption=1']);
const result = await rc.remotely(async () => {
const { session } = require('electron');
const ses = session.defaultSession;
const testUrl = 'https://example.com';
await ses.clearStorageData({ storages: ['cookies'] });
await ses.cookies.set({
url: testUrl,
name: 'test_cookie',
value: 'encrypted_value_12345',
expirationDate: Math.floor(Date.now() / 1000) + 3600
});
await ses.cookies.set({
url: testUrl,
name: 'secure_cookie',
value: 'secret_data_67890',
secure: true,
httpOnly: true,
expirationDate: Math.floor(Date.now() / 1000) + 7200
});
const cookies = await ses.cookies.get({ url: testUrl });
const testCookie = cookies.find((c: Electron.Cookie) => c.name === 'test_cookie');
const secureCookie = cookies.find((c: Electron.Cookie) => c.name === 'secure_cookie');
return {
cookieCount: cookies.length,
testCookieValue: testCookie?.value,
secureCookieValue: secureCookie?.value,
secureCookieIsSecure: secureCookie?.secure,
secureCookieIsHttpOnly: secureCookie?.httpOnly
};
});
expect(result.cookieCount).to.equal(2);
expect(result.testCookieValue).to.equal('encrypted_value_12345');
expect(result.secureCookieValue).to.equal('secret_data_67890');
expect(result.secureCookieIsSecure).to.be.true();
expect(result.secureCookieIsHttpOnly).to.be.true();
});
it('persists cookies across sessions when enabled', async () => {
const rc = await startRemoteControlApp(['--set-fuse-cookie_encryption=1']);
await rc.remotely(async () => {
const { session } = require('electron');
await session.defaultSession.clearStorageData({ storages: ['cookies'] });
await session.defaultSession.cookies.set({
url: 'https://example.com',
name: 'persistent_cookie',
value: 'persist_me',
expirationDate: Math.floor(Date.now() / 1000) + 86400
});
});
await rc.remotely(async () => {
const { session } = require('electron');
await session.defaultSession.cookies.flushStore();
});
const result = await rc.remotely(async () => {
const { session } = require('electron');
const cookies = await session.defaultSession.cookies.get({ url: 'https://example.com' });
const cookie = cookies.find((c: Electron.Cookie) => c.name === 'persistent_cookie');
return cookie?.value;
});
expect(result).to.equal('persist_me');
});
});
});