Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cypress E2E test of general room settings tab with Percy snapshots #10997

Merged
merged 1 commit into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions cypress/e2e/settings/general-room-settings-tab.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
Copyright 2023 Suguru Hirahara

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 { HomeserverInstance } from "../../plugins/utils/homeserver";

describe("General room settings tab", () => {
let homeserver: HomeserverInstance;
const roomName = "Test Room";

beforeEach(() => {
cy.startHomeserver("default").then((data) => {
homeserver = data;
cy.initTestUser(homeserver, "Hanako");

cy.createRoom({ name: roomName }).viewRoomByName(roomName);
});
});

afterEach(() => {
cy.stopHomeserver(homeserver);
});

it("should be rendered properly", () => {
cy.openRoomSettings("General");

// Assert that "Show less" details element is rendered
cy.findByText("Show less").should("exist");

cy.findByTestId("General").percySnapshotElement(
"Room settings tab - General (Local addresses details area expanded)",
{
// Emulate TabbedView's actual min and max widths
// 580: '.mx_UserSettingsDialog .mx_TabbedView' min-width
// 796: 1036 (mx_TabbedView_tabsOnLeft actual width) - 240 (mx_TabbedView_tabPanel margin-right)
widths: [580, 796],
},
);

// Click the "Show less" details element
cy.findByText("Show less").click();

// Assert that "Show more" details element is rendered instead of "Show more"
cy.findByText("Show less").should("not.exist");
cy.findByText("Show more").should("exist");

cy.findByTestId("General").percySnapshotElement(
"Room settings tab - General (Local addresses details area collapsed)",
{
// Emulate TabbedView's actual min and max widths
// 580: '.mx_UserSettingsDialog .mx_TabbedView' min-width
// 796: 1036 (mx_TabbedView_tabsOnLeft actual width) - 240 (mx_TabbedView_tabPanel margin-right)
widths: [580, 796],
},
);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default class GeneralRoomSettingsTab extends React.Component<IProps, ISta
}

return (
<SettingsTab>
<SettingsTab data-testid="General">
<SettingsSection heading={_t("General")}>
<RoomProfileSettings roomId={room.roomId} />
</SettingsSection>
Expand Down
Loading