mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-05-24 08:15:17 +00:00
100 lines
3.5 KiB
TypeScript
100 lines
3.5 KiB
TypeScript
// Copyright 2022 - 2024 Gnuxie <Gnuxie@protonmail.com>
|
|
// Copyright 2021 - 2022 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// SPDX-License-Identifier: AFL-3.0 AND Apache-2.0
|
|
//
|
|
// SPDX-FileAttributionText: <text>
|
|
// This modified file incorporates work from mjolnir
|
|
// https://github.com/matrix-org/mjolnir
|
|
// </text>
|
|
|
|
import {
|
|
DefaultEventDecoder,
|
|
MJOLNIR_PROTECTED_ROOMS_EVENT_TYPE,
|
|
MJOLNIR_WATCHED_POLICY_ROOMS_EVENT_TYPE,
|
|
} from "matrix-protection-suite";
|
|
import { configRead, getStoragePath } from "../../src/config";
|
|
import { patchMatrixClient } from "../../src/utils";
|
|
import {
|
|
DraupnirTestContext,
|
|
draupnir,
|
|
draupnirClient,
|
|
makeBotModeToggle,
|
|
teardownManagementRoom,
|
|
} from "./mjolnirSetupUtils";
|
|
import { makeTopLevelStores } from "../../src/backingstore/DraupnirStores";
|
|
|
|
patchMatrixClient();
|
|
|
|
// When Draupnir starts (src/index.ts) it clobbers the config by resolving the management room
|
|
// alias specified in the config (config.managementRoom) and overwriting that with the room ID.
|
|
// Unfortunately every piece of code importing that config imports the same instance, including
|
|
// testing code, which is problematic when we want to create a fresh management room for each test.
|
|
// So there is some code in here to "undo" the mutation after we stop Draupnir syncing.
|
|
export const mochaHooks = {
|
|
beforeEach: [
|
|
async function (this: DraupnirTestContext) {
|
|
console.error(
|
|
"---- entering test",
|
|
JSON.stringify(this.currentTest?.title)
|
|
); // Makes MatrixClient error logs a bit easier to parse.
|
|
console.log("mochaHooks.beforeEach");
|
|
// Sometimes it takes a little longer to register users.
|
|
this.timeout(30000);
|
|
const config = (this.config = configRead());
|
|
this.managementRoomAlias = config.managementRoom;
|
|
const storagePath = getStoragePath(config.dataPath);
|
|
this.toggle = await makeBotModeToggle(config, {
|
|
eraseAccountData: true,
|
|
stores: makeTopLevelStores(storagePath, DefaultEventDecoder, {
|
|
isRoomStateBackingStoreEnabled: Boolean(
|
|
config.roomStateBackingStore.enabled
|
|
),
|
|
}),
|
|
});
|
|
this.draupnir = draupnir();
|
|
const draupnirMatrixClient = draupnirClient();
|
|
if (draupnirMatrixClient === null) {
|
|
throw new TypeError(`setup code is broken`);
|
|
}
|
|
await draupnirClient()?.start();
|
|
await this.toggle.encryptionInitialized();
|
|
console.log("mochaHooks.beforeEach DONE");
|
|
},
|
|
],
|
|
afterEach: [
|
|
async function (this: DraupnirTestContext) {
|
|
this.timeout(10000);
|
|
await this.toggle?.stopEverything();
|
|
draupnirClient()?.stop();
|
|
|
|
// remove alias from management room and leave it.
|
|
if (this.draupnir !== undefined) {
|
|
await Promise.all([
|
|
this.draupnir.client.setAccountData(
|
|
MJOLNIR_PROTECTED_ROOMS_EVENT_TYPE,
|
|
{ rooms: [] }
|
|
),
|
|
this.draupnir.client.setAccountData(
|
|
MJOLNIR_WATCHED_POLICY_ROOMS_EVENT_TYPE,
|
|
{ references: [] }
|
|
),
|
|
]);
|
|
const client = draupnirClient();
|
|
if (client !== null && this.managementRoomAlias !== undefined) {
|
|
await teardownManagementRoom(
|
|
client,
|
|
this.draupnir.managementRoomID,
|
|
this.managementRoomAlias
|
|
);
|
|
}
|
|
}
|
|
console.error(
|
|
"---- completed test",
|
|
JSON.stringify(this.currentTest?.title),
|
|
"\n\n"
|
|
); // Makes MatrixClient error logs a bit easier to parse.
|
|
},
|
|
],
|
|
};
|