mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-05-14 11:25:11 +00:00
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
// Copyright 2022 Gnuxie <Gnuxie@protonmail.com>
|
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// SPDX-FileAttributionText: <text>
|
|
// This modified file incorporates work from mjolnir
|
|
// https://github.com/matrix-org/mjolnir
|
|
// </text>
|
|
|
|
import { strict as assert } from "assert";
|
|
|
|
import { newTestUser } from "../clientHelper";
|
|
import {
|
|
DraupnirTestContext,
|
|
draupnirClient,
|
|
draupnirSafeEmitter,
|
|
} from "../mjolnirSetupUtils";
|
|
import { MatrixClient, MatrixError } from "@vector-im/matrix-bot-sdk";
|
|
import { getFirstReaction } from "./commandUtils";
|
|
|
|
describe("Test: shutdown command", function (this: Mocha.Suite) {
|
|
let client: MatrixClient;
|
|
this.beforeEach(async function (this: DraupnirTestContext) {
|
|
client = await newTestUser(this.config.homeserverUrl, {
|
|
name: { contains: "shutdown-command" },
|
|
});
|
|
await client.start();
|
|
} as unknown as Mocha.AsyncFunc);
|
|
this.afterEach(async function (this: DraupnirTestContext) {
|
|
client.stop();
|
|
} as unknown as Mocha.AsyncFunc);
|
|
it("Draupnir asks synapse to shut down a channel", async function (
|
|
this: DraupnirTestContext
|
|
) {
|
|
this.timeout(20000);
|
|
const badRoom = await client.createRoom();
|
|
const draupnir = this.draupnir;
|
|
const draupnirMatrixClient = draupnirClient();
|
|
if (draupnir === undefined || draupnirMatrixClient === null) {
|
|
throw new TypeError(`setup code is wrong`);
|
|
}
|
|
await client.joinRoom(draupnir.managementRoomID);
|
|
|
|
await getFirstReaction(
|
|
draupnirSafeEmitter(),
|
|
draupnir.managementRoomID,
|
|
"✅",
|
|
async () =>
|
|
await client.sendMessage(draupnir.managementRoomID, {
|
|
msgtype: "m.text",
|
|
body: `!draupnir shutdown room ${badRoom} closure test`,
|
|
})
|
|
);
|
|
|
|
await assert.rejects(client.joinRoom(badRoom), (e: MatrixError) => {
|
|
assert.equal(e.statusCode, 403);
|
|
assert.equal(e.body.error, "This room has been blocked on this server");
|
|
return true;
|
|
});
|
|
} as unknown as Mocha.AsyncFunc);
|
|
});
|