feat: add app.getRecentDocuments() (#47924)

feat: add app.getRecentDocuments()

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
trop[bot] 2025-08-06 19:35:04 +02:00 committed by GitHub
commit 33f4808182
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 142 additions and 11 deletions

View file

@ -11,6 +11,7 @@ import * as http from 'node:http';
import * as https from 'node:https';
import * as net from 'node:net';
import * as path from 'node:path';
import { setTimeout } from 'node:timers/promises';
import { promisify } from 'node:util';
import { collectStreamBody, getResponse } from './lib/net-helpers';
@ -19,6 +20,8 @@ import { closeWindow, closeAllWindows } from './lib/window-helpers';
const fixturesPath = path.resolve(__dirname, 'fixtures');
const isMacOSx64 = process.platform === 'darwin' && process.arch === 'x64';
describe('electron module', () => {
it('does not expose internal modules to require', () => {
expect(() => {
@ -356,6 +359,44 @@ describe('app module', () => {
});
});
// GitHub Actions macOS-13 runners used for x64 seem to have a problem with this test.
ifdescribe(process.platform !== 'linux' && !isMacOSx64)('app.{add|get|clear}RecentDocument(s)', () => {
const tempFiles = [
path.join(fixturesPath, 'foo.txt'),
path.join(fixturesPath, 'bar.txt'),
path.join(fixturesPath, 'baz.txt')
];
afterEach(() => {
app.clearRecentDocuments();
for (const file of tempFiles) {
fs.unlinkSync(file);
}
});
beforeEach(() => {
for (const file of tempFiles) {
fs.writeFileSync(file, 'Lorem Ipsum');
}
});
it('can add a recent document', async () => {
app.addRecentDocument(tempFiles[0]);
await setTimeout(2000);
expect(app.getRecentDocuments()).to.include.members([tempFiles[0]]);
});
it('can clear recent documents', async () => {
app.addRecentDocument(tempFiles[1]);
app.addRecentDocument(tempFiles[2]);
await setTimeout(2000);
expect(app.getRecentDocuments()).to.include.members([tempFiles[1], tempFiles[2]]);
app.clearRecentDocuments();
await setTimeout(2000);
expect(app.getRecentDocuments()).to.deep.equal([]);
});
});
describe('app.relaunch', () => {
let server: net.Server | null = null;
const socketPath = process.platform === 'win32' ? '\\\\.\\pipe\\electron-app-relaunch' : '/tmp/electron-app-relaunch';
@ -553,8 +594,8 @@ describe('app module', () => {
describe('app.badgeCount', () => {
const platformIsNotSupported =
(process.platform === 'win32') ||
(process.platform === 'linux' && !app.isUnityRunning());
(process.platform === 'win32') ||
(process.platform === 'linux' && !app.isUnityRunning());
const expectedBadgeCount = 42;