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 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement MSC3819: Allowing widgets to send/receive to-device messages (
#8885) * Implement MSC3819: Allowing widgets to send/receive to-device messages * Don't change the room events and state events drivers * Update to latest matrix-widget-api changes * Support sending encrypted to-device messages * Use queueToDevice for better reliability * Update types for latest WidgetDriver changes * Upgrade matrix-widget-api * Add tests * Test StopGapWidget * Fix a potential memory leak
- Loading branch information
Showing
9 changed files
with
322 additions
and
24 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
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,70 @@ | ||
/* | ||
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 { mocked, MockedObject } from "jest-mock"; | ||
import { MatrixClient, ClientEvent } from "matrix-js-sdk/src/client"; | ||
import { ClientWidgetApi } from "matrix-widget-api"; | ||
|
||
import { stubClient, mkRoom, mkEvent } from "../../test-utils"; | ||
import { MatrixClientPeg } from "../../../src/MatrixClientPeg"; | ||
import { StopGapWidget } from "../../../src/stores/widgets/StopGapWidget"; | ||
|
||
jest.mock("matrix-widget-api/lib/ClientWidgetApi"); | ||
|
||
describe("StopGapWidget", () => { | ||
let client: MockedObject<MatrixClient>; | ||
let widget: StopGapWidget; | ||
let messaging: MockedObject<ClientWidgetApi>; | ||
|
||
beforeEach(() => { | ||
stubClient(); | ||
client = mocked(MatrixClientPeg.get()); | ||
|
||
widget = new StopGapWidget({ | ||
app: { | ||
id: "test", | ||
creatorUserId: "@alice:example.org", | ||
type: "example", | ||
url: "https://example.org", | ||
}, | ||
room: mkRoom(client, "!1:example.org"), | ||
userId: "@alice:example.org", | ||
creatorUserId: "@alice:example.org", | ||
waitForIframeLoad: true, | ||
userWidget: false, | ||
}); | ||
// Start messaging without an iframe, since ClientWidgetApi is mocked | ||
widget.startMessaging(null as unknown as HTMLIFrameElement); | ||
messaging = mocked(mocked(ClientWidgetApi).mock.instances[0]); | ||
}); | ||
|
||
afterEach(() => { | ||
widget.stopMessaging(); | ||
}); | ||
|
||
it("feeds incoming to-device messages to the widget", async () => { | ||
const event = mkEvent({ | ||
event: true, | ||
type: "org.example.foo", | ||
user: "@alice:example.org", | ||
content: { hello: "world" }, | ||
}); | ||
|
||
client.emit(ClientEvent.ToDeviceEvent, event); | ||
await Promise.resolve(); // flush promises | ||
expect(messaging.feedToDevice).toHaveBeenCalledWith(event.getEffectiveEvent(), false); | ||
}); | ||
}); |
Oops, something went wrong.