|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
import * as sinon from 'sinon';
|
|
|
|
|
import * as crypto from 'crypto';
|
|
|
|
|
import * as DataShape from '../../../../js/modules/data';
|
|
|
|
|
import { Application } from 'spectron';
|
|
|
|
|
|
|
|
|
|
const globalAny: any = global;
|
|
|
|
|
const sandbox = sinon.createSandbox();
|
|
|
|
@ -54,6 +54,27 @@ export function stubWindow<K extends keyof Window>(
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function spyMessageQueueSend(app: Application) {
|
|
|
|
|
await app.webContents.executeJavaScript(
|
|
|
|
|
"var messageQueueSpy = sinon.spy(window.libsession.getMessageQueue(), 'send'); "
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function getAllMessagesSent(app: Application) {
|
|
|
|
|
const messageQueueSpy = await app.webContents.executeJavaScript(
|
|
|
|
|
'messageQueueSpy.args;'
|
|
|
|
|
);
|
|
|
|
|
if (!messageQueueSpy) {
|
|
|
|
|
throw new Error(
|
|
|
|
|
'Be sure to call spyMessageQueueSend() on the correct app first.'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
const messages = await app.webContents.executeJavaScript(
|
|
|
|
|
'messageQueueSpy.args'
|
|
|
|
|
);
|
|
|
|
|
return messages;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function restoreStubs() {
|
|
|
|
|
globalAny.window = undefined;
|
|
|
|
|
sandbox.restore();
|
|
|
|
|