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
Implement MSC3819: Allowing widgets to send/receive to-device messages #8885
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
3212410
Implement MSC3819: Allowing widgets to send/receive to-device messages
robintown 4442c31
Merge branch 'develop' into to-device
robintown b1ee16b
Merge branch 'develop' into to-device
robintown 1f2d0c5
Don't change the room events and state events drivers
robintown b3a4594
Merge branch 'develop' into to-device
robintown c753a2f
Update to latest matrix-widget-api changes
robintown 3b02a45
Merge branch 'develop' into to-device
robintown 4c2a0d0
Support sending encrypted to-device messages
robintown c4e63f3
Merge branch 'develop' into to-device
robintown e055512
Use queueToDevice for better reliability
robintown ceb7fc0
Update types for latest WidgetDriver changes
robintown 15789d8
Upgrade matrix-widget-api
robintown 95c426a
Add tests
robintown de37bae
Merge branch 'develop' into to-device
robintown e9b5528
Test StopGapWidget
robintown c995b7c
Merge branch 'develop' into to-device
robintown 24823ba
Fix a potential memory leak
robintown File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if this interface should be like the new queueToDevice API (ie. a list of objects) rather than the two-level map, so we just expose the higher level interface to the widgets. It would also save all the flatMap-ing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The interface here is dictated by the WidgetDriver API from matrix-widget-sdk, which isn't supposed to know about the exact higher-level interfaces of the js-sdk. My reasoning with making it take a two-level map like this was to match the CS API and what's "actually" being sent over the wire