mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-09-22 05:16:22 -07:00
- Bump electron-builder to 26.16.1 so macOS signing passes the temp keychain password to set-key-partition-list (upstream #10066), which the macOS 26 runner image now enforces - Stat asar entries with their native path in the package audit; splitting on path.sep made every nested file look missing on Windows - Run the package smoke with --no-sandbox on Linux runners without a setuid chrome-sandbox - Load the packaged stats dashboard over loopback HTTP in the smoke, matching how the app serves it since #263, and ignore Chromium's cache-only font probe
139 lines
5.1 KiB
JavaScript
139 lines
5.1 KiB
JavaScript
// Run with the pinned Electron runtime against a finished app's resources folder.
|
|
const { app, BrowserWindow, session } = require('electron');
|
|
const fs = require('node:fs');
|
|
const http = require('node:http');
|
|
const path = require('node:path');
|
|
const { createRequire } = require('node:module');
|
|
const assert = require('node:assert/strict');
|
|
const { once } = require('node:events');
|
|
|
|
const resources = path.resolve(process.argv[2]);
|
|
const archive = path.join(resources, 'app.asar');
|
|
const isolatedData = process.env.SUBMINER_PACKAGE_SMOKE_DATA;
|
|
assert(
|
|
isolatedData && fs.existsSync(isolatedData),
|
|
'Use bun run test:package to create an isolated profile',
|
|
);
|
|
app.setPath('userData', isolatedData);
|
|
app.disableHardwareAcceleration();
|
|
app.on('window-all-closed', () => {});
|
|
const timeout = setTimeout(() => {
|
|
console.error('Package smoke timed out');
|
|
app.exit(1);
|
|
}, 60_000);
|
|
|
|
const STATIC_TYPES = {
|
|
'.html': 'text/html',
|
|
'.js': 'text/javascript',
|
|
'.css': 'text/css',
|
|
'.png': 'image/png',
|
|
'.svg': 'image/svg+xml',
|
|
'.woff2': 'font/woff2',
|
|
'.ttf': 'font/ttf',
|
|
'.json': 'application/json',
|
|
};
|
|
|
|
// The stats dashboard is served by the stats HTTP server in the app, so load it
|
|
// over loopback HTTP from the packaged stats/dist and treat missing static
|
|
// assets as failures. API routes are not part of this smoke and may 404.
|
|
function serveStatsDist(root, failedRequests) {
|
|
const server = http.createServer((req, res) => {
|
|
const pathname = new URL(req.url, 'http://127.0.0.1').pathname;
|
|
const relative = pathname === '/' ? 'index.html' : pathname.slice(1);
|
|
try {
|
|
const body = fs.readFileSync(path.join(root, relative));
|
|
res.writeHead(200, {
|
|
'Content-Type': STATIC_TYPES[path.extname(relative)] ?? 'application/octet-stream',
|
|
});
|
|
res.end(body);
|
|
} catch {
|
|
if (!pathname.startsWith('/api/')) failedRequests.push(`${req.url}: missing static asset`);
|
|
res.writeHead(404).end();
|
|
}
|
|
});
|
|
server.listen(0, '127.0.0.1');
|
|
return server;
|
|
}
|
|
|
|
async function smoke() {
|
|
await app.whenReady();
|
|
const packagedRequire = createRequire(path.join(archive, 'package.json'));
|
|
const Database = packagedRequire('libsql');
|
|
const database = new Database(':memory:');
|
|
assert.equal(database.prepare('select 42 as answer').get().answer, 42);
|
|
database.close();
|
|
if (process.platform === 'win32') {
|
|
const win32 = packagedRequire('./dist/window-trackers/win32.js');
|
|
assert(Array.isArray(win32.findMpvWindows().matches));
|
|
}
|
|
const { Texthooker } = packagedRequire('./dist/core/services/texthooker.js');
|
|
const texthooker = new Texthooker();
|
|
const server = texthooker.start(0);
|
|
assert(server, 'Packaged texthooker assets could not be found');
|
|
try {
|
|
await once(server, 'listening');
|
|
const response = await fetch(`http://127.0.0.1:${server.address().port}/`);
|
|
assert.equal(response.status, 200);
|
|
assert((await response.text()).includes('<html'));
|
|
} finally {
|
|
texthooker.stop();
|
|
}
|
|
const extension = await session.defaultSession.extensions.loadExtension(
|
|
path.join(resources, 'yomitan'),
|
|
{ allowFileAccess: true },
|
|
);
|
|
assert(extension.id, 'Yomitan extension failed to load');
|
|
const failedRequests = [];
|
|
session.defaultSession.webRequest.onErrorOccurred(
|
|
{ urls: ['file://*/*', 'http://127.0.0.1/*'] },
|
|
(details) => {
|
|
// Chromium probes the cache before fetching @font-face fonts; an uncached
|
|
// font reports ERR_CACHE_MISS and is then fetched normally.
|
|
if (!['net::ERR_ABORTED', 'net::ERR_CACHE_MISS'].includes(details.error))
|
|
failedRequests.push(`${details.url}: ${details.error}`);
|
|
},
|
|
);
|
|
const statsServer = serveStatsDist(path.join(archive, 'stats', 'dist'), failedRequests);
|
|
await once(statsServer, 'listening');
|
|
for (const ui of ['renderer', 'settings', 'syncui', 'stats']) {
|
|
const win = new BrowserWindow({
|
|
show: false,
|
|
webPreferences: {
|
|
sandbox: false,
|
|
preload: path.join(archive, 'dist', ui === 'renderer' ? 'preload.js' : `preload-${ui}.js`),
|
|
},
|
|
});
|
|
try {
|
|
if (ui === 'stats') {
|
|
await win.loadURL(`http://127.0.0.1:${statsServer.address().port}/`);
|
|
// Let in-flight font requests settle before the window goes away.
|
|
await win.webContents.executeJavaScript('document.fonts.ready.then(() => true)');
|
|
} else {
|
|
await win.loadFile(path.join(archive, `dist/${ui}/index.html`));
|
|
const loaded = await win.webContents.executeJavaScript(
|
|
`document.fonts.load('400 16px "M PLUS 1"', '日本語').then(fonts => fonts.length > 0 && fonts.every(font => font.status === 'loaded'))`,
|
|
);
|
|
assert(loaded, `${ui}: shared Japanese font failed to load`);
|
|
}
|
|
} finally {
|
|
win.destroy();
|
|
}
|
|
}
|
|
statsServer.close();
|
|
assert.deepEqual(failedRequests, [], 'Packaged UI resources failed to load');
|
|
console.log(
|
|
'Package smoke passed: SQLite, platform FFI, texthooker, Yomitan loading, UI pages, shared Japanese font.',
|
|
);
|
|
}
|
|
|
|
smoke()
|
|
.then(() => {
|
|
clearTimeout(timeout);
|
|
app.exit(0);
|
|
})
|
|
.catch((error) => {
|
|
console.error(error);
|
|
clearTimeout(timeout);
|
|
app.exit(1);
|
|
});
|