Merge branch 'develop' of github.com:element-hq/matrix-react-sdk into t3chguy/wat/230.1
# Conflicts: # src/components/views/settings/CryptographyPanel.tsx # test/components/views/settings/tabs/user/__snapshots__/SecurityUserSettingsTab-test.tsx.snap
This commit is contained in:
commit
dd7479accb
6 changed files with 130 additions and 48 deletions
|
@ -62,7 +62,7 @@ export default class RoomSearch extends React.PureComponent<IProps> {
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AccessibleButton onClick={this.openSpotlight} className={classes}>
|
<AccessibleButton onClick={this.openSpotlight} className={classes} aria-label={_t("action|search")}>
|
||||||
{icon}
|
{icon}
|
||||||
{!this.props.isMinimized && (
|
{!this.props.isMinimized && (
|
||||||
<div className="mx_RoomSearch_spotlightTriggerText">{_t("action|search")}</div>
|
<div className="mx_RoomSearch_spotlightTriggerText">{_t("action|search")}</div>
|
||||||
|
|
|
@ -7,6 +7,7 @@ Please see LICENSE files in the repository root for full details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { logger } from "matrix-js-sdk/src/logger";
|
||||||
|
|
||||||
import type ExportE2eKeysDialog from "../../../async-components/views/dialogs/security/ExportE2eKeysDialog";
|
import type ExportE2eKeysDialog from "../../../async-components/views/dialogs/security/ExportE2eKeysDialog";
|
||||||
import type ImportE2eKeysDialog from "../../../async-components/views/dialogs/security/ImportE2eKeysDialog";
|
import type ImportE2eKeysDialog from "../../../async-components/views/dialogs/security/ImportE2eKeysDialog";
|
||||||
|
@ -22,25 +23,53 @@ import SettingsSubsection, { SettingsSubsectionText } from "./shared/SettingsSub
|
||||||
|
|
||||||
interface IProps {}
|
interface IProps {}
|
||||||
|
|
||||||
interface IState {}
|
interface IState {
|
||||||
|
/** The device's base64-encoded Ed25519 identity key, or:
|
||||||
|
*
|
||||||
|
* * `undefined`: not yet loaded
|
||||||
|
* * `null`: encryption is not supported (or the crypto stack was not correctly initialized)
|
||||||
|
*/
|
||||||
|
deviceIdentityKey: string | undefined | null;
|
||||||
|
}
|
||||||
|
|
||||||
export default class CryptographyPanel extends React.Component<IProps, IState> {
|
export default class CryptographyPanel extends React.Component<IProps, IState> {
|
||||||
public constructor(props: IProps) {
|
public constructor(props: IProps) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
|
const client = MatrixClientPeg.safeGet();
|
||||||
|
const crypto = client.getCrypto();
|
||||||
|
if (!crypto) {
|
||||||
|
this.state = { deviceIdentityKey: null };
|
||||||
|
} else {
|
||||||
|
this.state = { deviceIdentityKey: undefined };
|
||||||
|
crypto
|
||||||
|
.getOwnDeviceKeys()
|
||||||
|
.then((keys) => {
|
||||||
|
this.setState({ deviceIdentityKey: keys.ed25519 });
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
logger.error(`CryptographyPanel: Error fetching own device keys: ${e}`);
|
||||||
|
this.setState({ deviceIdentityKey: null });
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public render(): React.ReactNode {
|
public render(): React.ReactNode {
|
||||||
const client = MatrixClientPeg.safeGet();
|
const client = MatrixClientPeg.safeGet();
|
||||||
const deviceId = client.deviceId;
|
const deviceId = client.deviceId;
|
||||||
let identityKey = client.getDeviceEd25519Key();
|
let identityKey = this.state.deviceIdentityKey;
|
||||||
if (!identityKey) {
|
if (identityKey === undefined) {
|
||||||
|
// Should show a spinner here really, but since this will be very transitional, I can't be doing with the
|
||||||
|
// necessary styling.
|
||||||
|
identityKey = "...";
|
||||||
|
} else if (identityKey === null) {
|
||||||
identityKey = _t("encryption|not_supported");
|
identityKey = _t("encryption|not_supported");
|
||||||
} else {
|
} else {
|
||||||
identityKey = FormattingUtils.formatCryptoKey(identityKey);
|
identityKey = FormattingUtils.formatCryptoKey(identityKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
let importExportButtons: JSX.Element | undefined;
|
let importExportButtons: JSX.Element | undefined;
|
||||||
if (client.isCryptoEnabled()) {
|
if (client.getCrypto()) {
|
||||||
importExportButtons = (
|
importExportButtons = (
|
||||||
<div className="mx_CryptographyPanel_importExportButtons">
|
<div className="mx_CryptographyPanel_importExportButtons">
|
||||||
<AccessibleButton kind="primary_outline" onClick={this.onExportE2eKeysClicked}>
|
<AccessibleButton kind="primary_outline" onClick={this.onExportE2eKeysClicked}>
|
||||||
|
@ -68,20 +97,22 @@ export default class CryptographyPanel extends React.Component<IProps, IState> {
|
||||||
<SettingsSubsection heading={_t("settings|security|cryptography_section")}>
|
<SettingsSubsection heading={_t("settings|security|cryptography_section")}>
|
||||||
<SettingsSubsectionText>
|
<SettingsSubsectionText>
|
||||||
<table className="mx_CryptographyPanel_sessionInfo">
|
<table className="mx_CryptographyPanel_sessionInfo">
|
||||||
<tr>
|
<tbody>
|
||||||
<th scope="row">{_t("settings|security|session_id")}</th>
|
<tr>
|
||||||
<td>
|
<th scope="row">{_t("settings|security|session_id")}</th>
|
||||||
<code>{deviceId}</code>
|
<td>
|
||||||
</td>
|
<code>{deviceId}</code>
|
||||||
</tr>
|
</td>
|
||||||
<tr>
|
</tr>
|
||||||
<th scope="row">{_t("settings|security|session_key")}</th>
|
<tr>
|
||||||
<td>
|
<th scope="row">{_t("settings|security|session_key")}</th>
|
||||||
<code>
|
<td>
|
||||||
<strong>{identityKey}</strong>
|
<code>
|
||||||
</code>
|
<strong>{identityKey}</strong>
|
||||||
</td>
|
</code>
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</SettingsSubsectionText>
|
</SettingsSubsectionText>
|
||||||
{importExportButtons}
|
{importExportButtons}
|
||||||
|
|
|
@ -9,13 +9,15 @@ Please see LICENSE files in the repository root for full details.
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { render } from "@testing-library/react";
|
import { render } from "@testing-library/react";
|
||||||
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
||||||
|
import { mocked } from "jest-mock";
|
||||||
|
|
||||||
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
||||||
import * as TestUtils from "../../../test-utils";
|
import * as TestUtils from "../../../test-utils";
|
||||||
import CryptographyPanel from "../../../../src/components/views/settings/CryptographyPanel";
|
import CryptographyPanel from "../../../../src/components/views/settings/CryptographyPanel";
|
||||||
|
import { flushPromises } from "../../../test-utils";
|
||||||
|
|
||||||
describe("CryptographyPanel", () => {
|
describe("CryptographyPanel", () => {
|
||||||
it("shows the session ID and key", () => {
|
it("shows the session ID and key", async () => {
|
||||||
const sessionId = "ABCDEFGHIJ";
|
const sessionId = "ABCDEFGHIJ";
|
||||||
const sessionKey = "AbCDeFghIJK7L/m4nOPqRSTUVW4xyzaBCDef6gHIJkl";
|
const sessionKey = "AbCDeFghIJK7L/m4nOPqRSTUVW4xyzaBCDef6gHIJkl";
|
||||||
const sessionKeyFormatted = "<strong>AbCD eFgh IJK7 L/m4 nOPq RSTU VW4x yzaB CDef 6gHI Jkl</strong>";
|
const sessionKeyFormatted = "<strong>AbCD eFgh IJK7 L/m4 nOPq RSTU VW4x yzaB CDef 6gHI Jkl</strong>";
|
||||||
|
@ -23,7 +25,8 @@ describe("CryptographyPanel", () => {
|
||||||
TestUtils.stubClient();
|
TestUtils.stubClient();
|
||||||
const client: MatrixClient = MatrixClientPeg.safeGet();
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
||||||
client.deviceId = sessionId;
|
client.deviceId = sessionId;
|
||||||
client.getDeviceEd25519Key = () => sessionKey;
|
|
||||||
|
mocked(client.getCrypto()!.getOwnDeviceKeys).mockResolvedValue({ ed25519: sessionKey, curve25519: "1234" });
|
||||||
|
|
||||||
// When we render the CryptographyPanel
|
// When we render the CryptographyPanel
|
||||||
const rendered = render(<CryptographyPanel />);
|
const rendered = render(<CryptographyPanel />);
|
||||||
|
@ -32,6 +35,35 @@ describe("CryptographyPanel", () => {
|
||||||
const codes = rendered.container.querySelectorAll("code");
|
const codes = rendered.container.querySelectorAll("code");
|
||||||
expect(codes.length).toEqual(2);
|
expect(codes.length).toEqual(2);
|
||||||
expect(codes[0].innerHTML).toEqual(sessionId);
|
expect(codes[0].innerHTML).toEqual(sessionId);
|
||||||
|
|
||||||
|
// Initially a placeholder
|
||||||
|
expect(codes[1].innerHTML).toEqual("<b>...</b>");
|
||||||
|
|
||||||
|
// Then the actual key
|
||||||
|
await flushPromises();
|
||||||
expect(codes[1].innerHTML).toEqual(sessionKeyFormatted);
|
expect(codes[1].innerHTML).toEqual(sessionKeyFormatted);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("handles errors fetching session key", async () => {
|
||||||
|
const sessionId = "ABCDEFGHIJ";
|
||||||
|
|
||||||
|
TestUtils.stubClient();
|
||||||
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
||||||
|
client.deviceId = sessionId;
|
||||||
|
|
||||||
|
mocked(client.getCrypto()!.getOwnDeviceKeys).mockRejectedValue(new Error("bleh"));
|
||||||
|
|
||||||
|
// When we render the CryptographyPanel
|
||||||
|
const rendered = render(<CryptographyPanel />);
|
||||||
|
|
||||||
|
// Then it displays info about the user's session
|
||||||
|
const codes = rendered.container.querySelectorAll("code");
|
||||||
|
|
||||||
|
// Initially a placeholder
|
||||||
|
expect(codes[1].innerHTML).toEqual("<b>...</b>");
|
||||||
|
|
||||||
|
// Then "not supported key
|
||||||
|
await flushPromises();
|
||||||
|
expect(codes[1].innerHTML).toEqual("<b><not supported></b>");
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -314,32 +314,52 @@ exports[`<SecurityUserSettingsTab /> renders security section 1`] = `
|
||||||
<table
|
<table
|
||||||
class="mx_CryptographyPanel_sessionInfo"
|
class="mx_CryptographyPanel_sessionInfo"
|
||||||
>
|
>
|
||||||
<tr>
|
<tbody>
|
||||||
<th
|
<tr>
|
||||||
scope="row"
|
<th
|
||||||
>
|
scope="row"
|
||||||
Session ID:
|
>
|
||||||
</th>
|
Session ID:
|
||||||
<td>
|
</th>
|
||||||
<code />
|
<td>
|
||||||
</td>
|
<code />
|
||||||
</tr>
|
</td>
|
||||||
<tr>
|
</tr>
|
||||||
<th
|
<tr>
|
||||||
scope="row"
|
<th
|
||||||
>
|
scope="row"
|
||||||
Session key:
|
>
|
||||||
</th>
|
Session key:
|
||||||
<td>
|
</th>
|
||||||
<code>
|
<td>
|
||||||
<strong>
|
<code>
|
||||||
<not supported>
|
<strong>
|
||||||
</strong>
|
...
|
||||||
</code>
|
</strong>
|
||||||
</td>
|
</code>
|
||||||
</tr>
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
class="mx_CryptographyPanel_importExportButtons"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_primary_outline"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
Export E2E room keys
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_primary_outline"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
Import E2E room keys
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
class="mx_SettingsFlag"
|
class="mx_SettingsFlag"
|
||||||
>
|
>
|
||||||
|
|
|
@ -135,7 +135,6 @@ export const mockClientMethodsDevice = (
|
||||||
deviceId = "test-device-id",
|
deviceId = "test-device-id",
|
||||||
): Partial<Record<MethodLikeKeys<MatrixClient>, unknown>> => ({
|
): Partial<Record<MethodLikeKeys<MatrixClient>, unknown>> => ({
|
||||||
getDeviceId: jest.fn().mockReturnValue(deviceId),
|
getDeviceId: jest.fn().mockReturnValue(deviceId),
|
||||||
getDeviceEd25519Key: jest.fn(),
|
|
||||||
getDevices: jest.fn().mockResolvedValue({ devices: [] }),
|
getDevices: jest.fn().mockResolvedValue({ devices: [] }),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -164,10 +163,9 @@ export const mockClientMethodsCrypto = (): Partial<
|
||||||
isSecretStorageReady: jest.fn(),
|
isSecretStorageReady: jest.fn(),
|
||||||
getSessionBackupPrivateKey: jest.fn(),
|
getSessionBackupPrivateKey: jest.fn(),
|
||||||
getVersion: jest.fn().mockReturnValue("Version 0"),
|
getVersion: jest.fn().mockReturnValue("Version 0"),
|
||||||
getOwnDeviceKeys: jest.fn(),
|
getOwnDeviceKeys: jest.fn().mockReturnValue(new Promise(() => {})),
|
||||||
getCrossSigningKeyId: jest.fn(),
|
getCrossSigningKeyId: jest.fn(),
|
||||||
}),
|
}),
|
||||||
getDeviceEd25519Key: jest.fn(),
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const mockClientMethodsRooms = (rooms: Room[] = []): Partial<Record<MethodLikeKeys<MatrixClient>, unknown>> => ({
|
export const mockClientMethodsRooms = (rooms: Room[] = []): Partial<Record<MethodLikeKeys<MatrixClient>, unknown>> => ({
|
||||||
|
|
|
@ -124,6 +124,7 @@ export function createTestClient(): MatrixClient {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
getCrypto: jest.fn().mockReturnValue({
|
getCrypto: jest.fn().mockReturnValue({
|
||||||
|
getOwnDeviceKeys: jest.fn(),
|
||||||
getUserDeviceInfo: jest.fn(),
|
getUserDeviceInfo: jest.fn(),
|
||||||
getUserVerificationStatus: jest.fn(),
|
getUserVerificationStatus: jest.fn(),
|
||||||
getDeviceVerificationStatus: jest.fn(),
|
getDeviceVerificationStatus: jest.fn(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue