2016-08-10 01:15:04 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2020-01-15 22:05:55 +01:00
|
|
|
Copyright 2020 New Vector Ltd
|
2016-08-10 01:15:04 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* loading.js: test the myriad paths we have for loading the application */
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
import "fake-indexeddb/auto";
|
2016-08-10 01:15:04 +02:00
|
|
|
import React from 'react';
|
2022-10-13 10:22:34 +02:00
|
|
|
import { render, screen, fireEvent, waitFor, RenderResult, waitForElementToBeRemoved } from "@testing-library/react";
|
|
|
|
import PlatformPeg from 'matrix-react-sdk/src/PlatformPeg';
|
|
|
|
import { MatrixClientPeg } from 'matrix-react-sdk/src/MatrixClientPeg';
|
|
|
|
import MatrixChat from 'matrix-react-sdk/src/components/structures/MatrixChat';
|
2020-05-14 05:15:30 +02:00
|
|
|
import dis from 'matrix-react-sdk/src/dispatcher/dispatcher';
|
2017-07-04 16:25:09 +02:00
|
|
|
import MockHttpBackend from 'matrix-mock-request';
|
2022-10-13 10:22:34 +02:00
|
|
|
import { makeType } from "matrix-react-sdk/src/utils/TypeUtils";
|
2022-07-14 15:04:32 +02:00
|
|
|
import { ValidatedServerConfig } from 'matrix-react-sdk/src/utils/ValidatedServerConfig';
|
2022-10-13 10:22:34 +02:00
|
|
|
import { IndexedDBCryptoStore } from "matrix-js-sdk/src/crypto/store/indexeddb-crypto-store";
|
2022-11-23 17:24:36 +01:00
|
|
|
import { QueryDict, sleep } from "matrix-js-sdk/src/utils";
|
2022-10-13 10:22:34 +02:00
|
|
|
|
|
|
|
import "../jest-mocks";
|
|
|
|
import WebPlatform from '../../src/vector/platform/WebPlatform';
|
|
|
|
import { parseQs, parseQsFromFragment } from '../../src/vector/url_utils';
|
|
|
|
import { cleanLocalstorage, deleteIndexedDB } from "../test-utils";
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
const DEFAULT_HS_URL = 'http://my_server';
|
|
|
|
const DEFAULT_IS_URL = 'http://my_is';
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2018-11-22 19:25:55 +01:00
|
|
|
describe('loading:', function() {
|
2016-08-10 01:15:04 +02:00
|
|
|
let parentDiv;
|
|
|
|
let httpBackend;
|
|
|
|
|
|
|
|
// an Object simulating the window.location
|
|
|
|
let windowLocation;
|
|
|
|
|
2016-08-11 03:00:27 +02:00
|
|
|
// the mounted MatrixChat
|
2022-10-13 10:22:34 +02:00
|
|
|
let matrixChat: RenderResult;
|
2016-08-11 03:00:27 +02:00
|
|
|
|
2017-06-16 16:05:14 +02:00
|
|
|
// a promise which resolves when the MatrixChat calls onTokenLoginCompleted
|
2017-06-19 10:04:24 +02:00
|
|
|
let tokenLoginCompletePromise;
|
2016-08-11 03:00:27 +02:00
|
|
|
|
2016-08-10 01:15:04 +02:00
|
|
|
beforeEach(function() {
|
|
|
|
httpBackend = new MockHttpBackend();
|
2022-10-12 19:59:10 +02:00
|
|
|
window.fetch = httpBackend.fetchFn;
|
2016-08-10 01:15:04 +02:00
|
|
|
parentDiv = document.createElement('div');
|
|
|
|
|
|
|
|
// uncomment this to actually add the div to the UI, to help with
|
|
|
|
// debugging (but slow things down)
|
|
|
|
// document.body.appendChild(parentDiv);
|
|
|
|
|
|
|
|
windowLocation = null;
|
2016-08-11 03:00:27 +02:00
|
|
|
matrixChat = null;
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
|
2018-11-22 19:25:55 +01:00
|
|
|
afterEach(async function() {
|
2017-06-20 18:41:21 +02:00
|
|
|
console.log(`${Date.now()}: loading: afterEach`);
|
2022-10-13 10:22:34 +02:00
|
|
|
matrixChat?.unmount();
|
|
|
|
// unmounting should have cleared the MatrixClientPeg
|
|
|
|
expect(MatrixClientPeg.get()).toBe(null);
|
|
|
|
|
|
|
|
// clear the indexeddbs so we can start from a clean slate next time.
|
|
|
|
await Promise.all([
|
|
|
|
deleteIndexedDB('matrix-js-sdk:crypto'),
|
|
|
|
deleteIndexedDB('matrix-js-sdk:riot-web-sync'),
|
|
|
|
]);
|
|
|
|
cleanLocalstorage();
|
2017-06-20 18:41:21 +02:00
|
|
|
console.log(`${Date.now()}: loading: afterEach complete`);
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
/* simulate the load process done by index.js
|
|
|
|
*
|
|
|
|
* TODO: it would be nice to factor some of this stuff out of index.js so
|
|
|
|
* that we can test it rather than our own implementation of it.
|
|
|
|
*/
|
2022-11-23 17:24:36 +01:00
|
|
|
function loadApp(opts?): void {
|
2016-08-11 03:00:27 +02:00
|
|
|
opts = opts || {};
|
|
|
|
const queryString = opts.queryString || "";
|
|
|
|
const uriFragment = opts.uriFragment || "";
|
|
|
|
|
2016-08-10 01:15:04 +02:00
|
|
|
windowLocation = {
|
2016-08-11 03:00:27 +02:00
|
|
|
search: queryString,
|
2016-08-10 01:15:04 +02:00
|
|
|
hash: uriFragment,
|
2022-11-23 17:24:36 +01:00
|
|
|
toString: function(): string { return this.search + this.hash; },
|
2016-08-10 01:15:04 +02:00
|
|
|
};
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
function onNewScreen(screen): void {
|
2017-01-24 12:26:09 +01:00
|
|
|
console.log(Date.now() + " newscreen "+screen);
|
2018-11-22 19:25:55 +01:00
|
|
|
const hash = '#/' + screen;
|
2017-06-14 19:00:02 +02:00
|
|
|
windowLocation.hash = hash;
|
|
|
|
console.log(Date.now() + " browser URI now "+ windowLocation);
|
2016-08-10 01:15:04 +02:00
|
|
|
}
|
|
|
|
|
2017-03-29 17:07:11 +02:00
|
|
|
// Parse the given window.location and return parameters that can be used when calling
|
|
|
|
// MatrixChat.showScreen(screen, params)
|
2022-11-23 17:24:36 +01:00
|
|
|
function getScreenFromLocation(location): { screen: string, params: QueryDict } {
|
2017-03-29 17:07:11 +02:00
|
|
|
const fragparts = parseQsFromFragment(location);
|
|
|
|
return {
|
|
|
|
screen: fragparts.location.substring(1),
|
|
|
|
params: fragparts.params,
|
2018-11-22 19:25:55 +01:00
|
|
|
};
|
2017-03-29 17:07:11 +02:00
|
|
|
}
|
|
|
|
|
2016-08-10 01:15:04 +02:00
|
|
|
const fragParts = parseQsFromFragment(windowLocation);
|
2017-06-15 03:17:24 +02:00
|
|
|
|
|
|
|
const config = Object.assign({
|
|
|
|
default_hs_url: DEFAULT_HS_URL,
|
|
|
|
default_is_url: DEFAULT_IS_URL,
|
2019-05-04 00:27:41 +02:00
|
|
|
validated_server_config: makeType(ValidatedServerConfig, {
|
2019-05-03 08:11:51 +02:00
|
|
|
hsUrl: DEFAULT_HS_URL,
|
|
|
|
hsName: "TEST_ENVIRONMENT",
|
|
|
|
hsNameIsDifferent: false, // yes, we lie
|
|
|
|
isUrl: DEFAULT_IS_URL,
|
2019-05-04 00:27:41 +02:00
|
|
|
}),
|
2019-02-14 14:29:57 +01:00
|
|
|
embeddedPages: {
|
|
|
|
homeUrl: 'data:text/html;charset=utf-8;base64,PGh0bWw+PC9odG1sPg==',
|
|
|
|
},
|
2017-06-15 03:17:24 +02:00
|
|
|
}, opts.config || {});
|
|
|
|
|
2018-12-18 19:13:51 +01:00
|
|
|
PlatformPeg.set(new WebPlatform());
|
2017-11-19 21:46:40 +01:00
|
|
|
|
2018-11-22 19:25:55 +01:00
|
|
|
const params = parseQs(windowLocation);
|
2019-03-26 13:46:26 +01:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
tokenLoginCompletePromise = new Promise<void>(resolve => {
|
|
|
|
matrixChat = render(
|
2019-03-26 13:46:26 +01:00
|
|
|
<MatrixChat
|
|
|
|
onNewScreen={onNewScreen}
|
|
|
|
config={config}
|
2019-05-04 00:27:41 +02:00
|
|
|
serverConfig={config.validated_server_config}
|
2019-03-26 13:46:26 +01:00
|
|
|
realQueryParams={params}
|
|
|
|
startingFragmentQueryParams={fragParts.params}
|
|
|
|
enableGuest={true}
|
|
|
|
onTokenLoginCompleted={resolve}
|
|
|
|
initialScreenAfterLogin={getScreenFromLocation(windowLocation)}
|
2022-11-23 17:24:36 +01:00
|
|
|
makeRegistrationUrl={(): string => {throw new Error('Not implemented');}}
|
2019-03-26 13:46:26 +01:00
|
|
|
/>, parentDiv,
|
|
|
|
);
|
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
}
|
|
|
|
|
2017-05-19 14:33:50 +02:00
|
|
|
// set an expectation that we will get a call to /sync, then flush
|
|
|
|
// http requests until we do.
|
|
|
|
//
|
|
|
|
// returns a promise resolving to the received request
|
2022-11-23 17:24:36 +01:00
|
|
|
async function expectAndAwaitSync(opts?): Promise<any> {
|
2017-05-19 14:33:50 +02:00
|
|
|
let syncRequest = null;
|
2022-03-11 10:04:41 +01:00
|
|
|
httpBackend.when('GET', '/_matrix/client/versions')
|
|
|
|
.respond(200, {
|
|
|
|
"versions": ["r0.3.0"],
|
|
|
|
"unstable_features": {
|
2022-10-13 10:22:34 +02:00
|
|
|
"m.lazy_load_members": true,
|
|
|
|
},
|
2022-03-11 10:04:41 +01:00
|
|
|
});
|
2019-02-08 12:48:06 +01:00
|
|
|
const isGuest = opts && opts.isGuest;
|
|
|
|
if (!isGuest) {
|
|
|
|
// the call to create the LL filter
|
|
|
|
httpBackend.when('POST', '/filter').respond(200, { filter_id: 'llfid' });
|
2022-10-13 10:22:34 +02:00
|
|
|
httpBackend.when('GET', '/pushrules').respond(200, {});
|
2019-02-08 12:48:06 +01:00
|
|
|
}
|
2017-05-19 14:33:50 +02:00
|
|
|
httpBackend.when('GET', '/sync')
|
|
|
|
.check((r) => {syncRequest = r;})
|
2019-02-08 12:48:06 +01:00
|
|
|
.respond(200, {});
|
2017-05-19 14:33:50 +02:00
|
|
|
|
|
|
|
for (let attempts = 10; attempts > 0; attempts--) {
|
2017-06-13 15:45:05 +02:00
|
|
|
console.log(Date.now() + " waiting for /sync");
|
2017-05-19 14:33:50 +02:00
|
|
|
if (syncRequest) {
|
|
|
|
return syncRequest;
|
|
|
|
}
|
|
|
|
await httpBackend.flush();
|
|
|
|
}
|
|
|
|
throw new Error("Gave up waiting for /sync");
|
|
|
|
}
|
|
|
|
|
2016-08-10 01:15:04 +02:00
|
|
|
describe("Clean load with no stored credentials:", function() {
|
2019-11-22 15:08:45 +01:00
|
|
|
it('gives a welcome page by default', function() {
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp();
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
return sleep(1).then(async () => {
|
2016-08-10 01:15:04 +02:00
|
|
|
// at this point, we're trying to do a guest registration;
|
|
|
|
// we expect a spinner
|
2022-10-13 10:22:34 +02:00
|
|
|
await assertAtLoadingSpinner();
|
2016-08-10 01:15:04 +02:00
|
|
|
|
|
|
|
httpBackend.when('POST', '/register').check(function(req) {
|
|
|
|
expect(req.queryParams.kind).toEqual('guest');
|
|
|
|
}).respond(403, "Guest access is disabled");
|
|
|
|
|
|
|
|
return httpBackend.flush();
|
2017-06-06 16:54:45 +02:00
|
|
|
}).then(() => {
|
|
|
|
// Wait for another trip around the event loop for the UI to update
|
2019-02-08 17:35:39 +01:00
|
|
|
return awaitWelcomeComponent(matrixChat);
|
2016-12-09 15:27:41 +01:00
|
|
|
}).then(() => {
|
2022-10-13 10:22:34 +02:00
|
|
|
return waitFor(() => expect(windowLocation.hash).toEqual("#/welcome"));
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
it('should follow the original link after successful login', function() {
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp({
|
|
|
|
uriFragment: "#/room/!room:id",
|
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2019-06-05 17:53:22 +02:00
|
|
|
// Pass the liveliness checks
|
2022-10-13 10:22:34 +02:00
|
|
|
httpBackend.when("GET", "/versions").respond(200, { versions: ["r0.4.0"] });
|
2019-06-05 17:53:22 +02:00
|
|
|
httpBackend.when("GET", "/api/v1").respond(200, {});
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
return sleep(1).then(async () => {
|
2016-08-10 01:15:04 +02:00
|
|
|
// at this point, we're trying to do a guest registration;
|
|
|
|
// we expect a spinner
|
2022-10-13 10:22:34 +02:00
|
|
|
await assertAtLoadingSpinner();
|
2016-08-10 01:15:04 +02:00
|
|
|
|
|
|
|
httpBackend.when('POST', '/register').check(function(req) {
|
|
|
|
expect(req.queryParams.kind).toEqual('guest');
|
|
|
|
}).respond(403, "Guest access is disabled");
|
|
|
|
|
|
|
|
return httpBackend.flush();
|
2016-12-09 15:27:41 +01:00
|
|
|
}).then(() => {
|
|
|
|
// Wait for another trip around the event loop for the UI to update
|
2019-11-04 13:46:28 +01:00
|
|
|
return sleep(10);
|
2019-02-08 17:35:39 +01:00
|
|
|
}).then(() => {
|
|
|
|
return moveFromWelcomeToLogin(matrixChat);
|
2016-08-10 01:15:04 +02:00
|
|
|
}).then(() => {
|
2017-06-13 13:52:35 +02:00
|
|
|
return completeLogin(matrixChat);
|
2016-08-10 01:15:04 +02:00
|
|
|
}).then(() => {
|
|
|
|
// once the sync completes, we should have a room view
|
2017-01-24 14:35:41 +01:00
|
|
|
return awaitRoomView(matrixChat);
|
|
|
|
}).then(() => {
|
2016-08-10 01:15:04 +02:00
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
|
|
|
expect(windowLocation.hash).toEqual("#/room/!room:id");
|
2016-08-11 03:00:27 +02:00
|
|
|
|
|
|
|
// and the localstorage should have been updated
|
|
|
|
expect(localStorage.getItem('mx_user_id')).toEqual('@user:id');
|
|
|
|
expect(localStorage.getItem('mx_access_token')).toEqual('access_token');
|
|
|
|
expect(localStorage.getItem('mx_hs_url')).toEqual(DEFAULT_HS_URL);
|
|
|
|
expect(localStorage.getItem('mx_is_url')).toEqual(DEFAULT_IS_URL);
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2019-02-11 11:06:44 +01:00
|
|
|
});
|
2017-06-14 17:59:00 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
it.skip('should not register as a guest when using a #/login link', function() {
|
2017-06-14 17:59:00 +02:00
|
|
|
loadApp({
|
|
|
|
uriFragment: "#/login",
|
|
|
|
});
|
|
|
|
|
2019-06-05 17:53:22 +02:00
|
|
|
// Pass the liveliness checks
|
2022-10-13 10:22:34 +02:00
|
|
|
httpBackend.when("GET", "/versions").respond(200, { versions: ["r0.4.0"] });
|
2019-06-05 17:53:22 +02:00
|
|
|
httpBackend.when("GET", "/api/v1").respond(200, {});
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
return awaitLoginComponent(matrixChat).then(async () => {
|
|
|
|
await waitForElementToBeRemoved(() => screen.queryAllByLabelText("Loading..."));
|
2017-06-14 17:59:00 +02:00
|
|
|
// we expect a single <Login> component
|
2022-10-13 10:22:34 +02:00
|
|
|
await screen.findByRole("main");
|
|
|
|
screen.getAllByText("Sign in");
|
2017-06-14 17:59:00 +02:00
|
|
|
|
|
|
|
// the only outstanding request should be a GET /login
|
|
|
|
// (in particular there should be no /register request for
|
|
|
|
// guest registration).
|
2019-06-05 17:53:22 +02:00
|
|
|
const allowedRequests = [
|
|
|
|
"/_matrix/client/r0/login",
|
|
|
|
"/versions",
|
|
|
|
"/api/v1",
|
|
|
|
];
|
2017-06-14 17:59:00 +02:00
|
|
|
for (const req of httpBackend.requests) {
|
2019-06-05 17:53:22 +02:00
|
|
|
if (req.method === 'GET' && allowedRequests.find(p => req.path.endsWith(p))) {
|
2017-06-14 17:59:00 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error(`Unexpected HTTP request to ${req}`);
|
|
|
|
}
|
|
|
|
return completeLogin(matrixChat);
|
|
|
|
}).then(() => {
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(matrixChat.container.querySelector(".mx_HomePage")).toBeTruthy();
|
2017-06-14 17:59:00 +02:00
|
|
|
expect(windowLocation.hash).toEqual("#/home");
|
|
|
|
});
|
2019-02-11 11:06:44 +01:00
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("MatrixClient rehydrated from stored credentials:", function() {
|
2019-03-29 19:01:04 +01:00
|
|
|
beforeEach(async function() {
|
2022-10-13 10:22:34 +02:00
|
|
|
localStorage.setItem("mx_hs_url", "http://localhost");
|
|
|
|
localStorage.setItem("mx_is_url", "http://localhost");
|
2016-08-10 15:37:30 +02:00
|
|
|
localStorage.setItem("mx_access_token", "access_token");
|
|
|
|
localStorage.setItem("mx_user_id", "@me:localhost");
|
2017-06-13 13:52:35 +02:00
|
|
|
localStorage.setItem("mx_last_room_id", "!last_room:id");
|
2019-03-29 19:01:04 +01:00
|
|
|
|
|
|
|
// Create a crypto store as well to satisfy storage consistency checks
|
2020-01-15 22:06:44 +01:00
|
|
|
const cryptoStore = new IndexedDBCryptoStore(
|
2019-03-29 19:01:04 +01:00
|
|
|
indexedDB,
|
|
|
|
"matrix-js-sdk:crypto",
|
|
|
|
);
|
2020-02-27 15:57:52 +01:00
|
|
|
await cryptoStore.startup();
|
2017-06-13 13:52:35 +02:00
|
|
|
});
|
|
|
|
|
2019-02-11 11:06:44 +01:00
|
|
|
it('shows the last known room by default', function() {
|
2017-06-13 13:52:35 +02:00
|
|
|
loadApp();
|
|
|
|
|
2019-03-26 16:18:40 +01:00
|
|
|
return awaitLoggedIn(matrixChat).then(() => {
|
|
|
|
// we are logged in - let the sync complete
|
2017-06-13 13:52:35 +02:00
|
|
|
return expectAndAwaitSync();
|
|
|
|
}).then(() => {
|
|
|
|
// once the sync completes, we should have a room view
|
|
|
|
return awaitRoomView(matrixChat);
|
|
|
|
}).then(() => {
|
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
|
|
|
expect(windowLocation.hash).toEqual("#/room/!last_room:id");
|
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
it('shows a home page by default if we have no joined rooms', function() {
|
2017-06-13 13:52:35 +02:00
|
|
|
localStorage.removeItem("mx_last_room_id");
|
|
|
|
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp();
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
return awaitLoggedIn(matrixChat).then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
// we are logged in - let the sync complete
|
2017-05-19 14:33:50 +02:00
|
|
|
return expectAndAwaitSync();
|
2016-08-10 01:15:04 +02:00
|
|
|
}).then(() => {
|
2017-05-30 13:55:50 +02:00
|
|
|
// once the sync completes, we should have a home page
|
2016-08-10 01:15:04 +02:00
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(matrixChat.container.querySelector(".mx_HomePage")).toBeTruthy();
|
2017-05-30 13:55:50 +02:00
|
|
|
expect(windowLocation.hash).toEqual("#/home");
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
it('shows a room view if we followed a room link', function() {
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp({
|
|
|
|
uriFragment: "#/room/!room:id",
|
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
return awaitLoggedIn(matrixChat).then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
// we are logged in - let the sync complete
|
2017-05-19 14:33:50 +02:00
|
|
|
return expectAndAwaitSync();
|
2016-08-10 01:15:04 +02:00
|
|
|
}).then(() => {
|
|
|
|
// once the sync completes, we should have a room view
|
2017-01-24 14:35:41 +01:00
|
|
|
return awaitRoomView(matrixChat);
|
|
|
|
}).then(() => {
|
2016-08-10 01:15:04 +02:00
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
|
|
|
expect(windowLocation.hash).toEqual("#/room/!room:id");
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2019-02-11 11:06:44 +01:00
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
|
2017-06-13 13:52:35 +02:00
|
|
|
describe('/#/login link:', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
loadApp({
|
|
|
|
uriFragment: "#/login",
|
|
|
|
});
|
2017-06-16 16:05:14 +02:00
|
|
|
|
2017-06-13 15:45:05 +02:00
|
|
|
// give the UI a chance to display
|
2022-10-13 10:22:34 +02:00
|
|
|
return expectAndAwaitSync();
|
2017-06-13 13:52:35 +02:00
|
|
|
});
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
it('does not show a login view', async function() {
|
|
|
|
await awaitRoomView(matrixChat);
|
2017-06-13 13:52:35 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
await screen.findByLabelText("Spaces");
|
|
|
|
expect(screen.queryAllByText("Sign in")).toHaveLength(0);
|
2019-02-11 11:06:44 +01:00
|
|
|
});
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
|
|
|
});
|
2016-08-10 15:37:30 +02:00
|
|
|
|
|
|
|
describe('Guest auto-registration:', function() {
|
2019-11-22 15:08:45 +01:00
|
|
|
it('shows a welcome page by default', function() {
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp();
|
2016-08-10 15:37:30 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
return sleep(1).then(async () => {
|
2016-08-10 15:37:30 +02:00
|
|
|
// at this point, we're trying to do a guest registration;
|
|
|
|
// we expect a spinner
|
2022-10-13 10:22:34 +02:00
|
|
|
await assertAtLoadingSpinner();
|
2016-08-10 15:37:30 +02:00
|
|
|
|
|
|
|
httpBackend.when('POST', '/register').check(function(req) {
|
|
|
|
expect(req.queryParams.kind).toEqual('guest');
|
|
|
|
}).respond(200, {
|
|
|
|
user_id: "@guest:localhost",
|
|
|
|
access_token: "secret_token",
|
|
|
|
});
|
|
|
|
|
|
|
|
return httpBackend.flush();
|
2016-12-09 15:27:41 +01:00
|
|
|
}).then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
return awaitLoggedIn(matrixChat);
|
2016-08-10 15:37:30 +02:00
|
|
|
}).then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
// we are logged in - let the sync complete
|
2022-10-13 10:22:34 +02:00
|
|
|
return expectAndAwaitSync({ isGuest: true });
|
2016-08-10 15:37:30 +02:00
|
|
|
}).then(() => {
|
2019-02-08 17:35:39 +01:00
|
|
|
// once the sync completes, we should have a welcome page
|
2016-08-10 15:37:30 +02:00
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(matrixChat.container.querySelector(".mx_Welcome")).toBeTruthy();
|
2019-02-08 17:35:39 +01:00
|
|
|
expect(windowLocation.hash).toEqual("#/welcome");
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2019-02-11 16:18:29 +01:00
|
|
|
});
|
2016-08-10 15:37:30 +02:00
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
it('uses the default homeserver to register with', function() {
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp();
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
return sleep(1).then(async () => {
|
2016-08-11 03:00:27 +02:00
|
|
|
// at this point, we're trying to do a guest registration;
|
|
|
|
// we expect a spinner
|
2022-10-13 10:22:34 +02:00
|
|
|
await assertAtLoadingSpinner();
|
2016-08-11 03:00:27 +02:00
|
|
|
|
|
|
|
httpBackend.when('POST', '/register').check(function(req) {
|
2020-01-15 22:44:46 +01:00
|
|
|
expect(req.path.startsWith(DEFAULT_HS_URL)).toBe(true);
|
2016-08-11 03:00:27 +02:00
|
|
|
expect(req.queryParams.kind).toEqual('guest');
|
|
|
|
}).respond(200, {
|
|
|
|
user_id: "@guest:localhost",
|
|
|
|
access_token: "secret_token",
|
|
|
|
});
|
|
|
|
|
|
|
|
return httpBackend.flush();
|
2016-12-09 15:27:41 +01:00
|
|
|
}).then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
return awaitLoggedIn(matrixChat);
|
2016-08-11 03:00:27 +02:00
|
|
|
}).then(() => {
|
2022-10-13 10:22:34 +02:00
|
|
|
return expectAndAwaitSync({ isGuest: true });
|
2017-05-19 14:33:50 +02:00
|
|
|
}).then((req) => {
|
2020-01-15 22:44:46 +01:00
|
|
|
expect(req.path.startsWith(DEFAULT_HS_URL)).toBe(true);
|
2017-05-19 14:33:50 +02:00
|
|
|
|
2019-02-11 16:18:29 +01:00
|
|
|
// once the sync completes, we should have a welcome page
|
2016-08-11 03:00:27 +02:00
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(matrixChat.container.querySelector(".mx_Welcome")).toBeTruthy();
|
2019-02-11 16:18:29 +01:00
|
|
|
expect(windowLocation.hash).toEqual("#/welcome");
|
2018-12-11 17:13:46 +01:00
|
|
|
expect(MatrixClientPeg.get().baseUrl).toEqual(DEFAULT_HS_URL);
|
|
|
|
expect(MatrixClientPeg.get().idBaseUrl).toEqual(DEFAULT_IS_URL);
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2019-02-11 16:18:29 +01:00
|
|
|
});
|
2016-08-11 03:00:27 +02:00
|
|
|
|
2019-11-22 15:08:45 +01:00
|
|
|
it('shows a room view if we followed a room link', function() {
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp({
|
2018-11-22 19:25:55 +01:00
|
|
|
uriFragment: "#/room/!room:id",
|
2016-08-11 03:00:27 +02:00
|
|
|
});
|
2022-10-13 10:22:34 +02:00
|
|
|
return sleep(1).then(async () => {
|
2016-08-10 15:37:30 +02:00
|
|
|
// at this point, we're trying to do a guest registration;
|
|
|
|
// we expect a spinner
|
2022-10-13 10:22:34 +02:00
|
|
|
await assertAtLoadingSpinner();
|
2016-08-10 15:37:30 +02:00
|
|
|
|
|
|
|
httpBackend.when('POST', '/register').check(function(req) {
|
|
|
|
expect(req.queryParams.kind).toEqual('guest');
|
|
|
|
}).respond(200, {
|
|
|
|
user_id: "@guest:localhost",
|
|
|
|
access_token: "secret_token",
|
|
|
|
});
|
|
|
|
|
|
|
|
return httpBackend.flush();
|
2016-12-09 15:27:41 +01:00
|
|
|
}).then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
return awaitLoggedIn(matrixChat);
|
2016-08-10 15:37:30 +02:00
|
|
|
}).then(() => {
|
2022-10-13 10:22:34 +02:00
|
|
|
return expectAndAwaitSync({ isGuest: true });
|
2016-08-10 15:37:30 +02:00
|
|
|
}).then(() => {
|
|
|
|
// once the sync completes, we should have a room view
|
2017-01-24 14:35:41 +01:00
|
|
|
return awaitRoomView(matrixChat);
|
|
|
|
}).then(() => {
|
2016-08-10 15:37:30 +02:00
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
|
|
|
expect(windowLocation.hash).toEqual("#/room/!room:id");
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2016-08-10 15:37:30 +02:00
|
|
|
});
|
2017-06-14 21:27:02 +02:00
|
|
|
|
|
|
|
describe('Login as user', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
// first we have to load the homepage
|
|
|
|
loadApp();
|
|
|
|
|
|
|
|
httpBackend.when('POST', '/register').check(function(req) {
|
|
|
|
expect(req.queryParams.kind).toEqual('guest');
|
|
|
|
}).respond(200, {
|
|
|
|
user_id: "@guest:localhost",
|
|
|
|
access_token: "secret_token",
|
|
|
|
});
|
|
|
|
|
|
|
|
return httpBackend.flush().then(() => {
|
2019-03-26 16:18:40 +01:00
|
|
|
return awaitLoggedIn(matrixChat);
|
2017-06-14 21:27:02 +02:00
|
|
|
}).then(() => {
|
|
|
|
// we got a sync spinner - let the sync complete
|
|
|
|
return expectAndAwaitSync();
|
2022-10-13 10:22:34 +02:00
|
|
|
}).then(async () => {
|
2017-06-14 21:27:02 +02:00
|
|
|
// once the sync completes, we should have a home page
|
2022-10-13 10:22:34 +02:00
|
|
|
await waitFor(() => matrixChat.container.querySelector(".mx_HomePage"));
|
2017-06-14 21:27:02 +02:00
|
|
|
|
|
|
|
// we simulate a click on the 'login' button by firing off
|
|
|
|
// the relevant dispatch.
|
|
|
|
//
|
|
|
|
// XXX: is it an anti-pattern to access the react-sdk's
|
|
|
|
// dispatcher in this way? Is it better to find the login
|
|
|
|
// button and simulate a click? (we might have to arrange
|
|
|
|
// for it to be shown - it's not always, due to the
|
|
|
|
// collapsing left panel
|
|
|
|
|
|
|
|
dis.dispatch({ action: 'start_login' });
|
|
|
|
|
2017-07-13 01:18:49 +02:00
|
|
|
return awaitLoginComponent(matrixChat);
|
2017-06-14 21:27:02 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
it('should give us a login page', async function() {
|
2017-06-14 21:27:02 +02:00
|
|
|
// we expect a single <Login> component
|
2022-10-13 10:22:34 +02:00
|
|
|
await screen.findByRole("main");
|
|
|
|
screen.getAllByText("Sign in");
|
2017-06-14 21:27:02 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
expect(windowLocation.hash).toEqual("#/login");
|
2017-06-14 21:27:02 +02:00
|
|
|
});
|
|
|
|
});
|
2016-08-10 15:37:30 +02:00
|
|
|
});
|
2016-08-11 03:00:27 +02:00
|
|
|
|
|
|
|
describe('Token login:', function() {
|
2019-11-22 15:08:45 +01:00
|
|
|
it('logs in successfully', function() {
|
2020-06-26 00:59:08 +02:00
|
|
|
localStorage.setItem("mx_sso_hs_url", "https://homeserver");
|
|
|
|
localStorage.setItem("mx_sso_is_url", "https://idserver");
|
2016-08-11 03:00:27 +02:00
|
|
|
loadApp({
|
2020-06-03 21:34:20 +02:00
|
|
|
queryString: "?loginToken=secretToken",
|
2016-08-11 03:00:27 +02:00
|
|
|
});
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
return sleep(1).then(async () => {
|
2016-08-11 03:00:27 +02:00
|
|
|
// we expect a spinner while we're logging in
|
2022-10-13 10:22:34 +02:00
|
|
|
await assertAtLoadingSpinner();
|
2016-08-11 03:00:27 +02:00
|
|
|
|
|
|
|
httpBackend.when('POST', '/login').check(function(req) {
|
|
|
|
expect(req.path).toMatch(new RegExp("^https://homeserver/"));
|
|
|
|
expect(req.data.type).toEqual("m.login.token");
|
|
|
|
expect(req.data.token).toEqual("secretToken");
|
|
|
|
}).respond(200, {
|
|
|
|
user_id: "@user:localhost",
|
2017-02-03 00:41:49 +01:00
|
|
|
device_id: 'DEVICE_ID',
|
2016-08-11 03:00:27 +02:00
|
|
|
access_token: "access_token",
|
|
|
|
});
|
|
|
|
|
|
|
|
return httpBackend.flush();
|
|
|
|
}).then(() => {
|
2017-06-16 16:05:14 +02:00
|
|
|
// at this point, MatrixChat should fire onTokenLoginCompleted, which
|
2016-08-11 03:00:27 +02:00
|
|
|
// makes index.js reload the app. We're not going to attempt to
|
|
|
|
// simulate the reload - just check that things are left in the
|
|
|
|
// right state for the reloaded app.
|
|
|
|
|
2017-06-19 10:04:24 +02:00
|
|
|
return tokenLoginCompletePromise;
|
2016-08-11 03:00:27 +02:00
|
|
|
}).then(() => {
|
|
|
|
// check that the localstorage has been set up in such a way that
|
|
|
|
// the reloaded app can pick up where we leave off.
|
|
|
|
expect(localStorage.getItem('mx_user_id')).toEqual('@user:localhost');
|
|
|
|
expect(localStorage.getItem('mx_access_token')).toEqual('access_token');
|
|
|
|
expect(localStorage.getItem('mx_hs_url')).toEqual('https://homeserver');
|
|
|
|
expect(localStorage.getItem('mx_is_url')).toEqual('https://idserver');
|
2019-11-22 15:08:45 +01:00
|
|
|
});
|
2016-08-11 03:00:27 +02:00
|
|
|
});
|
|
|
|
});
|
2017-06-13 13:52:35 +02:00
|
|
|
|
|
|
|
// check that we have a Login component, send a 'user:pass' login,
|
|
|
|
// and await the HTTP requests.
|
2022-11-23 17:24:36 +01:00
|
|
|
async function completeLogin(matrixChat: RenderResult): Promise<void> {
|
2019-05-04 00:27:41 +02:00
|
|
|
// When we switch to the login component, it'll hit the login endpoint
|
|
|
|
// for proof of life and to get flows. We'll only give it one option.
|
|
|
|
httpBackend.when('GET', '/login')
|
2022-10-13 10:22:34 +02:00
|
|
|
.respond(200, { flows: [{ type: "m.login.password" }] });
|
2019-05-04 00:27:41 +02:00
|
|
|
httpBackend.flush(); // We already would have tried the GET /login request
|
|
|
|
|
|
|
|
// Give the component some time to finish processing the login flows before
|
|
|
|
// continuing.
|
2019-11-04 13:46:28 +01:00
|
|
|
await sleep(100);
|
2019-05-04 00:27:41 +02:00
|
|
|
|
2017-06-13 13:52:35 +02:00
|
|
|
httpBackend.when('POST', '/login').check(function(req) {
|
|
|
|
expect(req.data.type).toEqual('m.login.password');
|
|
|
|
expect(req.data.identifier.type).toEqual('m.id.user');
|
|
|
|
expect(req.data.identifier.user).toEqual('user');
|
|
|
|
expect(req.data.password).toEqual('pass');
|
|
|
|
}).respond(200, {
|
|
|
|
user_id: '@user:id',
|
|
|
|
device_id: 'DEVICE_ID',
|
|
|
|
access_token: 'access_token',
|
|
|
|
});
|
2022-10-13 10:22:34 +02:00
|
|
|
fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_username"), { target: { value: "user" } });
|
|
|
|
fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_password"), { target: { value: "pass" } });
|
|
|
|
fireEvent.click(screen.getByText("Sign in", { selector: ".mx_Login_submit" }));
|
2017-06-13 13:52:35 +02:00
|
|
|
|
|
|
|
return httpBackend.flush().then(() => {
|
|
|
|
// Wait for another trip around the event loop for the UI to update
|
2019-11-04 13:46:28 +01:00
|
|
|
return sleep(1);
|
2017-06-13 13:52:35 +02:00
|
|
|
}).then(() => {
|
|
|
|
return expectAndAwaitSync().catch((e) => {
|
|
|
|
throw new Error("Never got /sync after login: did the client start?");
|
|
|
|
});
|
|
|
|
}).then(() => {
|
|
|
|
httpBackend.verifyNoOutstandingExpectation();
|
|
|
|
});
|
|
|
|
}
|
2016-08-10 01:15:04 +02:00
|
|
|
});
|
2016-08-10 15:37:30 +02:00
|
|
|
|
|
|
|
// assert that we are on the loading page
|
2022-11-23 17:24:36 +01:00
|
|
|
async function assertAtLoadingSpinner(): Promise<void> {
|
2022-10-13 10:22:34 +02:00
|
|
|
await screen.findByRole("progressbar");
|
2016-08-10 15:37:30 +02:00
|
|
|
}
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
async function awaitLoggedIn(matrixChat: RenderResult): Promise<void> {
|
2022-10-13 10:22:34 +02:00
|
|
|
if (matrixChat.container.querySelector(".mx_MatrixChat_wrapper")) return; // already logged in
|
|
|
|
|
2019-03-26 16:18:40 +01:00
|
|
|
return new Promise(resolve => {
|
2022-11-23 17:24:36 +01:00
|
|
|
const onAction = ({ action }): void => {
|
2019-03-26 16:18:40 +01:00
|
|
|
if (action !== "on_logged_in") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
console.log(Date.now() + ": Received on_logged_in action");
|
|
|
|
dis.unregister(dispatcherRef);
|
2022-10-13 10:22:34 +02:00
|
|
|
resolve(sleep(1));
|
2019-03-26 16:18:40 +01:00
|
|
|
};
|
|
|
|
const dispatcherRef = dis.register(onAction);
|
|
|
|
console.log(Date.now() + ": Waiting for on_logged_in action");
|
|
|
|
});
|
2017-01-24 12:26:09 +01:00
|
|
|
}
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
async function awaitRoomView(matrixChat: RenderResult): Promise<void> {
|
2022-10-13 10:22:34 +02:00
|
|
|
await waitFor(() => matrixChat.container.querySelector(".mx_RoomView"));
|
2017-01-24 14:35:41 +01:00
|
|
|
}
|
2017-07-13 01:18:49 +02:00
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
async function awaitLoginComponent(matrixChat: RenderResult): Promise<void> {
|
2022-10-13 10:22:34 +02:00
|
|
|
await waitFor(() => matrixChat.container.querySelector(".mx_AuthPage"));
|
2017-07-13 01:18:49 +02:00
|
|
|
}
|
2019-02-08 17:35:39 +01:00
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
async function awaitWelcomeComponent(matrixChat: RenderResult): Promise<void> {
|
2022-10-13 10:22:34 +02:00
|
|
|
await waitFor(() => matrixChat.container.querySelector(".mx_Welcome"));
|
2019-02-08 17:35:39 +01:00
|
|
|
}
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
function moveFromWelcomeToLogin(matrixChat: RenderResult): Promise<void> {
|
2019-02-08 17:35:39 +01:00
|
|
|
dis.dispatch({ action: 'start_login' });
|
|
|
|
return awaitLoginComponent(matrixChat);
|
|
|
|
}
|