mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-04-03 12:55:39 +00:00
* Rename to Draupnir in Appropriate Places * Integrate Code review feedback on CHANGELOG.md
64 lines
2.1 KiB
TypeScript
64 lines
2.1 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 { strict as assert } from "assert";
|
|
import { newTestUser } from "./clientHelper";
|
|
import { getMessagesByUserIn } from "../../src/utils";
|
|
|
|
describe("Test: throttled users can function with Draupnir.", function () {
|
|
it("throttled users survive being throttled by synapse", async function () {
|
|
const throttledUser = await newTestUser(this.config.homeserverUrl, {
|
|
name: { contains: "throttled" },
|
|
isThrottled: true,
|
|
});
|
|
const throttledUserId = await throttledUser.getUserId();
|
|
const targetRoom = await throttledUser.createRoom();
|
|
// send enough messages to hit the rate limit.
|
|
await Promise.all(
|
|
[...Array(25).keys()].map((i) =>
|
|
throttledUser.sendMessage(targetRoom, {
|
|
msgtype: "m.text.",
|
|
body: `Message #${i}`,
|
|
})
|
|
)
|
|
);
|
|
let messageCount = 0;
|
|
await getMessagesByUserIn(
|
|
throttledUser,
|
|
throttledUserId,
|
|
targetRoom,
|
|
25,
|
|
(events) => {
|
|
messageCount += events.length;
|
|
}
|
|
);
|
|
assert.equal(
|
|
messageCount,
|
|
25,
|
|
"There should have been 25 messages in this room"
|
|
);
|
|
});
|
|
});
|
|
|
|
/**
|
|
* We used to have a test here that tested whether Draupnir was going to carry out a redact order the default limits in a reasonable time scale.
|
|
* Now I think that's never going to happen without writing a new algorithm for respecting rate limiting.
|
|
* Which is not something there is time for.
|
|
*
|
|
* https://github.com/matrix-org/synapse/pull/13018
|
|
*
|
|
* Synapse rate limits were broken and very permitting so that's why the current hack worked so well.
|
|
* Now it is not broken, so our rate limit handling is.
|
|
*
|
|
* https://github.com/matrix-org/mjolnir/commit/b850e4554c6cbc9456e23ab1a92ede547d044241
|
|
*
|
|
* Honestly I don't think we can expect anyone to be able to use Draupnir under default rate limits.
|
|
*/
|