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.
Fix import e2e key dialog staying disabled after paste (#10375)
- Loading branch information
Showing
3 changed files
with
181 additions
and
2 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
67 changes: 67 additions & 0 deletions
67
test/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx
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,67 @@ | ||
/* | ||
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 React from "react"; | ||
import { fireEvent, render } from "@testing-library/react"; | ||
import userEvent from "@testing-library/user-event"; | ||
|
||
import ImportE2eKeysDialog from "../../../../../src/async-components/views/dialogs/security/ImportE2eKeysDialog"; | ||
import { createTestClient } from "../../../../test-utils"; | ||
|
||
describe("ImportE2eKeysDialog", () => { | ||
it("renders", () => { | ||
const cli = createTestClient(); | ||
const onFinished = jest.fn(); | ||
const { asFragment } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />); | ||
expect(asFragment()).toMatchSnapshot(); | ||
}); | ||
|
||
it("should have disabled submit button initially", () => { | ||
const cli = createTestClient(); | ||
const onFinished = jest.fn(); | ||
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />); | ||
expect(container.querySelector("[type=submit]")!).toBeDisabled(); | ||
}); | ||
|
||
it("should enable submit once file is uploaded and passphrase typed in", () => { | ||
const cli = createTestClient(); | ||
const onFinished = jest.fn(); | ||
const file = new File(["test"], "file.txt", { type: "text/plain" }); | ||
|
||
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />); | ||
fireEvent.change(container.querySelector("[type=file]")!, { | ||
target: { files: [file] }, | ||
}); | ||
fireEvent.change(container.querySelector("[type=password]")!, { | ||
target: { value: "passphrase" }, | ||
}); | ||
expect(container.querySelector("[type=submit]")!).toBeEnabled(); | ||
}); | ||
|
||
it("should enable submit once file is uploaded and passphrase pasted in", async () => { | ||
const cli = createTestClient(); | ||
const onFinished = jest.fn(); | ||
const file = new File(["test"], "file.txt", { type: "text/plain" }); | ||
|
||
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />); | ||
fireEvent.change(container.querySelector("[type=file]")!, { | ||
target: { files: [file] }, | ||
}); | ||
await userEvent.click(container.querySelector("[type=password]")!); | ||
await userEvent.paste("passphrase"); | ||
expect(container.querySelector("[type=submit]")!).toBeEnabled(); | ||
}); | ||
}); |
113 changes: 113 additions & 0 deletions
113
test/components/views/dialogs/security/__snapshots__/ImportE2eKeysDialog-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`ImportE2eKeysDialog renders 1`] = ` | ||
<DocumentFragment> | ||
<div | ||
data-focus-guard="true" | ||
style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;" | ||
tabindex="0" | ||
/> | ||
<div | ||
aria-labelledby="mx_BaseDialog_title" | ||
class="mx_importE2eKeysDialog mx_Dialog_fixedWidth" | ||
data-focus-lock-disabled="false" | ||
role="dialog" | ||
> | ||
<div | ||
class="mx_Dialog_header mx_Dialog_headerWithCancel" | ||
> | ||
<h2 | ||
class="mx_Heading_h2 mx_Dialog_title" | ||
id="mx_BaseDialog_title" | ||
> | ||
Import room keys | ||
</h2> | ||
<div | ||
aria-label="Close dialog" | ||
class="mx_AccessibleButton mx_Dialog_cancelButton" | ||
role="button" | ||
tabindex="0" | ||
/> | ||
</div> | ||
<form> | ||
<div | ||
class="mx_Dialog_content" | ||
> | ||
<p> | ||
This process allows you to import encryption keys that you had previously exported from another Matrix client. You will then be able to decrypt any messages that the other client could decrypt. | ||
</p> | ||
<p> | ||
The export file will be protected with a passphrase. You should enter the passphrase here, to decrypt the file. | ||
</p> | ||
<div | ||
class="error" | ||
/> | ||
<div | ||
class="mx_E2eKeysDialog_inputTable" | ||
> | ||
<div | ||
class="mx_E2eKeysDialog_inputRow" | ||
> | ||
<div | ||
class="mx_E2eKeysDialog_inputLabel" | ||
> | ||
<label | ||
for="importFile" | ||
> | ||
File to import | ||
</label> | ||
</div> | ||
<div | ||
class="mx_E2eKeysDialog_inputCell" | ||
> | ||
<input | ||
id="importFile" | ||
type="file" | ||
/> | ||
</div> | ||
</div> | ||
<div | ||
class="mx_E2eKeysDialog_inputRow" | ||
> | ||
<div | ||
class="mx_Field mx_Field_input" | ||
> | ||
<input | ||
id="mx_Field_1" | ||
label="Enter passphrase" | ||
placeholder="Enter passphrase" | ||
size="64" | ||
type="password" | ||
value="" | ||
/> | ||
<label | ||
for="mx_Field_1" | ||
> | ||
Enter passphrase | ||
</label> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div | ||
class="mx_Dialog_buttons" | ||
> | ||
<input | ||
class="mx_Dialog_primary" | ||
disabled="" | ||
type="submit" | ||
value="Import" | ||
/> | ||
<button> | ||
Cancel | ||
</button> | ||
</div> | ||
</form> | ||
</div> | ||
<div | ||
data-focus-guard="true" | ||
style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;" | ||
tabindex="0" | ||
/> | ||
</DocumentFragment> | ||
`; |