This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up key backup using non-deprecated APIs (#12005)
- Loading branch information
1 parent
1ce569b
commit df11b90
Showing
9 changed files
with
198 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
Copyright 2023 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 { test, expect } from "../../element-web-test"; | ||
|
||
test.describe("Backups", () => { | ||
test.use({ | ||
displayName: "Hanako", | ||
}); | ||
|
||
test("Create, delete and recreate a keys backup", async ({ page, user, app }, workerInfo) => { | ||
// skipIfLegacyCrypto | ||
test.skip( | ||
workerInfo.project.name === "Legacy Crypto", | ||
"This test only works with Rust crypto. Deleting the backup seems to fail with legacy crypto.", | ||
); | ||
|
||
// Create a backup | ||
const tab = await app.settings.openUserSettings("Security & Privacy"); | ||
await expect(tab.getByRole("heading", { name: "Secure Backup" })).toBeVisible(); | ||
await tab.getByRole("button", { name: "Set up", exact: true }).click(); | ||
const dialog = await app.getDialogByTitle("Set up Secure Backup", 60000); | ||
await dialog.getByRole("button", { name: "Continue", exact: true }).click(); | ||
await expect(dialog.getByRole("heading", { name: "Save your Security Key" })).toBeVisible(); | ||
await dialog.getByRole("button", { name: "Copy", exact: true }).click(); | ||
const securityKey = await app.getClipboard(); | ||
await dialog.getByRole("button", { name: "Continue", exact: true }).click(); | ||
await expect(dialog.getByRole("heading", { name: "Secure Backup successful" })).toBeVisible(); | ||
await dialog.getByRole("button", { name: "Done", exact: true }).click(); | ||
|
||
// Delete it | ||
await app.settings.openUserSettings("Security & Privacy"); | ||
await expect(tab.getByRole("heading", { name: "Secure Backup" })).toBeVisible(); | ||
await tab.getByRole("button", { name: "Delete Backup", exact: true }).click(); | ||
await dialog.getByTestId("dialog-primary-button").click(); // Click "Delete Backup" | ||
|
||
// Create another | ||
await tab.getByRole("button", { name: "Set up", exact: true }).click(); | ||
dialog.getByLabel("Security Key").fill(securityKey); | ||
await dialog.getByRole("button", { name: "Continue", exact: true }).click(); | ||
await expect(dialog.getByRole("heading", { name: "Success!" })).toBeVisible(); | ||
await dialog.getByRole("button", { name: "OK", exact: true }).click(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
Copyright 2023 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 { mocked } from "jest-mock"; | ||
import { CryptoApi } from "matrix-js-sdk/src/crypto-api"; | ||
|
||
import { accessSecretStorage } from "../src/SecurityManager"; | ||
import { filterConsole, stubClient } from "./test-utils"; | ||
|
||
describe("SecurityManager", () => { | ||
describe("accessSecretStorage", () => { | ||
filterConsole("Not setting dehydration key: no SSSS key found"); | ||
|
||
it("runs the function passed in", async () => { | ||
// Given a client | ||
const crypto = { | ||
bootstrapCrossSigning: () => {}, | ||
bootstrapSecretStorage: () => {}, | ||
} as unknown as CryptoApi; | ||
const client = stubClient(); | ||
mocked(client.hasSecretStorageKey).mockResolvedValue(true); | ||
mocked(client.getCrypto).mockReturnValue(crypto); | ||
|
||
// When I run accessSecretStorage | ||
const func = jest.fn(); | ||
await accessSecretStorage(func); | ||
|
||
// Then we call the passed-in function | ||
expect(func).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
describe("expecting errors", () => { | ||
filterConsole("End-to-end encryption is disabled - unable to access secret storage"); | ||
|
||
it("throws if crypto is unavailable", async () => { | ||
// Given a client with no crypto | ||
const client = stubClient(); | ||
mocked(client.hasSecretStorageKey).mockResolvedValue(true); | ||
mocked(client.getCrypto).mockReturnValue(undefined); | ||
|
||
// When I run accessSecretStorage | ||
// Then we throw an error | ||
await expect(async () => { | ||
await accessSecretStorage(jest.fn()); | ||
}).rejects.toThrow("End-to-end encryption is disabled - unable to access secret storage"); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
test/components/views/dialogs/security/__snapshots__/CreateKeyBackupDialog-test.tsx.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters