Add test for hellthreadPolicy
This commit is contained in:
parent
254b0f1f11
commit
9ca50cbe82
14
src/policies/hellthread-policy.test.ts
Normal file
14
src/policies/hellthread-policy.test.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { assert } from '../deps.ts';
|
||||
import { buildEvent, buildInputMessage } from '../test.ts';
|
||||
|
||||
import hellthreadPolicy from './hellthread-policy.ts';
|
||||
|
||||
Deno.test('blocks events with too many mentioned users', async () => {
|
||||
const tags = [['p'], ['p'], ['p']];
|
||||
|
||||
const msg0 = buildInputMessage();
|
||||
const msg1 = buildInputMessage({ event: buildEvent({ tags }) });
|
||||
|
||||
assert((await hellthreadPolicy(msg0, { limit: 1 })).action === 'accept');
|
||||
assert((await hellthreadPolicy(msg1, { limit: 1 })).action === 'reject');
|
||||
});
|
Loading…
Reference in New Issue
Block a user