2018-08-07 18:58:58 +03:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2018-08-14 13:53:16 +03:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2018-08-07 18:58:58 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-09-13 11:31:15 +03:00
|
|
|
const {range} = require('./util');
|
2018-09-12 19:40:25 +03:00
|
|
|
const signup = require('./usecases/signup');
|
2020-05-27 14:57:45 +03:00
|
|
|
const toastScenarios = require('./scenarios/toast');
|
2018-09-13 11:31:15 +03:00
|
|
|
const roomDirectoryScenarios = require('./scenarios/directory');
|
|
|
|
const lazyLoadingScenarios = require('./scenarios/lazy-loading');
|
|
|
|
const e2eEncryptionScenarios = require('./scenarios/e2e-encryption');
|
2018-08-07 18:58:58 +03:00
|
|
|
|
2019-04-02 16:14:44 +03:00
|
|
|
module.exports = async function scenario(createSession, restCreator) {
|
2019-04-09 16:45:16 +03:00
|
|
|
let firstUser = true;
|
2018-08-14 13:53:16 +03:00
|
|
|
async function createUser(username) {
|
|
|
|
const session = await createSession(username);
|
2019-04-09 16:45:16 +03:00
|
|
|
if (firstUser) {
|
|
|
|
// only show browser version for first browser opened
|
|
|
|
console.log(`running tests on ${await session.browser.version()} ...`);
|
|
|
|
firstUser = false;
|
|
|
|
}
|
2019-04-25 16:28:39 +03:00
|
|
|
await signup(session, session.username, 'testsarefun!!!', session.hsUrl);
|
2018-08-14 13:53:16 +03:00
|
|
|
return session;
|
|
|
|
}
|
2018-08-07 18:58:58 +03:00
|
|
|
|
2018-08-14 13:53:16 +03:00
|
|
|
const alice = await createUser("alice");
|
|
|
|
const bob = await createUser("bob");
|
2018-08-08 13:35:50 +03:00
|
|
|
|
2020-05-27 14:57:45 +03:00
|
|
|
await toastScenarios(alice, bob);
|
2018-09-13 11:31:15 +03:00
|
|
|
await roomDirectoryScenarios(alice, bob);
|
|
|
|
await e2eEncryptionScenarios(alice, bob);
|
2019-04-03 16:15:28 +03:00
|
|
|
console.log("create REST users:");
|
2019-04-02 16:14:44 +03:00
|
|
|
const charlies = await createRestUsers(restCreator);
|
|
|
|
await lazyLoadingScenarios(alice, bob, charlies);
|
2019-10-09 18:51:50 +03:00
|
|
|
};
|
2018-09-11 19:32:32 +03:00
|
|
|
|
|
|
|
async function createRestUsers(restCreator) {
|
|
|
|
const usernames = range(1, 10).map((i) => `charly-${i}`);
|
2018-09-14 13:17:22 +03:00
|
|
|
const charlies = await restCreator.createSessionRange(usernames, "testtest", "charly-1..10");
|
2018-09-11 19:32:32 +03:00
|
|
|
await charlies.setDisplayName((s) => `Charly #${s.userName().split('-')[1]}`);
|
|
|
|
return charlies;
|
2018-08-08 13:35:50 +03:00
|
|
|
}
|