pokemon-showdown/test/server/chat-plugins/chat-monitor.js

141 lines
3.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Tests for the chat monitor (word filters).
*
* @author Annika
*/
'use strict';
const assert = require('assert').strict;
const {makeUser} = require('../../users-utils');
const {Filters} = require('../../../dist/server/chat-plugins/chat-monitor');
describe('Chat monitor', () => {
describe('regex generator', () => {
it('should generate case-insensitive regexes', () => {
const regex = Filters.generateRegex('slur');
assert(regex.flags.includes('i'));
});
it('should use word boundaries for URL shortener regexes', () => {
const regex = Filters.generateRegex('bit.ly/', false, true);
assert(String(regex).startsWith('/\\b'));
});
it('should correctly strip word boundaries', () => {
const regex = /\btest\b/iu;
assert.deepEqual(Filters.stripWordBoundaries(regex), /test/iu);
});
describe('evasion regexes', function () {
before(() => {
this.evasionRegex = Filters.generateRegex('slur', true);
});
it('should account for stretching', () => {
assert(this.evasionRegex.test('slur'));
assert(this.evasionRegex.test('slurrrr'));
assert(this.evasionRegex.test('sssllluurrrr'));
});
it('should account for non-English characters', () => {
assert(this.evasionRegex.test('sⱠür'));
assert(this.evasionRegex.test('s𝓵𝓾r'));
});
it('should account for periods', () => {
assert(this.evasionRegex.test('s.l.u.r'));
});
});
});
describe('in-room tests', function () {
before(() => {
this.room = Rooms.get('lobby');
this.user = makeUser("Unit Tester");
this.connection = this.user.connections[0];
this.user.joinRoom(this.room.roomid, this.connection);
Chat.loadPlugins();
this.parse = async function (message) {
const context = new Chat.CommandContext({
message,
room: this.room,
user: this.user,
connection: this.connection,
});
return context.parse();
};
});
beforeEach(() => Punishments.unlock(this.user.id));
it('should lock users who use autolock phrases', async () => {
assert(!this.user.locked);
Filters.add({
word: 'autolock',
list: 'autolock',
});
await this.parse("haha autolock me pls");
assert(this.user.locked);
assert.notEqual(this.room.log.log.pop(), "haha autolock me pls");
});
it('should lock users who evade evasion phrases', async () => {
assert(!this.user.locked);
Filters.add({
word: 'slur',
list: 'evasion',
});
await this.parse("sl ur");
assert(this.user.locked);
assert.notEqual(this.room.log.log.pop(), "sl ur");
});
it('should replace words filtered to other words', async () => {
assert(!this.user.locked);
Filters.add({
word: 'replace me',
list: 'wordfilter',
replacement: 'i got replaced',
});
await this.parse("Hello! replace me pls! thanks, and remember to replace me.");
assert.equal(
this.room.log.log.pop().replace(/^\|c:\|[0-9]+\| Unit Tester\|/, ''),
"Hello! i got replaced pls! thanks, and remember to i got replaced."
);
});
it('should prevent filtered words from being said', async () => {
assert(!this.user.locked);
Filters.add({
word: 'mild slur',
list: 'warn',
});
await this.parse("mild slur");
assert.notEqual(this.room.log.log.pop(), "mild slur");
});
it('should prevent banwords and evasion banwords from being used in usernames', () => {
Filters.add({
word: 'nameslur',
list: 'warn',
});
Filters.add({
word: 'strongnameslur',
list: 'evasion',
});
assert.equal(Chat.namefilter('anameslurtest', this.user), '');
assert.equal(Chat.namefilter('strongnameslur', this.user), '');
assert.equal(Chat.namefilter('stroñgñameslur', this.user), '');
});
});
});