mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-23 00:11:28 -07:00
71 lines
2.4 KiB
TypeScript
71 lines
2.4 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import test from 'node:test';
|
|
import {
|
|
registerSecondInstanceHandlerEarly,
|
|
requestSingleInstanceLockEarly,
|
|
resetEarlySingleInstanceStateForTests,
|
|
} from './early-single-instance';
|
|
import * as earlySingleInstance from './early-single-instance';
|
|
|
|
function createFakeApp(lockValue = true) {
|
|
let requestCalls = 0;
|
|
let secondInstanceListener: ((_event: unknown, argv: string[]) => void) | null = null;
|
|
|
|
return {
|
|
app: {
|
|
requestSingleInstanceLock: () => {
|
|
requestCalls += 1;
|
|
return lockValue;
|
|
},
|
|
on: (_event: 'second-instance', listener: (_event: unknown, argv: string[]) => void) => {
|
|
secondInstanceListener = listener;
|
|
},
|
|
},
|
|
emitSecondInstance: (argv: string[]) => {
|
|
secondInstanceListener?.({}, argv);
|
|
},
|
|
getRequestCalls: () => requestCalls,
|
|
};
|
|
}
|
|
|
|
test('requestSingleInstanceLockEarly caches the lock result per process', () => {
|
|
resetEarlySingleInstanceStateForTests();
|
|
const fake = createFakeApp(true);
|
|
|
|
assert.equal(requestSingleInstanceLockEarly(fake.app), true);
|
|
assert.equal(requestSingleInstanceLockEarly(fake.app), true);
|
|
assert.equal(fake.getRequestCalls(), 1);
|
|
});
|
|
|
|
test('registerSecondInstanceHandlerEarly replays queued argv and forwards new events', () => {
|
|
resetEarlySingleInstanceStateForTests();
|
|
const fake = createFakeApp(true);
|
|
const calls: string[][] = [];
|
|
|
|
assert.equal(requestSingleInstanceLockEarly(fake.app), true);
|
|
fake.emitSecondInstance(['SubMiner.exe', '--start', '--socket', '\\\\.\\pipe\\subminer']);
|
|
|
|
registerSecondInstanceHandlerEarly(fake.app, (_event, argv) => {
|
|
calls.push(argv);
|
|
});
|
|
fake.emitSecondInstance(['SubMiner.exe', '--start', '--show-visible-overlay']);
|
|
|
|
assert.deepEqual(calls, [
|
|
['SubMiner.exe', '--start', '--socket', '\\\\.\\pipe\\subminer'],
|
|
['SubMiner.exe', '--start', '--show-visible-overlay'],
|
|
]);
|
|
});
|
|
|
|
test('stats daemon args bypass the normal single-instance lock path', () => {
|
|
const shouldBypass = (
|
|
earlySingleInstance as typeof earlySingleInstance & {
|
|
shouldBypassSingleInstanceLockForArgv?: (argv: string[]) => boolean;
|
|
}
|
|
).shouldBypassSingleInstanceLockForArgv;
|
|
|
|
assert.equal(typeof shouldBypass, 'function');
|
|
assert.equal(shouldBypass?.(['SubMiner', '--stats', '--stats-background']), true);
|
|
assert.equal(shouldBypass?.(['SubMiner', '--stats', '--stats-stop']), true);
|
|
assert.equal(shouldBypass?.(['SubMiner', '--stats']), false);
|
|
});
|