mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-04 16:16:12 -05:00
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
/**
|
|
* Tests for the Repeats chat plugin
|
|
* @author Annika
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const assert = require('assert').strict;
|
|
const Repeats = require('../../../dist/server/chat-plugins/repeats').Repeats;
|
|
|
|
describe("Repeats plugin", function () {
|
|
before(() => {
|
|
this.room = Rooms.createChatRoom('repeatstest');
|
|
});
|
|
|
|
it('should add repeats correctly', () => {
|
|
assert(!Repeats.repeats.has(this.room));
|
|
|
|
Repeats.addRepeat(this.room, {id: 'happyface', phrase: "^_^", interval: 1});
|
|
|
|
assert(Repeats.repeats.has(this.room));
|
|
|
|
assert(Repeats.repeats.get(this.room).has('happyface'));
|
|
|
|
assert(Repeats.repeats.get(this.room).get('happyface').has("^_^"));
|
|
|
|
assert(this.room.settings.repeats);
|
|
assert(this.room.settings.repeats.some(repeat => repeat.phrase === "^_^"));
|
|
});
|
|
|
|
it('should remove repeats correctly', () => {
|
|
Repeats.addRepeat(this.room, {id: 'weirdface', phrase: "^_-", interval: 1});
|
|
assert(Repeats.repeats.get(this.room).get('weirdface').has("^_-"));
|
|
assert(this.room.settings.repeats.some(repeat => repeat.phrase === "^_-"));
|
|
|
|
Repeats.removeRepeat(this.room, 'weirdface');
|
|
assert.equal(Repeats.repeats.get(this.room).get('weirdface'), undefined);
|
|
assert(!this.room.settings.repeats.some(repeat => repeat.phrase === "^_-"));
|
|
});
|
|
|
|
it('should be able to tell if a repeat exists or not', () => {
|
|
assert(!Repeats.hasRepeat(this.room, 'annoyedface'));
|
|
|
|
Repeats.addRepeat(this.room, {id: 'annoyedface', phrase: "-_-", interval: 1});
|
|
assert(Repeats.hasRepeat(this.room, 'annoyedface'));
|
|
|
|
Repeats.removeRepeat(this.room, 'annoyedface');
|
|
assert(!Repeats.hasRepeat(this.room, 'annoyedface'));
|
|
});
|
|
});
|