2022-10-13 10:22:34 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016-2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2023-08-30 08:52:41 +02:00
|
|
|
import { RenderResult, screen, waitFor } from "@testing-library/react";
|
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
export function cleanLocalstorage(): void {
|
2016-08-11 12:40:40 +02:00
|
|
|
window.localStorage.clear();
|
2017-06-14 18:08:49 +02:00
|
|
|
}
|
2016-04-13 11:15:04 +02:00
|
|
|
|
2022-10-13 10:22:34 +02:00
|
|
|
export function deleteIndexedDB(dbName: string): Promise<void> {
|
|
|
|
return new Promise<void>((resolve, reject) => {
|
2017-06-14 18:08:49 +02:00
|
|
|
if (!window.indexedDB) {
|
|
|
|
resolve();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-20 12:01:27 +02:00
|
|
|
const startTime = Date.now();
|
|
|
|
console.log(`${startTime}: Removing indexeddb instance: ${dbName}`);
|
2017-06-14 18:08:49 +02:00
|
|
|
const req = window.indexedDB.deleteDatabase(dbName);
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
req.onblocked = (): void => {
|
2017-06-20 18:41:21 +02:00
|
|
|
console.log(`${Date.now()}: can't yet delete indexeddb ${dbName} because it is open elsewhere`);
|
2017-06-14 18:08:49 +02:00
|
|
|
};
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
req.onerror = (ev): void => {
|
2023-03-01 15:44:03 +01:00
|
|
|
reject(new Error(`${Date.now()}: unable to delete indexeddb ${dbName}: ${req.error?.message}`));
|
2017-06-14 18:08:49 +02:00
|
|
|
};
|
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
req.onsuccess = (): void => {
|
2017-07-20 12:01:27 +02:00
|
|
|
const now = Date.now();
|
2022-12-09 13:28:29 +01:00
|
|
|
console.log(`${now}: Removed indexeddb instance: ${dbName} in ${now - startTime} ms`);
|
2017-06-14 18:08:49 +02:00
|
|
|
resolve();
|
|
|
|
};
|
2017-06-20 16:35:01 +02:00
|
|
|
}).catch((e) => {
|
2017-06-20 18:41:21 +02:00
|
|
|
console.error(`${Date.now()}: Error removing indexeddb instance ${dbName}: ${e}`);
|
2017-06-20 16:35:01 +02:00
|
|
|
throw e;
|
2017-06-14 18:08:49 +02:00
|
|
|
});
|
|
|
|
}
|
2023-08-30 08:52:41 +02:00
|
|
|
|
|
|
|
// wait for loading page
|
|
|
|
export async function waitForLoadingSpinner(): Promise<void> {
|
|
|
|
await screen.findByRole("progressbar");
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function waitForWelcomeComponent(matrixChat?: RenderResult): Promise<void> {
|
|
|
|
await waitFor(() => matrixChat?.container.querySelector(".mx_Welcome"));
|
|
|
|
}
|