mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Use on_logged_in
action in tests
This changes the way tests wait for login to complete from a timer-based system (which can cause intermittent failures) to an action-based system. The lifecycle code dispatches the action `on_logged_in` when login completes which we can wait for in the tests as a much better indication that work is done.
This commit is contained in:
parent
5112b33af2
commit
fef69b54fb
@ -307,8 +307,8 @@ describe('loading:', function() {
|
|||||||
|
|
||||||
loadApp();
|
loadApp();
|
||||||
|
|
||||||
return awaitSyncingSpinner(matrixChat).then(() => {
|
return awaitLoggedIn(matrixChat).then(() => {
|
||||||
// we got a sync spinner - let the sync complete
|
// we are logged in - let the sync complete
|
||||||
return expectAndAwaitSync();
|
return expectAndAwaitSync();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// once the sync completes, we should have a room view
|
// once the sync completes, we should have a room view
|
||||||
@ -327,8 +327,8 @@ describe('loading:', function() {
|
|||||||
|
|
||||||
loadApp();
|
loadApp();
|
||||||
|
|
||||||
return awaitSyncingSpinner(matrixChat).then(() => {
|
return awaitLoggedIn(matrixChat).then(() => {
|
||||||
// we got a sync spinner - let the sync complete
|
// we are logged in - let the sync complete
|
||||||
return expectAndAwaitSync();
|
return expectAndAwaitSync();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// once the sync completes, we should have a home page
|
// once the sync completes, we should have a home page
|
||||||
@ -347,8 +347,8 @@ describe('loading:', function() {
|
|||||||
uriFragment: "#/room/!room:id",
|
uriFragment: "#/room/!room:id",
|
||||||
});
|
});
|
||||||
|
|
||||||
return awaitSyncingSpinner(matrixChat).then(() => {
|
return awaitLoggedIn(matrixChat).then(() => {
|
||||||
// we got a sync spinner - let the sync complete
|
// we are logged in - let the sync complete
|
||||||
return expectAndAwaitSync();
|
return expectAndAwaitSync();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// once the sync completes, we should have a room view
|
// once the sync completes, we should have a room view
|
||||||
@ -417,9 +417,9 @@ describe('loading:', function() {
|
|||||||
|
|
||||||
return httpBackend.flush();
|
return httpBackend.flush();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
return awaitSyncingSpinner(matrixChat);
|
return awaitLoggedIn(matrixChat);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// we got a sync spinner - let the sync complete
|
// we are logged in - let the sync complete
|
||||||
return expectAndAwaitSync({isGuest: true});
|
return expectAndAwaitSync({isGuest: true});
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// once the sync completes, we should have a welcome page
|
// once the sync completes, we should have a welcome page
|
||||||
@ -448,7 +448,7 @@ describe('loading:', function() {
|
|||||||
|
|
||||||
return httpBackend.flush();
|
return httpBackend.flush();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
return awaitSyncingSpinner(matrixChat);
|
return awaitLoggedIn(matrixChat);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
return expectAndAwaitSync({isGuest: true});
|
return expectAndAwaitSync({isGuest: true});
|
||||||
}).then((req) => {
|
}).then((req) => {
|
||||||
@ -482,7 +482,7 @@ describe('loading:', function() {
|
|||||||
|
|
||||||
return httpBackend.flush();
|
return httpBackend.flush();
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
return awaitSyncingSpinner(matrixChat);
|
return awaitLoggedIn(matrixChat);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
return expectAndAwaitSync({isGuest: true});
|
return expectAndAwaitSync({isGuest: true});
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
@ -507,7 +507,7 @@ describe('loading:', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
return httpBackend.flush().then(() => {
|
return httpBackend.flush().then(() => {
|
||||||
return awaitSyncingSpinner(matrixChat);
|
return awaitLoggedIn(matrixChat);
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// we got a sync spinner - let the sync complete
|
// we got a sync spinner - let the sync complete
|
||||||
return expectAndAwaitSync();
|
return expectAndAwaitSync();
|
||||||
@ -654,33 +654,22 @@ function assertAtLoadingSpinner(matrixChat) {
|
|||||||
expect(domComponent.children.length).toEqual(1);
|
expect(domComponent.children.length).toEqual(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// we've got login creds, and are waiting for the sync to finish.
|
function awaitLoggedIn(matrixChat) {
|
||||||
// the page includes a logout link.
|
if (matrixChat.state.view === VIEWS.LOGGED_IN) {
|
||||||
function awaitSyncingSpinner(matrixChat, retryLimit, retryCount) {
|
|
||||||
if (retryLimit === undefined) {
|
|
||||||
retryLimit = 10;
|
|
||||||
}
|
|
||||||
if (retryCount === undefined) {
|
|
||||||
retryCount = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matrixChat.state.view === VIEWS.LOADING ||
|
|
||||||
matrixChat.state.view === VIEWS.LOGGING_IN) {
|
|
||||||
console.log(Date.now() + " Awaiting sync spinner: still loading.");
|
|
||||||
if (retryCount >= retryLimit) {
|
|
||||||
throw new Error("MatrixChat still not loaded after " +
|
|
||||||
retryCount + " tries");
|
|
||||||
}
|
|
||||||
// loading can take quite a long time, because we delete the
|
|
||||||
// indexedDB store.
|
|
||||||
return Promise.delay(5).then(() => {
|
|
||||||
return awaitSyncingSpinner(matrixChat, retryLimit, retryCount + 1);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(Date.now() + " Awaiting sync spinner: load complete.");
|
|
||||||
|
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
|
}
|
||||||
|
return new Promise(resolve => {
|
||||||
|
const onAction = ({ action }) => {
|
||||||
|
if (action !== "on_logged_in") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
console.log(Date.now() + ": Received on_logged_in action");
|
||||||
|
dis.unregister(dispatcherRef);
|
||||||
|
resolve();
|
||||||
|
};
|
||||||
|
const dispatcherRef = dis.register(onAction);
|
||||||
|
console.log(Date.now() + ": Waiting for on_logged_in action");
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function awaitRoomView(matrixChat, retryLimit, retryCount) {
|
function awaitRoomView(matrixChat, retryLimit, retryCount) {
|
||||||
|
Loading…
Reference in New Issue
Block a user