2022-10-12 15:35:52 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
|
|
import { MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { UpdateCheckStatus } from "matrix-react-sdk/src/BasePlatform";
|
|
|
|
import { Action } from "matrix-react-sdk/src/dispatcher/actions";
|
|
|
|
import dispatcher from "matrix-react-sdk/src/dispatcher/dispatcher";
|
|
|
|
import * as rageshake from "matrix-react-sdk/src/rageshake/rageshake";
|
2023-03-22 10:22:51 +01:00
|
|
|
import { BreadcrumbsStore } from "matrix-react-sdk/src/stores/BreadcrumbsStore";
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
import ElectronPlatform from "../../../../src/vector/platform/ElectronPlatform";
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
jest.mock("matrix-react-sdk/src/rageshake/rageshake", () => ({
|
2022-10-13 10:22:34 +02:00
|
|
|
flush: jest.fn(),
|
|
|
|
}));
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("ElectronPlatform", () => {
|
|
|
|
const defaultUserAgent =
|
|
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 " +
|
|
|
|
"(KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36";
|
2022-10-12 15:35:52 +02:00
|
|
|
const mockElectron = {
|
|
|
|
on: jest.fn(),
|
2022-10-13 10:22:34 +02:00
|
|
|
send: jest.fn(),
|
2022-10-12 15:35:52 +02:00
|
|
|
};
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
const dispatchSpy = jest.spyOn(dispatcher, "dispatch");
|
|
|
|
const dispatchFireSpy = jest.spyOn(dispatcher, "fire");
|
|
|
|
const logSpy = jest.spyOn(logger, "log").mockImplementation(() => {});
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
const userId = "@alice:server.org";
|
|
|
|
const deviceId = "device-id";
|
2022-10-12 15:35:52 +02:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
window.electron = mockElectron;
|
|
|
|
jest.clearAllMocks();
|
|
|
|
delete window.navigator;
|
|
|
|
window.navigator = { userAgent: defaultUserAgent } as unknown as Navigator;
|
|
|
|
});
|
|
|
|
|
|
|
|
const getElectronEventHandlerCall = (eventType: string): [type: string, handler: Function] | undefined =>
|
|
|
|
mockElectron.on.mock.calls.find(([type]) => type === eventType);
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("flushes rageshake before quitting", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
new ElectronPlatform();
|
2022-12-09 13:28:29 +01:00
|
|
|
const [event, handler] = getElectronEventHandlerCall("before-quit");
|
2022-10-13 10:22:34 +02:00
|
|
|
// correct event bound
|
|
|
|
expect(event).toBeTruthy();
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
handler();
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(logSpy).toHaveBeenCalled();
|
|
|
|
expect(rageshake.flush).toHaveBeenCalled();
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("dispatches view settings action on preferences event", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
new ElectronPlatform();
|
2022-12-09 13:28:29 +01:00
|
|
|
const [event, handler] = getElectronEventHandlerCall("preferences");
|
2022-10-13 10:22:34 +02:00
|
|
|
// correct event bound
|
|
|
|
expect(event).toBeTruthy();
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
handler();
|
2022-10-12 15:35:52 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(dispatchFireSpy).toHaveBeenCalledWith(Action.ViewUserSettings);
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("updates", () => {
|
|
|
|
it("dispatches on check updates action", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
new ElectronPlatform();
|
2022-12-09 13:28:29 +01:00
|
|
|
const [event, handler] = getElectronEventHandlerCall("check_updates");
|
2022-10-12 15:35:52 +02:00
|
|
|
// correct event bound
|
|
|
|
expect(event).toBeTruthy();
|
2022-10-13 10:22:34 +02:00
|
|
|
|
2022-10-12 15:35:52 +02:00
|
|
|
handler({}, true);
|
|
|
|
expect(dispatchSpy).toHaveBeenCalledWith({
|
|
|
|
action: Action.CheckUpdates,
|
2022-10-13 10:22:34 +02:00
|
|
|
status: UpdateCheckStatus.Downloading,
|
|
|
|
});
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("dispatches on check updates action when update not available", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
new ElectronPlatform();
|
2022-12-09 13:28:29 +01:00
|
|
|
const [, handler] = getElectronEventHandlerCall("check_updates");
|
2022-10-13 10:22:34 +02:00
|
|
|
|
2022-10-12 15:35:52 +02:00
|
|
|
handler({}, false);
|
|
|
|
expect(dispatchSpy).toHaveBeenCalledWith({
|
|
|
|
action: Action.CheckUpdates,
|
2022-10-13 10:22:34 +02:00
|
|
|
status: UpdateCheckStatus.NotAvailable,
|
|
|
|
});
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("starts update check", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
platform.startUpdateCheck();
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(mockElectron.send).toHaveBeenCalledWith("check_updates");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("installs update", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
platform.installUpdate();
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(mockElectron.send).toHaveBeenCalledWith("install_update");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("returns human readable name", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(platform.getHumanReadableName()).toEqual("Electron Platform");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("getDefaultDeviceDisplayName", () => {
|
2022-12-09 13:28:29 +01:00
|
|
|
it.each([
|
|
|
|
[
|
|
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 " +
|
|
|
|
"(KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36",
|
|
|
|
"Element Desktop: macOS",
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) " +
|
|
|
|
"electron/1.0.0 Chrome/53.0.2785.113 Electron/1.4.3 Safari/537.36",
|
|
|
|
"Element Desktop: Windows",
|
|
|
|
],
|
|
|
|
["Mozilla/5.0 (X11; Linux i686; rv:21.0) Gecko/20100101 Firefox/21.0", "Element Desktop: Linux"],
|
|
|
|
["Mozilla/5.0 (X11; FreeBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0", "Element Desktop: FreeBSD"],
|
|
|
|
["Mozilla/5.0 (X11; OpenBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0", "Element Desktop: OpenBSD"],
|
|
|
|
["Mozilla/5.0 (X11; SunOS i686; rv:21.0) Gecko/20100101 Firefox/21.0", "Element Desktop: SunOS"],
|
|
|
|
["custom user agent", "Element Desktop: Unknown"],
|
|
|
|
])("%s = %s", (userAgent, result) => {
|
2022-10-12 15:35:52 +02:00
|
|
|
delete window.navigator;
|
|
|
|
window.navigator = { userAgent } as unknown as Navigator;
|
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.getDefaultDeviceDisplayName()).toEqual(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("returns true for needsUrlTooltips", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.needsUrlTooltips()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("should override browser shortcuts", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.overrideBrowserShortcuts()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("allows overriding native context menus", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.allowOverridingNativeContextMenus()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("indicates support for desktop capturer", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.supportsDesktopCapturer()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("indicates no support for jitsi screensharing", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.supportsJitsiScreensharing()).toBe(false);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("notifications", () => {
|
|
|
|
it("indicates support for notifications", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.supportsNotifications()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("may send notifications", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.maySendNotifications()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("pretends to request notification permission", async () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
const result = await platform.requestNotificationPermission();
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(result).toEqual("granted");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("creates a loud notification", async () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
2022-12-09 13:28:29 +01:00
|
|
|
platform.loudNotification(new MatrixEvent(), new Room("!room:server", {} as any, userId));
|
|
|
|
expect(mockElectron.send).toHaveBeenCalledWith("loudNotification");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("sets notification count when count is changing", async () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
platform.setNotificationCount(0);
|
|
|
|
// not called because matches internal notificaiton count
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(mockElectron.send).not.toHaveBeenCalledWith("setBadgeCount", 0);
|
2022-10-12 15:35:52 +02:00
|
|
|
platform.setNotificationCount(1);
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(mockElectron.send).toHaveBeenCalledWith("setBadgeCount", 1);
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("spellcheck", () => {
|
|
|
|
it("indicates support for spellcheck settings", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
expect(platform.supportsSpellCheckSettings()).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("gets available spellcheck languages", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
mockElectron.send.mockClear();
|
|
|
|
platform.getAvailableSpellCheckLanguages();
|
|
|
|
|
|
|
|
const [channel, { name }] = mockElectron.send.mock.calls[0];
|
|
|
|
expect(channel).toEqual("ipcCall");
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(name).toEqual("getAvailableSpellCheckLanguages");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("pickle key", () => {
|
|
|
|
it("makes correct ipc call to get pickle key", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
mockElectron.send.mockClear();
|
|
|
|
platform.getPickleKey(userId, deviceId);
|
|
|
|
|
|
|
|
const [, { name, args }] = mockElectron.send.mock.calls[0];
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(name).toEqual("getPickleKey");
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(args).toEqual([userId, deviceId]);
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("makes correct ipc call to create pickle key", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
mockElectron.send.mockClear();
|
|
|
|
platform.createPickleKey(userId, deviceId);
|
|
|
|
|
|
|
|
const [, { name, args }] = mockElectron.send.mock.calls[0];
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(name).toEqual("createPickleKey");
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(args).toEqual([userId, deviceId]);
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
it("makes correct ipc call to destroy pickle key", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
mockElectron.send.mockClear();
|
|
|
|
platform.destroyPickleKey(userId, deviceId);
|
|
|
|
|
|
|
|
const [, { name, args }] = mockElectron.send.mock.calls[0];
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(name).toEqual("destroyPickleKey");
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(args).toEqual([userId, deviceId]);
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
describe("versions", () => {
|
|
|
|
it("calls install update", () => {
|
2022-10-12 15:35:52 +02:00
|
|
|
const platform = new ElectronPlatform();
|
|
|
|
platform.installUpdate();
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
expect(mockElectron.send).toHaveBeenCalledWith("install_update");
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|
|
|
|
});
|
2023-03-22 10:22:51 +01:00
|
|
|
|
|
|
|
describe("breacrumbs", () => {
|
|
|
|
it("should send breadcrumb updates over the IPC", () => {
|
|
|
|
const spy = jest.spyOn(BreadcrumbsStore.instance, "on");
|
|
|
|
new ElectronPlatform();
|
|
|
|
const cb = spy.mock.calls[0][1];
|
|
|
|
cb();
|
|
|
|
|
|
|
|
expect(mockElectron.send).toHaveBeenCalledWith(
|
|
|
|
"ipcCall",
|
|
|
|
expect.objectContaining({
|
|
|
|
name: "breadcrumbs",
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2022-10-12 15:35:52 +02:00
|
|
|
});
|