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.
Regression test: switch between dm rooms without loader (#9752)
* switching dm rooms without loader regression test * lint * more specific js-sdk import * add wait for room list to settle before asserting * dont use js-sdk enum
- Loading branch information
Kerry
authored
Dec 15, 2022
1 parent
e857fe0
commit 9f795a4
Showing
1 changed file
with
81 additions
and
0 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,81 @@ | ||
/* | ||
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. | ||
*/ | ||
|
||
/// <reference types="cypress" /> | ||
|
||
import { EventType } from "matrix-js-sdk/src/@types/event"; | ||
|
||
import { SynapseInstance } from "../../plugins/synapsedocker"; | ||
import { MatrixClient } from "../../global"; | ||
|
||
describe("Room Directory", () => { | ||
let synapse: SynapseInstance; | ||
|
||
beforeEach(() => { | ||
cy.startSynapse("default").then((data) => { | ||
synapse = data; | ||
|
||
cy.initTestUser(synapse, "Alice"); | ||
}); | ||
}); | ||
|
||
afterEach(() => { | ||
cy.stopSynapse(synapse); | ||
}); | ||
|
||
it("should switch between existing dm rooms without a loader", () => { | ||
let bobClient: MatrixClient; | ||
let charlieClient: MatrixClient; | ||
cy.getBot(synapse, { | ||
displayName: "Bob", | ||
}).then((bob) => { | ||
bobClient = bob; | ||
}); | ||
|
||
cy.getBot(synapse, { | ||
displayName: "Charlie", | ||
}).then((charlie) => { | ||
charlieClient = charlie; | ||
}); | ||
|
||
// create dms with bob and charlie | ||
cy.getClient().then(async (cli) => { | ||
const bobRoom = await cli.createRoom({ is_direct: true }); | ||
const charlieRoom = await cli.createRoom({ is_direct: true }); | ||
await cli.invite(bobRoom.room_id, bobClient.getUserId()); | ||
await cli.invite(charlieRoom.room_id, charlieClient.getUserId()); | ||
await cli.setAccountData("m.direct" as EventType, { | ||
[bobClient.getUserId()]: [bobRoom.room_id], | ||
[charlieClient.getUserId()]: [charlieRoom.room_id], | ||
}); | ||
}); | ||
|
||
cy.wait(250); // let the room list settle | ||
|
||
cy.viewRoomByName("Bob"); | ||
|
||
// short timeout because loader is only visible for short period | ||
// we want to make sure it is never displayed when switching these rooms | ||
cy.get(".mx_RoomPreviewBar_spinnerTitle", { timeout: 1 }).should("not.exist"); | ||
// confirm the room was loaded | ||
cy.contains("Bob joined the room").should("exist"); | ||
|
||
cy.viewRoomByName("Charlie"); | ||
cy.get(".mx_RoomPreviewBar_spinnerTitle", { timeout: 1 }).should("not.exist"); | ||
// confirm the room was loaded | ||
cy.contains("Charlie joined the room").should("exist"); | ||
}); | ||
}); |