72 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
/*
 | 
						|
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",
 | 
						|
                roomId: "!1: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);
 | 
						|
    });
 | 
						|
});
 |