We no longer have tinting support, so remove it. We still need the `Tinter` to exist though as it's used in quite a few places (though does nothing). Similarly, we have to keep the `roomColor` setting due to it being used in a few places - another PR can take away the tinter support properly. The room tile context menu and top left menu are artifacts of the old room list. The end to end tests weren't failing before as the code path is unused, however it seems worthwhile to keep it as we will eventually need it.
55 lines
2.3 KiB
JavaScript
55 lines
2.3 KiB
JavaScript
/*
|
|
Copyright 2018 New Vector Ltd
|
|
Copyright 2019 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.
|
|
*/
|
|
|
|
const assert = require('assert');
|
|
|
|
async function openSettings(session, section) {
|
|
const menuButton = await session.query(".mx_UserMenu");
|
|
await menuButton.click();
|
|
const settingsItem = await session.query(".mx_UserMenu_iconSettings");
|
|
await settingsItem.click();
|
|
if (section) {
|
|
const sectionButton = await session.query(
|
|
`.mx_UserSettingsDialog .mx_TabbedView_tabLabels .mx_UserSettingsDialog_${section}Icon`);
|
|
await sectionButton.click();
|
|
}
|
|
}
|
|
|
|
module.exports.enableLazyLoading = async function(session) {
|
|
session.log.step(`enables lazy loading of members in the lab settings`);
|
|
const settingsButton = await session.query('.mx_BottomLeftMenu_settings');
|
|
await settingsButton.click();
|
|
const llCheckbox = await session.query("#feature_lazyloading");
|
|
await llCheckbox.click();
|
|
await session.waitForReload();
|
|
const closeButton = await session.query(".mx_RoomHeader_cancelButton");
|
|
await closeButton.click();
|
|
session.log.done();
|
|
};
|
|
|
|
module.exports.getE2EDeviceFromSettings = async function(session) {
|
|
session.log.step(`gets e2e device/key from settings`);
|
|
await openSettings(session, "security");
|
|
const deviceAndKey = await session.queryAll(".mx_SettingsTab_section .mx_SecurityUserSettingsTab_deviceInfo code");
|
|
assert.equal(deviceAndKey.length, 2);
|
|
const id = await (await deviceAndKey[0].getProperty("innerText")).jsonValue();
|
|
const key = await (await deviceAndKey[1].getProperty("innerText")).jsonValue();
|
|
const closeButton = await session.query(".mx_UserSettingsDialog .mx_Dialog_cancelButton");
|
|
await closeButton.click();
|
|
session.log.done();
|
|
return {id, key};
|
|
};
|