2018-09-11 18:30:57 +02:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
2019-12-20 01:57:50 +01:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2018-09-11 18:30:57 +02:00
|
|
|
|
|
|
|
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');
|
|
|
|
|
2019-04-02 15:15:13 +02:00
|
|
|
async function openSettings(session, section) {
|
|
|
|
const menuButton = await session.query(".mx_TopLeftMenuButton_name");
|
|
|
|
await menuButton.click();
|
2019-04-16 15:35:31 +02:00
|
|
|
const settingsItem = await session.query(".mx_TopLeftMenu_icon_settings");
|
2019-04-02 15:15:13 +02:00
|
|
|
await settingsItem.click();
|
|
|
|
if (section) {
|
2019-10-09 17:51:50 +02:00
|
|
|
const sectionButton = await session.query(
|
|
|
|
`.mx_UserSettingsDialog .mx_TabbedView_tabLabels .mx_UserSettingsDialog_${section}Icon`);
|
2019-04-02 15:15:13 +02:00
|
|
|
await sectionButton.click();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-10 18:13:41 +01:00
|
|
|
module.exports.enableLazyLoading = async function(session) {
|
2018-09-11 18:30:57 +02:00
|
|
|
session.log.step(`enables lazy loading of members in the lab settings`);
|
|
|
|
const settingsButton = await session.query('.mx_BottomLeftMenu_settings');
|
|
|
|
await settingsButton.click();
|
2019-04-16 15:35:31 +02:00
|
|
|
const llCheckbox = await session.query("#feature_lazyloading");
|
2018-09-11 18:30:57 +02:00
|
|
|
await llCheckbox.click();
|
|
|
|
await session.waitForReload();
|
2019-04-16 15:35:31 +02:00
|
|
|
const closeButton = await session.query(".mx_RoomHeader_cancelButton");
|
2018-09-11 18:30:57 +02:00
|
|
|
await closeButton.click();
|
|
|
|
session.log.done();
|
2020-01-10 18:13:41 +01:00
|
|
|
};
|
2018-09-11 18:30:57 +02:00
|
|
|
|
2020-01-10 18:13:41 +01:00
|
|
|
module.exports.getE2EDeviceFromSettings = async function(session) {
|
2018-09-11 18:30:57 +02:00
|
|
|
session.log.step(`gets e2e device/key from settings`);
|
2019-04-02 15:15:13 +02:00
|
|
|
await openSettings(session, "security");
|
2019-04-16 15:35:31 +02:00
|
|
|
const deviceAndKey = await session.queryAll(".mx_SettingsTab_section .mx_SecurityUserSettingsTab_deviceInfo code");
|
2018-09-11 18:30:57 +02:00
|
|
|
assert.equal(deviceAndKey.length, 2);
|
|
|
|
const id = await (await deviceAndKey[0].getProperty("innerText")).jsonValue();
|
|
|
|
const key = await (await deviceAndKey[1].getProperty("innerText")).jsonValue();
|
2019-04-02 15:15:13 +02:00
|
|
|
const closeButton = await session.query(".mx_UserSettingsDialog .mx_Dialog_cancelButton");
|
2018-09-11 18:30:57 +02:00
|
|
|
await closeButton.click();
|
|
|
|
session.log.done();
|
|
|
|
return {id, key};
|
2020-01-10 18:13:41 +01:00
|
|
|
};
|