Improve decryption error UI by consolidating error messages and providing instructions when possible (#9544)
* Improve decryption error UI by consolidating error messages and providing instructions when possible * Fix TS strict errors * Rename .scss to .pcss * Avoid accessing clipboard, Cypress doesn't like it * Display DecryptionFailureBar alongside other AuxPanel bars * Add comments * Add small margin off-screen for visible decryption failures * Fix some more TS strict errors * Add unit tests for DecryptionFailureBar * Add button to resend key requests manually * Remove references to matrix-js-sdk crypto internals * Add hysteresis to visible decryption failures * Add comment Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> * Add comment Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> * Don't create empty div if we're not showing resend requests button * cancel updateSessions on unmount * Update unit tests * Fix lint and implicit any * Simplify visible event bounds checking * Adjust cypress test descriptions * Add percy snapshots * Update src/components/structures/TimelinePanel.tsx Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> * Add comments on TimelinePanel IState * comment * Add names to percy snapshots * Show Resend Key Requests button when there are sessions that haven't already been requested via this bar * We no longer request keys from senders * update i18n * update expected text in cypress test * don't download keys ourselves, update device info in response to updates from client * fix ts strict errors * visibledecryptionfailures undefined handling * Fix implicitAny errors Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
b728b27435
commit
4724506320
18 changed files with 1779 additions and 165 deletions
411
test/components/views/rooms/DecryptionFailureBar-test.tsx
Normal file
411
test/components/views/rooms/DecryptionFailureBar-test.tsx
Normal file
|
@ -0,0 +1,411 @@
|
|||
/*
|
||||
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.
|
||||
*/
|
||||
|
||||
import React from "react";
|
||||
import { act, fireEvent, render, screen, waitFor, RenderResult } from "@testing-library/react";
|
||||
import "@testing-library/jest-dom";
|
||||
|
||||
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
||||
import { DecryptionFailureBar } from "../../../../src/components/views/rooms/DecryptionFailureBar";
|
||||
|
||||
type MockDevice = { deviceId: string };
|
||||
|
||||
const verifiedDevice1: MockDevice = { deviceId: "verified1" };
|
||||
const verifiedDevice2: MockDevice = { deviceId: "verified2" };
|
||||
const unverifiedDevice1: MockDevice = { deviceId: "unverified1" };
|
||||
const unverifiedDevice2: MockDevice = { deviceId: "unverified2" };
|
||||
|
||||
const mockEvent1 = {
|
||||
event: { event_id: "mockEvent1" },
|
||||
getWireContent: () => ({ session_id: "sessionA" }),
|
||||
};
|
||||
|
||||
const mockEvent2 = {
|
||||
event: { event_id: "mockEvent2" },
|
||||
getWireContent: () => ({ session_id: "sessionB" }),
|
||||
};
|
||||
|
||||
const mockEvent3 = {
|
||||
event: { event_id: "mockEvent3" },
|
||||
getWireContent: () => ({ session_id: "sessionB" }),
|
||||
};
|
||||
|
||||
const userId = "@user:example.com";
|
||||
|
||||
let ourDevice: MockDevice | undefined;
|
||||
let allDevices: MockDevice[] | undefined;
|
||||
let keyBackup = false;
|
||||
let callback = async () => {};
|
||||
|
||||
const mockClient = {
|
||||
getUserId: () => userId,
|
||||
getDeviceId: () => ourDevice?.deviceId,
|
||||
getStoredDevicesForUser: () => allDevices,
|
||||
isSecretStored: jest.fn(() => Promise.resolve(keyBackup ? { key: "yes" } : null)),
|
||||
checkIfOwnDeviceCrossSigned: (deviceId: string) => deviceId.startsWith("verified"),
|
||||
downloadKeys: jest.fn(() => {}),
|
||||
cancelAndResendEventRoomKeyRequest: jest.fn(() => {}),
|
||||
on: (_: any, cb: () => Promise<void>) => {
|
||||
callback = cb;
|
||||
},
|
||||
off: () => {},
|
||||
};
|
||||
|
||||
function getBar(wrapper: RenderResult) {
|
||||
return wrapper.container.querySelector(".mx_DecryptionFailureBar");
|
||||
}
|
||||
|
||||
describe("<DecryptionFailureBar />", () => {
|
||||
beforeEach(() => {
|
||||
jest.useFakeTimers();
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
const container = document.body.firstChild;
|
||||
container && document.body.removeChild(container);
|
||||
|
||||
jest.runOnlyPendingTimers();
|
||||
jest.useRealTimers();
|
||||
|
||||
mockClient.cancelAndResendEventRoomKeyRequest.mockClear();
|
||||
});
|
||||
|
||||
it("Displays a loading spinner", async () => {
|
||||
ourDevice = unverifiedDevice1;
|
||||
allDevices = [unverifiedDevice1];
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Prompts the user to verify if they have other devices", async () => {
|
||||
ourDevice = unverifiedDevice1;
|
||||
allDevices = [unverifiedDevice1, verifiedDevice1];
|
||||
keyBackup = false;
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Prompts the user to verify if they have backups", async () => {
|
||||
ourDevice = unverifiedDevice1;
|
||||
allDevices = [unverifiedDevice1];
|
||||
keyBackup = true;
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Prompts the user to reset if they have no other verified devices and no backups", async () => {
|
||||
ourDevice = unverifiedDevice1;
|
||||
allDevices = [unverifiedDevice1, unverifiedDevice2];
|
||||
keyBackup = false;
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Recommends opening other devices if there are other verified devices", async () => {
|
||||
ourDevice = verifiedDevice1;
|
||||
allDevices = [verifiedDevice1, verifiedDevice2];
|
||||
keyBackup = false;
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Displays a general error message if there are no other verified devices", async () => {
|
||||
ourDevice = verifiedDevice1;
|
||||
allDevices = [verifiedDevice1, unverifiedDevice1];
|
||||
keyBackup = true;
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Displays button to resend key requests if we are verified", async () => {
|
||||
ourDevice = verifiedDevice1;
|
||||
allDevices = [verifiedDevice1, verifiedDevice2];
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
// @ts-ignore
|
||||
mockEvent2,
|
||||
// @ts-ignore
|
||||
mockEvent3,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
fireEvent.click(screen.getByText("Resend key requests"));
|
||||
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledTimes(2);
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledWith(mockEvent1);
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledWith(mockEvent2);
|
||||
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Does not display a button to send key requests if we are unverified", async () => {
|
||||
ourDevice = unverifiedDevice1;
|
||||
allDevices = [unverifiedDevice1, verifiedDevice2];
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
// @ts-ignore
|
||||
mockEvent2,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Displays the button to resend key requests only if there are sessions we haven't already requested", async () => {
|
||||
ourDevice = verifiedDevice1;
|
||||
allDevices = [verifiedDevice1, verifiedDevice2];
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent3,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
fireEvent.click(screen.getByText("Resend key requests"));
|
||||
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledTimes(1);
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledWith(mockEvent3);
|
||||
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.rerender(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
// @ts-ignore
|
||||
mockEvent2,
|
||||
// @ts-ignore
|
||||
mockEvent3,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
mockClient.cancelAndResendEventRoomKeyRequest.mockClear();
|
||||
|
||||
fireEvent.click(screen.getByText("Resend key requests"));
|
||||
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledTimes(1);
|
||||
expect(mockClient.cancelAndResendEventRoomKeyRequest).toHaveBeenCalledWith(mockEvent1);
|
||||
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
|
||||
it("Handles device updates", async () => {
|
||||
ourDevice = unverifiedDevice1;
|
||||
allDevices = [unverifiedDevice1, verifiedDevice2];
|
||||
|
||||
const bar = render(
|
||||
// @ts-ignore
|
||||
<MatrixClientContext.Provider value={mockClient}>
|
||||
<DecryptionFailureBar
|
||||
failures={[
|
||||
// @ts-ignore
|
||||
mockEvent1,
|
||||
// @ts-ignore
|
||||
mockEvent2,
|
||||
]}
|
||||
/>
|
||||
,
|
||||
</MatrixClientContext.Provider>,
|
||||
);
|
||||
|
||||
await waitFor(() => expect(mockClient.isSecretStored).toHaveBeenCalled());
|
||||
act(() => {
|
||||
jest.advanceTimersByTime(5000);
|
||||
});
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
ourDevice = verifiedDevice1;
|
||||
await act(callback);
|
||||
expect(getBar(bar)).toMatchSnapshot();
|
||||
|
||||
bar.unmount();
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue