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');
|
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
|
|
|
|
2018-09-18 17:50:33 +03:00
|
|
|
module.exports = async function scenario(createSession, restCreator, runningOnTravis) {
|
2018-08-14 13:53:16 +03:00
|
|
|
async function createUser(username) {
|
|
|
|
const session = await createSession(username);
|
2018-09-11 19:28:50 +03:00
|
|
|
await signup(session, session.username, 'testtest', 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
|
|
|
|
2018-09-13 11:31:15 +03:00
|
|
|
await roomDirectoryScenarios(alice, bob);
|
|
|
|
await e2eEncryptionScenarios(alice, bob);
|
2018-09-18 17:50:33 +03:00
|
|
|
|
|
|
|
// disable LL tests until we can run synapse on anything > than 2.7.7 as
|
|
|
|
// /admin/register fails with a missing method.
|
|
|
|
// either switch to python3 on synapse,
|
|
|
|
// blocked on https://github.com/matrix-org/synapse/issues/3900
|
|
|
|
// or use a more recent version of ubuntu
|
|
|
|
// or switch to circleci?
|
|
|
|
if (!runningOnTravis) {
|
|
|
|
const charlies = await createRestUsers(restCreator);
|
|
|
|
await lazyLoadingScenarios(alice, bob, charlies);
|
|
|
|
}
|
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
|
|
|
}
|