SymphonyElectron/spec/childWindowHandle.spec.ts
Kiran Niranjan db0d878747
SDA-4476 - Add // nosemgrep (#2096)
SDA-4476 - Add installVariant to defaults

SDA-4476 - Initialize plist file

Revert "Revert "SDA-4472 (Migrate Symphony.config & installVariant into /Library/Preference) (#2090)" (#2094)"

This reverts commit 0aeee5b7a3.
2024-02-19 10:41:50 +01:00

81 lines
1.8 KiB
TypeScript

import { handleChildWindow } from '../src/app/child-window-handler';
import { webContents } from './__mocks__/electron';
import anything = jasmine.anything;
const getMainWindow = {
isDestroyed: jest.fn(() => false),
getBounds: jest.fn(() => {
return {
x: 11,
y: 22,
};
}),
isAlwaysOnTop: jest.fn(() => true),
setMenuBarVisibility: jest.fn(),
setAlwaysOnTop: jest.fn(),
setFullScreenable: jest.fn(),
};
jest.mock('fs', () => ({
writeFile: jest.fn(),
existsSync: jest.fn(() => true),
readFileSync: jest.fn(() => '{"configVersion": "4.0.0"}'),
}));
jest.mock('../src/common/env', () => {
return {
isWindowsOS: true,
isLinux: false,
isMac: false,
};
});
jest.mock('../src/app/window-utils', () => {
return {
injectStyles: jest.fn(),
preventWindowNavigation: jest.fn(),
};
});
jest.mock('../src/app/window-handler', () => {
return {
windowHandler: {
url: 'https://test.symphony.com',
getMainWindow: jest.fn(() => {
return getMainWindow;
}),
openUrlInDefaultBrowser: jest.fn(),
addWindow: jest.fn(),
},
};
});
jest.mock('../src/app/window-actions', () => {
return {
monitorWindowActions: jest.fn(),
};
});
jest.mock('../src/app/auto-update-handler', () => {
return {};
});
jest.mock('../src/app/config-handler', () => {
return {};
});
describe('child window handle', () => {
it('should set open window handler', () => {
const spy = jest.spyOn(webContents, 'setWindowOpenHandler');
handleChildWindow(webContents as any);
expect(spy).toBeCalledWith(expect.any(Function));
});
it('should trigger did-create-window', () => {
const spy = jest.spyOn(webContents, 'on');
handleChildWindow(webContents as any);
expect(spy).toBeCalledWith('did-create-window', anything());
});
});