add stubbing of messageQueue in window from ts tests

pull/1287/head
Audric Ackermann 5 years ago
parent 720bb54bc1
commit e2a42d1b61
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -492,6 +492,9 @@ if (config.environment.includes('test-integration')) {
debugMessageLogs: true,
enableSenderKeys: true,
};
/* eslint-disable global-require, import/no-extraneous-dependencies */
window.sinon = require('sinon');
/* eslint-enable global-require, import/no-extraneous-dependencies */
}
// Blocking

@ -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();

Loading…
Cancel
Save