mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-29 20:24:53 +01:00
* Optimize database access during spell casting * load less data when casting spells * Begin migrating update calls to updateOne and updateMany * Only update user objects that don’t have notification yet * fix test * fix spy * Don’t unnecessarily update user when requesting invalid guild * fix sort order for middlewares to not load user twice every request * fix tests * fix integration test * fix skill usage not always deducting mp * addtest case for blessing spell * fix healAll * fix lint * Fix error for when some spells are used outside of party * Add check to not run bulk spells in web client * fix(tags): change const to let --------- Co-authored-by: SabreCat <sabe@habitica.com>
2492 lines
82 KiB
JavaScript
2492 lines
82 KiB
JavaScript
import moment from 'moment';
|
|
import { v4 as generateUUID } from 'uuid';
|
|
import validator from 'validator';
|
|
import { sleep, translationCheck } from '../../../helpers/api-unit.helper';
|
|
import {
|
|
SPAM_MESSAGE_LIMIT,
|
|
SPAM_MIN_EXEMPT_CONTRIB_LEVEL,
|
|
SPAM_WINDOW_LENGTH,
|
|
INVITES_LIMIT,
|
|
model as Group,
|
|
} from '../../../../website/server/models/group';
|
|
import { model as User } from '../../../../website/server/models/user';
|
|
import { quests as questScrolls } from '../../../../website/common/script/content/quests';
|
|
import {
|
|
groupChatReceivedWebhook,
|
|
questActivityWebhook,
|
|
} from '../../../../website/server/libs/webhook';
|
|
import * as email from '../../../../website/server/libs/email';
|
|
import { TAVERN_ID } from '../../../../website/common/script/constants';
|
|
import shared from '../../../../website/common';
|
|
|
|
describe('Group Model', () => {
|
|
let party; let questLeader; let participatingMember;
|
|
let sleepingParticipatingMember; let nonParticipatingMember; let
|
|
undecidedMember;
|
|
|
|
beforeEach(async () => {
|
|
sandbox.stub(email, 'sendTxn');
|
|
sandbox.stub(questActivityWebhook, 'send');
|
|
|
|
party = new Group({
|
|
name: 'test party',
|
|
type: 'party',
|
|
privacy: 'private',
|
|
});
|
|
|
|
const _progress = {
|
|
up: 10,
|
|
down: 8,
|
|
collectedItems: 5,
|
|
};
|
|
|
|
questLeader = new User({
|
|
party: {
|
|
_id: party._id,
|
|
quest: {
|
|
progress: _progress,
|
|
},
|
|
},
|
|
profile: { name: 'Quest Leader' },
|
|
items: {
|
|
quests: {
|
|
whale: 1,
|
|
},
|
|
},
|
|
});
|
|
|
|
party.leader = questLeader._id;
|
|
|
|
participatingMember = new User({
|
|
party: {
|
|
_id: party._id,
|
|
quest: {
|
|
progress: _progress,
|
|
},
|
|
},
|
|
profile: { name: 'Participating Member' },
|
|
});
|
|
sleepingParticipatingMember = new User({
|
|
party: {
|
|
_id: party._id,
|
|
quest: {
|
|
progress: _progress,
|
|
},
|
|
},
|
|
profile: { name: 'Sleeping Participating Member' },
|
|
preferences: { sleep: true },
|
|
});
|
|
nonParticipatingMember = new User({
|
|
party: {
|
|
_id: party._id,
|
|
quest: {
|
|
progress: _progress,
|
|
},
|
|
},
|
|
profile: { name: 'Non-Participating Member' },
|
|
});
|
|
undecidedMember = new User({
|
|
party: {
|
|
_id: party._id,
|
|
quest: {
|
|
progress: _progress,
|
|
},
|
|
},
|
|
profile: { name: 'Undecided Member' },
|
|
});
|
|
|
|
await Promise.all([
|
|
party.save(),
|
|
questLeader.save(),
|
|
participatingMember.save(),
|
|
sleepingParticipatingMember.save(),
|
|
nonParticipatingMember.save(),
|
|
undecidedMember.save(),
|
|
]);
|
|
});
|
|
|
|
describe('Static Methods', () => {
|
|
describe('processQuestProgress', () => {
|
|
let progress;
|
|
|
|
beforeEach(async () => {
|
|
progress = {
|
|
up: 5,
|
|
down: -5,
|
|
collectedItems: 5,
|
|
};
|
|
|
|
party.quest.members = {
|
|
[questLeader._id]: true,
|
|
[participatingMember._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
};
|
|
|
|
await party.save();
|
|
});
|
|
|
|
context('early returns', () => {
|
|
beforeEach(() => {
|
|
sandbox.stub(Group.prototype, '_processBossQuest').returns(Promise.resolve());
|
|
sandbox.stub(Group.prototype, '_processCollectionQuest').returns(Promise.resolve());
|
|
});
|
|
|
|
it('returns early if user is not in a party', async () => {
|
|
const userWithoutParty = new User();
|
|
|
|
await userWithoutParty.save();
|
|
|
|
await Group.processQuestProgress(userWithoutParty, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('returns early if party is not on quest', async () => {
|
|
party.quest.active = false;
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('returns early if user is not on quest', async () => {
|
|
await Group.processQuestProgress(nonParticipatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('returns early if user has made no progress', async () => {
|
|
await Group.processQuestProgress(participatingMember, null);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('returns early if quest does not exist', async () => {
|
|
party.quest.key = 'foobar';
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('calls _processBossQuest if quest is a boss quest', async () => {
|
|
party.quest.key = 'whale';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype._processBossQuest).to.be.calledOnce;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('calls _processCollectionQuest if quest is a collection quest', async () => {
|
|
party.quest.key = 'evilsanta2';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(Group.prototype._processCollectionQuest).to.be.calledOnce;
|
|
});
|
|
|
|
it('does not call _processBossQuest when user is resting in the inn', async () => {
|
|
party.quest.key = 'whale';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(sleepingParticipatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
|
|
it('does not call _processCollectionQuest when user is resting in the inn', async () => {
|
|
party.quest.key = 'evilsanta2';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(sleepingParticipatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party._processBossQuest).to.not.be.called;
|
|
expect(party._processCollectionQuest).to.not.be.called;
|
|
});
|
|
});
|
|
|
|
context('Boss Quests', () => {
|
|
let sendChatStub;
|
|
|
|
beforeEach(async () => {
|
|
party.quest.key = 'whale';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
sendChatStub = sandbox.spy(Group.prototype, 'sendChat');
|
|
});
|
|
|
|
afterEach(() => sendChatStub.restore());
|
|
|
|
it('applies user\'s progress to quest boss hp', async () => {
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party.quest.progress.hp).to.eql(495);
|
|
});
|
|
|
|
it('sends a chat message about progress', async () => {
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledOnce;
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: '`Participating Member attacks Wailing Whale for 5.0 damage. Wailing Whale attacks party for 7.5 damage.`',
|
|
info: {
|
|
bossDamage: '7.5',
|
|
quest: 'whale',
|
|
type: 'boss_damage',
|
|
user: 'Participating Member',
|
|
userDamage: '5.0',
|
|
},
|
|
});
|
|
});
|
|
|
|
it('applies damage only to participating members of party', async () => {
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
updatedNonParticipatingMember,
|
|
updatedUndecidedMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id),
|
|
User.findById(participatingMember._id),
|
|
User.findById(sleepingParticipatingMember._id),
|
|
User.findById(nonParticipatingMember._id),
|
|
User.findById(undecidedMember._id),
|
|
]);
|
|
|
|
expect(updatedLeader.stats.hp).to.eql(42.5);
|
|
expect(updatedParticipatingMember.stats.hp).to.eql(42.5);
|
|
expect(updatedSleepingParticipatingMember.stats.hp).to.eql(42.5);
|
|
expect(updatedNonParticipatingMember.stats.hp).to.eql(50);
|
|
expect(updatedUndecidedMember.stats.hp).to.eql(50);
|
|
});
|
|
|
|
it('applies damage only to participating members of party even under buggy conditions', async () => {
|
|
// stops unfair damage from mbugs like https://github.com/HabitRPG/habitica/issues/7653
|
|
party.quest.members = {
|
|
[questLeader._id]: true,
|
|
[participatingMember._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
};
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
updatedNonParticipatingMember,
|
|
updatedUndecidedMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id),
|
|
User.findById(participatingMember._id),
|
|
User.findById(sleepingParticipatingMember._id),
|
|
User.findById(nonParticipatingMember._id),
|
|
User.findById(undecidedMember._id),
|
|
]);
|
|
|
|
expect(updatedLeader.stats.hp).to.eql(42.5);
|
|
expect(updatedParticipatingMember.stats.hp).to.eql(42.5);
|
|
expect(updatedSleepingParticipatingMember.stats.hp).to.eql(42.5);
|
|
expect(updatedNonParticipatingMember.stats.hp).to.eql(50);
|
|
expect(updatedUndecidedMember.stats.hp).to.eql(50);
|
|
});
|
|
|
|
it('sends message about victory', async () => {
|
|
progress.up = 999;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledTwice;
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: '`You defeated Wailing Whale! Questing party members receive the rewards of victory.`',
|
|
info: { quest: 'whale', type: 'boss_defeated' },
|
|
});
|
|
});
|
|
|
|
it('calls finishQuest when boss has <= 0 hp', async () => {
|
|
const quest = questScrolls[party.quest.key];
|
|
const finishQuest = sandbox.spy(Group.prototype, 'finishQuest');
|
|
|
|
progress.up = 999;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
expect(finishQuest).to.be.calledOnce;
|
|
expect(finishQuest).to.be.calledWith(quest);
|
|
});
|
|
|
|
context('with healing Rage', () => {
|
|
beforeEach(async () => {
|
|
party.quest.active = false;
|
|
party.quest.key = 'trex_undead';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
});
|
|
|
|
it('applies down progress to boss rage', async () => {
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party.quest.progress.rage).to.eql(10);
|
|
});
|
|
|
|
it('activates rage when progress.down triggers rage bar', async () => {
|
|
const quest = questScrolls[party.quest.key];
|
|
|
|
progress.down = -999;
|
|
party.quest.progress.hp = 300;
|
|
|
|
await party.save();
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: quest.boss.rage.effect('en'),
|
|
info: { quest: 'trex_undead', type: 'boss_rage' },
|
|
});
|
|
expect(party.quest.progress.hp).to.eql(383.5);
|
|
expect(party.quest.progress.rage).to.eql(0);
|
|
});
|
|
|
|
it('rage sets boss hp to max hp if raging would have caused hp to be higher than the max', async () => {
|
|
progress.down = -999;
|
|
|
|
party.quest.progress.hp = 490;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party.quest.progress.hp).to.eql(500);
|
|
});
|
|
});
|
|
|
|
context('with Mana drain Rage', () => {
|
|
beforeEach(async () => {
|
|
party.quest.active = false;
|
|
party.quest.key = 'lostMasterclasser4';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
});
|
|
|
|
it('applies down progress to boss rage', async () => {
|
|
progress.down = -2;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party.quest.progress.rage).to.eql(8);
|
|
|
|
const drainedUser = await User.findById(participatingMember._id);
|
|
expect(drainedUser.stats.mp).to.eql(10);
|
|
});
|
|
|
|
it('activates rage when progress.down triggers rage bar', async () => {
|
|
const quest = questScrolls[party.quest.key];
|
|
|
|
progress.down = -999;
|
|
|
|
await party.save();
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: quest.boss.rage.effect('en'),
|
|
info: { quest: 'lostMasterclasser4', type: 'boss_rage' },
|
|
});
|
|
expect(party.quest.progress.rage).to.eql(0);
|
|
|
|
const drainedUser = await User.findById(participatingMember._id);
|
|
expect(drainedUser.stats.mp).to.eql(0);
|
|
});
|
|
});
|
|
});
|
|
|
|
context('Collection Quests', () => {
|
|
let sendChatStub;
|
|
|
|
beforeEach(async () => {
|
|
party.quest.key = 'atom1';
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
sendChatStub = sandbox.spy(Group.prototype, 'sendChat');
|
|
});
|
|
|
|
afterEach(() => sendChatStub.restore());
|
|
|
|
it('applies user\'s progress to found quest items', async () => {
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party.quest.progress.collect.soapBars).to.eq(5);
|
|
});
|
|
|
|
it('sends a chat message about progress', async () => {
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledOnce;
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: '`Participating Member found 5 Bars of Soap.`',
|
|
info: {
|
|
items: { soapBars: 5 },
|
|
quest: 'atom1',
|
|
type: 'user_found_items',
|
|
user: 'Participating Member',
|
|
},
|
|
});
|
|
});
|
|
|
|
it('sends a chat message if no progress is made', async () => {
|
|
progress.collectedItems = 0;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledOnce;
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: '`Participating Member found 0 Bars of Soap.`',
|
|
info: {
|
|
items: { soapBars: 0 },
|
|
quest: 'atom1',
|
|
type: 'user_found_items',
|
|
user: 'Participating Member',
|
|
},
|
|
});
|
|
});
|
|
|
|
describe('collection quests with multiple item types', () => {
|
|
it('sends a chat message if no progress is made', async () => {
|
|
progress.collectedItems = 0;
|
|
party.quest.key = 'dilatoryDistress1';
|
|
party.quest.active = false;
|
|
|
|
await party.startQuest(questLeader);
|
|
Group.prototype.sendChat.resetHistory();
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledOnce;
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: '`Participating Member found 0 Fire Coral, 0 Blue Fins.`',
|
|
info: {
|
|
items: { blueFins: 0, fireCoral: 0 },
|
|
quest: 'dilatoryDistress1',
|
|
type: 'user_found_items',
|
|
user: 'Participating Member',
|
|
},
|
|
});
|
|
});
|
|
|
|
it('handles correctly', async () => {
|
|
progress.collectedItems = 10;
|
|
party.quest.key = 'evilsanta2';
|
|
party.quest.active = false;
|
|
|
|
await party.startQuest(questLeader);
|
|
Group.prototype.sendChat.resetHistory();
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledOnce;
|
|
expect(Group.prototype.sendChat).to.be.calledWithMatch({
|
|
message: sinon.match(/`Participating Member found/).and(sinon.match(/\d* (Tracks|Broken Twigs)/)),
|
|
info: {
|
|
quest: 'evilsanta2',
|
|
type: 'user_found_items',
|
|
user: 'Participating Member',
|
|
},
|
|
});
|
|
});
|
|
|
|
it('cannot collect excess items', async () => {
|
|
// Make sure the quest progress isn't erased
|
|
sandbox.stub(Group.prototype, 'finishQuest').returns(Promise.resolve());
|
|
|
|
progress.collectedItems = 500;
|
|
party.quest.key = 'evilsanta2';
|
|
party.quest.active = false;
|
|
|
|
await party.startQuest(questLeader);
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(party.quest.progress.collect.tracks)
|
|
.to.eql(questScrolls.evilsanta2.collect.tracks.count);
|
|
expect(party.quest.progress.collect.branches)
|
|
.to.eql(questScrolls.evilsanta2.collect.branches.count);
|
|
});
|
|
});
|
|
|
|
it('does not drop items when an item type becomes full', async () => {
|
|
progress.collectedItems = 20;
|
|
party.quest.key = 'dilatoryDistress1';
|
|
party.quest.active = false;
|
|
|
|
await party.startQuest(questLeader);
|
|
party.quest.progress.collect.fireCoral = 19;
|
|
await party.save();
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
// There is a very small chance (~1 in 500K) that blueFins will
|
|
// be 19 or 20 due to randomness and not any bug. In these cases, this
|
|
// test doesn't actually verify anything, but it's rare enough that it
|
|
// shouldn't be a problem, and to make it deterministic would require
|
|
// stubbing out methods in implementation-specific ways.
|
|
expect(party.quest.progress.collect.fireCoral).to.be.within(19, 20);
|
|
expect(party.quest.progress.collect.blueFins).to.be.within(19, 20);
|
|
});
|
|
|
|
it('sends message about victory', async () => {
|
|
progress.collectedItems = 500;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
|
|
expect(Group.prototype.sendChat).to.be.calledTwice;
|
|
expect(Group.prototype.sendChat).to.be.calledWith({
|
|
message: '`All items found! Party has received their rewards.`',
|
|
info: { type: 'all_items_found' },
|
|
});
|
|
});
|
|
|
|
it('calls finishQuest when all items are found', async () => {
|
|
const quest = questScrolls[party.quest.key];
|
|
const finishQuest = sandbox.spy(Group.prototype, 'finishQuest');
|
|
|
|
progress.collectedItems = 999;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
expect(finishQuest).to.be.calledOnce;
|
|
expect(finishQuest).to.be.calledWith(quest);
|
|
});
|
|
|
|
it('gives out rewards when quest finishes', async () => {
|
|
progress.collectedItems = 999;
|
|
|
|
await Group.processQuestProgress(participatingMember, progress);
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id),
|
|
User.findById(participatingMember._id),
|
|
User.findById(sleepingParticipatingMember._id),
|
|
]);
|
|
|
|
expect(updatedLeader.achievements.quests[party.quest.key]).to.eql(1);
|
|
expect(updatedLeader.stats.exp).to.be.greaterThan(0);
|
|
expect(updatedLeader.stats.gp).to.be.greaterThan(0);
|
|
expect(updatedParticipatingMember.achievements.quests[party.quest.key]).to.eql(1);
|
|
expect(updatedParticipatingMember.stats.exp).to.be.greaterThan(0);
|
|
expect(updatedParticipatingMember.stats.gp).to.be.greaterThan(0);
|
|
expect(updatedSleepingParticipatingMember.achievements.quests[party.quest.key]).to.eql(1);
|
|
expect(updatedSleepingParticipatingMember.stats.exp).to.be.greaterThan(0);
|
|
expect(updatedSleepingParticipatingMember.stats.gp).to.be.greaterThan(0);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('validateInvitations', () => {
|
|
let res;
|
|
|
|
beforeEach(() => {
|
|
res = {
|
|
t: sandbox.spy(),
|
|
};
|
|
});
|
|
|
|
it('throws an error if no uuids or emails are passed in', async () => {
|
|
await expect(Group.validateInvitations({}, res)).to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('canOnlyInviteEmailUuid');
|
|
});
|
|
|
|
it('throws an error if only uuids are passed in, but they are not an array', async () => {
|
|
await expect(Group.validateInvitations({ uuids: 'user-id' }, res)).to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('uuidsMustBeAnArray');
|
|
});
|
|
|
|
it('throws an error if only emails are passed in, but they are not an array', async () => {
|
|
await expect(Group.validateInvitations({ emails: 'user@example.com' }, res)).to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('emailsMustBeAnArray');
|
|
});
|
|
|
|
it('throws an error if emails are not passed in, and uuid array is empty', async () => {
|
|
await expect(Group.validateInvitations({ uuids: [] }, res))
|
|
.to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('inviteMustNotBeEmpty');
|
|
});
|
|
|
|
it('throws an error if uuids are not passed in, and email array is empty', async () => {
|
|
await expect(Group.validateInvitations({ emails: [] }, res))
|
|
.to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('inviteMustNotBeEmpty');
|
|
});
|
|
|
|
it('throws an error if uuids and emails are passed in as empty arrays', async () => {
|
|
await expect(Group.validateInvitations({ emails: [], uuids: [] }, res))
|
|
.to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('inviteMustNotBeEmpty');
|
|
});
|
|
|
|
it('throws an error if total invites exceed max invite constant', async () => {
|
|
const uuids = [];
|
|
const emails = [];
|
|
|
|
for (let i = 0; i < INVITES_LIMIT / 2; i += 1) {
|
|
uuids.push(`user-id-${i}`);
|
|
emails.push(`user-${i}@example.com`);
|
|
}
|
|
|
|
uuids.push('one-more-uuid'); // to put it over the limit
|
|
|
|
await expect(Group.validateInvitations({ uuids, emails }, res))
|
|
.to.eventually.be.rejected.and.eql({
|
|
httpCode: 400,
|
|
message: 'Bad request.',
|
|
name: 'BadRequest',
|
|
});
|
|
expect(res.t).to.be.calledOnce;
|
|
expect(res.t).to.be.calledWith('canOnlyInviteMaxInvites', { maxInvites: INVITES_LIMIT });
|
|
});
|
|
|
|
it('does not throw error if number of invites matches max invite limit', async () => {
|
|
const uuids = [];
|
|
const emails = [];
|
|
|
|
for (let i = 0; i < INVITES_LIMIT / 2; i += 1) {
|
|
uuids.push(`user-id-${i}`);
|
|
emails.push(`user-${i}@example.com`);
|
|
}
|
|
|
|
await Group.validateInvitations({ uuids, emails }, res);
|
|
expect(res.t).to.not.be.called;
|
|
});
|
|
|
|
it('does not throw an error if only user ids are passed in', async () => {
|
|
await Group.validateInvitations({ uuids: ['user-id', 'user-id2'] }, res);
|
|
expect(res.t).to.not.be.called;
|
|
});
|
|
|
|
it('does not throw an error if only emails are passed in', async () => {
|
|
await Group.validateInvitations({ emails: ['user1@example.com', 'user2@example.com'] }, res);
|
|
expect(res.t).to.not.be.called;
|
|
});
|
|
|
|
it('does not throw an error if both uuids and emails are passed in', async () => {
|
|
await Group.validateInvitations({ uuids: ['user-id', 'user-id2'], emails: ['user1@example.com', 'user2@example.com'] }, res);
|
|
expect(res.t).to.not.be.called;
|
|
});
|
|
|
|
it('does not throw an error if uuids are passed in and emails are an empty array', async () => {
|
|
await Group.validateInvitations({ uuids: ['user-id', 'user-id2'], emails: [] }, res);
|
|
expect(res.t).to.not.be.called;
|
|
});
|
|
|
|
it('does not throw an error if emails are passed in and uuids are an empty array', async () => {
|
|
await Group.validateInvitations({ uuids: [], emails: ['user1@example.com', 'user2@example.com'] }, res);
|
|
expect(res.t).to.not.be.called;
|
|
});
|
|
});
|
|
|
|
describe('translateSystemMessages', () => {
|
|
it('translate quest_start', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'quest_start',
|
|
quest: 'basilist',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate boss_damage', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'boss_damage',
|
|
user: questLeader.profile.name,
|
|
quest: 'basilist',
|
|
userDamage: 15.3,
|
|
bossDamage: 3.7,
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate boss_dont_attack', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'boss_dont_attack',
|
|
user: questLeader.profile.name,
|
|
quest: 'basilist',
|
|
userDamage: 15.3,
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate boss_rage', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'boss_rage',
|
|
quest: 'lostMasterclasser3',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate boss_defeated', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'boss_defeated',
|
|
quest: 'lostMasterclasser3',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate user_found_items', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'user_found_items',
|
|
user: questLeader.profile.name,
|
|
quest: 'lostMasterclasser1',
|
|
items: {
|
|
ancientTome: 3,
|
|
forbiddenTome: 2,
|
|
hiddenTome: 1,
|
|
},
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate all_items_found', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'all_items_found',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate spell_cast_party', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'spell_cast_party',
|
|
user: questLeader.profile.name,
|
|
class: 'wizard',
|
|
spell: 'earth',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate spell_cast_user', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'spell_cast_user',
|
|
user: questLeader.profile.name,
|
|
class: 'special',
|
|
spell: 'snowball',
|
|
target: participatingMember.profile.name,
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate quest_cancel', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'quest_cancel',
|
|
user: questLeader.profile.name,
|
|
quest: 'basilist',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate quest_abort', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'quest_abort',
|
|
user: questLeader.profile.name,
|
|
quest: 'basilist',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate tavern_quest_completed', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'tavern_quest_completed',
|
|
quest: 'stressbeast',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate tavern_boss_rage_tired', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'tavern_boss_rage_tired',
|
|
quest: 'stressbeast',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate tavern_boss_rage', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'tavern_boss_rage',
|
|
quest: 'dysheartener',
|
|
scene: 'market',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate tavern_boss_desperation', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'tavern_boss_desperation',
|
|
quest: 'stressbeast',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
|
|
it('translate claim_task', async () => {
|
|
questLeader.preferences.language = 'en';
|
|
party.chat = [{
|
|
info: {
|
|
type: 'claim_task',
|
|
user: questLeader.profile.name,
|
|
task: 'Feed the pet',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
translationCheck(toJSON.chat[0].text);
|
|
});
|
|
});
|
|
|
|
describe('toJSONCleanChat', () => {
|
|
it('shows messages with 1 flag to non-admins', async () => {
|
|
party.chat = [{
|
|
flagCount: 1,
|
|
info: {
|
|
type: 'quest_start',
|
|
quest: 'basilist',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
expect(toJSON.chat.length).to.equal(1);
|
|
});
|
|
|
|
it('shows messages with >= 2 flag to moderators', async () => {
|
|
party.chat = [{
|
|
flagCount: 3,
|
|
info: {
|
|
type: 'quest_start',
|
|
quest: 'basilist',
|
|
},
|
|
}];
|
|
const admin = new User({ 'permissions.moderator': true });
|
|
const toJSON = await Group.toJSONCleanChat(party, admin);
|
|
expect(toJSON.chat.length).to.equal(1);
|
|
});
|
|
|
|
it('doesn\'t show flagged messages to non-moderators', async () => {
|
|
party.chat = [{
|
|
flagCount: 3,
|
|
info: {
|
|
type: 'quest_start',
|
|
quest: 'basilist',
|
|
},
|
|
}];
|
|
const toJSON = await Group.toJSONCleanChat(party, questLeader);
|
|
expect(toJSON.chat.length).to.equal(0);
|
|
});
|
|
});
|
|
});
|
|
|
|
context('Instance Methods', () => {
|
|
describe('#getParticipatingQuestMembers', () => {
|
|
it('returns an array of members whose quest status set to true', () => {
|
|
party.quest.members = {
|
|
[participatingMember._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[questLeader._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
};
|
|
|
|
expect(party.getParticipatingQuestMembers()).to.eql([
|
|
participatingMember._id,
|
|
sleepingParticipatingMember._id,
|
|
questLeader._id,
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('#checkChatSpam', () => {
|
|
let testUser; let testTime; let
|
|
tavern;
|
|
const testUserID = '1';
|
|
beforeEach(async () => {
|
|
testTime = Date.now();
|
|
|
|
tavern = new Group({
|
|
name: 'test tavern',
|
|
type: 'guild',
|
|
privacy: 'public',
|
|
});
|
|
tavern._id = TAVERN_ID;
|
|
|
|
testUser = {
|
|
_id: testUserID,
|
|
};
|
|
});
|
|
|
|
function generateTestMessage (overrides = {}) {
|
|
return {
|
|
text: 'test message',
|
|
uuid: testUserID,
|
|
timestamp: testTime,
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
it('group that is not the tavern returns false, while tavern returns true', async () => {
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT; i += 1) {
|
|
party.chat.push(generateTestMessage());
|
|
}
|
|
expect(party.checkChatSpam(testUser)).to.eql(false);
|
|
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT; i += 1) {
|
|
tavern.chat.push(generateTestMessage());
|
|
}
|
|
expect(tavern.checkChatSpam(testUser)).to.eql(true);
|
|
});
|
|
|
|
it('high enough contributor returns false', async () => {
|
|
const highContributor = testUser;
|
|
highContributor.contributor = {
|
|
level: SPAM_MIN_EXEMPT_CONTRIB_LEVEL,
|
|
};
|
|
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT; i += 1) {
|
|
tavern.chat.push(generateTestMessage());
|
|
}
|
|
|
|
expect(tavern.checkChatSpam(highContributor)).to.eql(false);
|
|
});
|
|
|
|
it('chat with no messages returns false', async () => {
|
|
expect(tavern.chat.length).to.eql(0);
|
|
expect(tavern.checkChatSpam(testUser)).to.eql(false);
|
|
});
|
|
|
|
it('user has not reached limit but another one has returns false', async () => {
|
|
const otherUserID = '2';
|
|
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT; i += 1) {
|
|
tavern.chat.push(generateTestMessage({ uuid: otherUserID }));
|
|
}
|
|
|
|
expect(tavern.checkChatSpam(testUser)).to.eql(false);
|
|
});
|
|
|
|
it('user messages is less than the limit returns false', async () => {
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT - 1; i += 1) {
|
|
tavern.chat.push(generateTestMessage());
|
|
}
|
|
|
|
expect(tavern.checkChatSpam(testUser)).to.eql(false);
|
|
});
|
|
|
|
it('user has reached the message limit outside of window returns false', async () => {
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT - 1; i += 1) {
|
|
tavern.chat.push(generateTestMessage());
|
|
}
|
|
const earlierTimestamp = testTime - SPAM_WINDOW_LENGTH - 1;
|
|
tavern.chat.push(generateTestMessage({ timestamp: earlierTimestamp }));
|
|
|
|
expect(tavern.checkChatSpam(testUser)).to.eql(false);
|
|
});
|
|
|
|
it('user has posted too many messages in limit returns true', async () => {
|
|
for (let i = 0; i < SPAM_MESSAGE_LIMIT; i += 1) {
|
|
tavern.chat.push(generateTestMessage());
|
|
}
|
|
|
|
expect(tavern.checkChatSpam(testUser)).to.eql(true);
|
|
});
|
|
});
|
|
|
|
describe('#leaveGroup', () => {
|
|
it('removes user from group quest', async () => {
|
|
party.quest.members = {
|
|
[participatingMember._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[questLeader._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
};
|
|
party.memberCount = 5;
|
|
await party.save();
|
|
|
|
await party.leave(participatingMember);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
expect(party.quest.members).to.eql({
|
|
[questLeader._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
});
|
|
});
|
|
|
|
it('unlink group tag', async () => {
|
|
participatingMember.tags.push({
|
|
name: party.name,
|
|
id: party._id,
|
|
group: party._id,
|
|
});
|
|
|
|
await participatingMember.save();
|
|
await party.leave(participatingMember);
|
|
|
|
participatingMember = await User.findOne({ _id: participatingMember._id });
|
|
const groupTag = participatingMember.tags.find(tag => tag.id === party._id);
|
|
|
|
expect(groupTag).to.not.be.undefined;
|
|
expect(groupTag.group).to.be.undefined;
|
|
});
|
|
|
|
it('deletes a private party when the last member leaves', async () => {
|
|
await party.leave(participatingMember);
|
|
await party.leave(sleepingParticipatingMember);
|
|
await party.leave(questLeader);
|
|
await party.leave(nonParticipatingMember);
|
|
await party.leave(undecidedMember);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
expect(party).to.not.exist;
|
|
});
|
|
|
|
it('does not delete a private group when the last member leaves and a subscription is active', async () => {
|
|
party.memberCount = 1;
|
|
party.purchased.plan.customerId = '110002222333';
|
|
|
|
await expect(party.leave(participatingMember))
|
|
.to.eventually.be.rejected.and.to.eql({
|
|
name: 'NotAuthorized',
|
|
httpCode: 401,
|
|
message: shared.i18n.t('cannotDeleteActiveGroup'),
|
|
});
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
expect(party).to.exist;
|
|
expect(party.memberCount).to.eql(1);
|
|
});
|
|
|
|
it('does not allow a leader to leave a group with an active subscription', async () => {
|
|
party.memberCount = 2;
|
|
party.purchased.plan.customerId = '110002222333';
|
|
|
|
await expect(party.leave(questLeader))
|
|
.to.eventually.be.rejected.and.to.eql({
|
|
name: 'NotAuthorized',
|
|
httpCode: 401,
|
|
message: shared.i18n.t('leaderCannotLeaveGroupWithActiveGroup'),
|
|
});
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
expect(party).to.exist;
|
|
expect(party.memberCount).to.eql(1);
|
|
});
|
|
|
|
it('deletes a private group when the last member leaves and a subscription is cancelled', async () => {
|
|
const guild = new Group({
|
|
name: 'test guild',
|
|
type: 'guild',
|
|
memberCount: 1,
|
|
});
|
|
|
|
const leader = new User({
|
|
guilds: [guild._id],
|
|
});
|
|
|
|
guild.leader = leader._id;
|
|
|
|
await Promise.all([
|
|
guild.save(),
|
|
leader.save(),
|
|
]);
|
|
|
|
guild.purchased.plan.customerId = '110002222333';
|
|
guild.purchased.plan.dateTerminated = new Date();
|
|
|
|
await guild.leave(leader);
|
|
|
|
party = await Group.findOne({ _id: guild._id });
|
|
expect(party).to.not.exist;
|
|
});
|
|
|
|
it('does not delete a public group when the last member leaves', async () => {
|
|
party.privacy = 'public';
|
|
|
|
await party.leave(participatingMember);
|
|
await party.leave(sleepingParticipatingMember);
|
|
await party.leave(questLeader);
|
|
await party.leave(nonParticipatingMember);
|
|
await party.leave(undecidedMember);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
expect(party).to.exist;
|
|
});
|
|
|
|
it('does not delete a private party when the member count reaches zero if there are still members', async () => {
|
|
party.memberCount = 1;
|
|
|
|
await party.leave(participatingMember);
|
|
|
|
party = await Group.findOne({ _id: party._id });
|
|
expect(party).to.exist;
|
|
});
|
|
|
|
it('deletes a private guild when the last member leaves', async () => {
|
|
let guild = new Group({
|
|
name: 'test guild',
|
|
type: 'guild',
|
|
memberCount: 1,
|
|
});
|
|
|
|
const leader = new User({
|
|
guilds: [guild._id],
|
|
});
|
|
|
|
guild.leader = leader._id;
|
|
|
|
await Promise.all([
|
|
guild.save(),
|
|
leader.save(),
|
|
]);
|
|
|
|
await guild.leave(leader);
|
|
|
|
guild = await Group.findOne({ _id: guild._id });
|
|
expect(guild).to.not.exist;
|
|
});
|
|
|
|
it('does not delete a private guild when the member count reaches zero if there are still members', async () => {
|
|
let guild = new Group({
|
|
name: 'test guild',
|
|
type: 'guild',
|
|
memberCount: 1,
|
|
});
|
|
|
|
const leader = new User({
|
|
guilds: [guild._id],
|
|
});
|
|
|
|
const member = new User({
|
|
guilds: [guild._id],
|
|
});
|
|
|
|
guild.leader = leader._id;
|
|
|
|
await Promise.all([
|
|
guild.save(),
|
|
leader.save(),
|
|
member.save(),
|
|
]);
|
|
|
|
await guild.leave(member);
|
|
|
|
guild = await Group.findOne({ _id: guild._id });
|
|
expect(guild).to.exist;
|
|
});
|
|
});
|
|
|
|
describe('#sendChat', () => {
|
|
beforeEach(() => {
|
|
sandbox.spy(User, 'update');
|
|
sandbox.spy(User, 'updateMany');
|
|
});
|
|
|
|
it('formats message', () => {
|
|
const chatMessage = party.sendChat({
|
|
message: 'a _new_ message with *markdown*',
|
|
user: {
|
|
_id: 'user-id',
|
|
profile: { name: 'user name' },
|
|
contributor: {
|
|
toObject () {
|
|
return 'contributor object';
|
|
},
|
|
},
|
|
backer: {
|
|
toObject () {
|
|
return 'backer object';
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const chat = chatMessage;
|
|
|
|
expect(chat.text).to.eql('a _new_ message with *markdown*');
|
|
expect(chat.unformattedText).to.eql('a new message with markdown');
|
|
expect(validator.isUUID(chat.id)).to.eql(true);
|
|
expect(chat.timestamp).to.be.a('date');
|
|
expect(chat.likes).to.eql({});
|
|
expect(chat.flags).to.eql({});
|
|
expect(chat.flagCount).to.eql(0);
|
|
expect(chat.uuid).to.eql('user-id');
|
|
expect(chat.contributor).to.eql('contributor object');
|
|
expect(chat.backer).to.eql('backer object');
|
|
expect(chat.user).to.eql('user name');
|
|
});
|
|
|
|
it('formats message as system if no user is passed in', () => {
|
|
const chat = party.sendChat({ message: 'a system message' });
|
|
|
|
expect(chat.text).to.eql('a system message');
|
|
expect(validator.isUUID(chat.id)).to.eql(true);
|
|
expect(chat.timestamp).to.be.a('date');
|
|
expect(chat.likes).to.eql({});
|
|
expect(chat.flags).to.eql({});
|
|
expect(chat.flagCount).to.eql(0);
|
|
expect(chat.uuid).to.eql('system');
|
|
expect(chat.contributor).to.not.exist;
|
|
expect(chat.backer).to.not.exist;
|
|
expect(chat.user).to.not.exist;
|
|
});
|
|
|
|
it('updates users about new messages in party', () => {
|
|
party.sendChat({ message: 'message' });
|
|
|
|
expect(User.updateMany).to.be.calledOnce;
|
|
expect(User.updateMany).to.be.calledWithMatch({
|
|
'party._id': party._id,
|
|
_id: { $ne: '' },
|
|
});
|
|
});
|
|
|
|
it('updates users about new messages in group', () => {
|
|
const group = new Group({
|
|
type: 'guild',
|
|
});
|
|
|
|
group.sendChat({ message: 'message' });
|
|
|
|
expect(User.updateMany).to.be.calledOnce;
|
|
expect(User.updateMany).to.be.calledWithMatch({
|
|
guilds: group._id,
|
|
_id: { $ne: '' },
|
|
});
|
|
});
|
|
|
|
it('does not send update to user that sent the message', () => {
|
|
party.sendChat({ message: 'message', user: { _id: 'user-id', profile: { name: 'user' } } });
|
|
|
|
expect(User.updateMany).to.be.calledOnce;
|
|
expect(User.updateMany).to.be.calledWithMatch({
|
|
'party._id': party._id,
|
|
_id: { $ne: 'user-id' },
|
|
});
|
|
});
|
|
|
|
it('skips sending new message notification for guilds with > 5000 members', () => {
|
|
party.memberCount = 5001;
|
|
|
|
party.sendChat({ message: 'message' });
|
|
|
|
expect(User.update).to.not.be.called;
|
|
});
|
|
|
|
it('skips sending messages to the tavern', () => {
|
|
party._id = TAVERN_ID;
|
|
|
|
party.sendChat({ message: 'message' });
|
|
|
|
expect(User.update).to.not.be.called;
|
|
});
|
|
});
|
|
|
|
describe('#startQuest', () => {
|
|
context('Failure Conditions', () => {
|
|
it('throws an error if group is not a party', async () => {
|
|
const guild = new Group({
|
|
type: 'guild',
|
|
});
|
|
|
|
await expect(guild.startQuest(participatingMember)).to.eventually.be.rejected;
|
|
});
|
|
|
|
it('throws an error if party is not on a quest', async () => {
|
|
await expect(party.startQuest(participatingMember)).to.eventually.be.rejected;
|
|
});
|
|
|
|
it('throws an error if quest is already active', async () => {
|
|
party.quest.key = 'whale';
|
|
party.quest.active = true;
|
|
|
|
await expect(party.startQuest(participatingMember)).to.eventually.be.rejected;
|
|
});
|
|
});
|
|
|
|
context('Successes', () => {
|
|
beforeEach(() => {
|
|
party.quest.key = 'whale';
|
|
party.quest.active = false;
|
|
party.quest.leader = questLeader._id;
|
|
party.quest.members = {
|
|
[questLeader._id]: true,
|
|
[participatingMember._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
};
|
|
});
|
|
|
|
it('activates quest', () => {
|
|
party.startQuest(participatingMember);
|
|
|
|
expect(party.quest.active).to.eql(true);
|
|
});
|
|
|
|
it('sets up boss quest', () => {
|
|
const bossQuest = questScrolls.whale;
|
|
party.quest.key = bossQuest.key;
|
|
|
|
party.startQuest(participatingMember);
|
|
|
|
expect(party.quest.progress.hp).to.eql(bossQuest.boss.hp);
|
|
});
|
|
|
|
it('sets up rage meter for rage boss quest', () => {
|
|
const rageBossQuest = questScrolls.trex_undead;
|
|
party.quest.key = rageBossQuest.key;
|
|
|
|
party.startQuest(participatingMember);
|
|
|
|
expect(party.quest.progress.rage).to.eql(0);
|
|
});
|
|
|
|
it('sets up collection quest', () => {
|
|
const collectionQuest = questScrolls.vice2;
|
|
party.quest.key = collectionQuest.key;
|
|
party.startQuest(participatingMember);
|
|
|
|
expect(party.quest.progress.collect).to.eql({
|
|
lightCrystal: 0,
|
|
});
|
|
});
|
|
|
|
it('sets up collection quest with multiple items', () => {
|
|
const collectionQuest = questScrolls.evilsanta2;
|
|
party.quest.key = collectionQuest.key;
|
|
party.startQuest(participatingMember);
|
|
|
|
expect(party.quest.progress.collect).to.eql({
|
|
tracks: 0,
|
|
branches: 0,
|
|
});
|
|
});
|
|
|
|
it('prunes non-participating members from quest members object', () => {
|
|
party.startQuest(participatingMember);
|
|
|
|
const expectedQuestMembers = {};
|
|
expectedQuestMembers[questLeader._id] = true;
|
|
expectedQuestMembers[participatingMember._id] = true;
|
|
expectedQuestMembers[sleepingParticipatingMember._id] = true;
|
|
|
|
expect(party.quest.members).to.eql(expectedQuestMembers);
|
|
});
|
|
|
|
it('applies updates to user object directly if user is participating (without resetting progress, except progress.down)', async () => {
|
|
await party.startQuest(participatingMember);
|
|
|
|
expect(participatingMember.party.quest.key).to.eql('whale');
|
|
expect(participatingMember.party.quest.progress.up).to.eql(10);
|
|
expect(participatingMember.party.quest.progress.down).to.eql(0);
|
|
expect(participatingMember.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(participatingMember.party.quest.completed).to.eql(null);
|
|
});
|
|
|
|
it('applies updates to other participating members (without resetting progress, except progress.down)', async () => {
|
|
await party.startQuest(nonParticipatingMember);
|
|
|
|
questLeader = await User.findById(questLeader._id);
|
|
participatingMember = await User.findById(participatingMember._id);
|
|
sleepingParticipatingMember = await User.findById(sleepingParticipatingMember._id);
|
|
|
|
expect(participatingMember.party.quest.key).to.eql('whale');
|
|
expect(participatingMember.party.quest.progress.up).to.eql(10);
|
|
expect(participatingMember.party.quest.progress.down).to.eql(0);
|
|
expect(participatingMember.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(participatingMember.party.quest.completed).to.eql(null);
|
|
|
|
expect(sleepingParticipatingMember.party.quest.key).to.eql('whale');
|
|
expect(sleepingParticipatingMember.party.quest.progress.up).to.eql(10);
|
|
expect(sleepingParticipatingMember.party.quest.progress.down).to.eql(0);
|
|
expect(sleepingParticipatingMember.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(sleepingParticipatingMember.party.quest.completed).to.eql(null);
|
|
|
|
expect(questLeader.party.quest.key).to.eql('whale');
|
|
expect(questLeader.party.quest.progress.up).to.eql(10);
|
|
expect(questLeader.party.quest.progress.down).to.eql(0);
|
|
expect(questLeader.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(questLeader.party.quest.completed).to.eql(null);
|
|
});
|
|
|
|
it('does not apply updates to nonparticipating members', async () => {
|
|
await party.startQuest(participatingMember);
|
|
|
|
nonParticipatingMember = await User.findById(nonParticipatingMember._id);
|
|
undecidedMember = await User.findById(undecidedMember._id);
|
|
|
|
expect(nonParticipatingMember.party.quest.key).to.not.eql('whale');
|
|
expect(nonParticipatingMember.party.quest.progress.up).to.eql(10);
|
|
expect(nonParticipatingMember.party.quest.progress.down).to.eql(8);
|
|
expect(nonParticipatingMember.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(undecidedMember.party.quest.key).to.not.eql('whale');
|
|
});
|
|
|
|
it('sends email to participating members that quest has started', async () => {
|
|
participatingMember.preferences.emailNotifications.questStarted = true;
|
|
sleepingParticipatingMember.preferences.emailNotifications.questStarted = true;
|
|
questLeader.preferences.emailNotifications.questStarted = true;
|
|
await Promise.all([
|
|
participatingMember.save(),
|
|
sleepingParticipatingMember.save(),
|
|
questLeader.save(),
|
|
]);
|
|
|
|
await party.startQuest(nonParticipatingMember);
|
|
|
|
await sleep(0.5);
|
|
|
|
expect(email.sendTxn).to.be.calledOnce;
|
|
|
|
const memberIds = _.map(email.sendTxn.args[0][0], '_id');
|
|
const typeOfEmail = email.sendTxn.args[0][1];
|
|
|
|
expect(memberIds).to.have.a.lengthOf(3);
|
|
expect(memberIds).to.include(participatingMember._id);
|
|
expect(memberIds).to.include(sleepingParticipatingMember._id);
|
|
expect(memberIds).to.include(questLeader._id);
|
|
expect(typeOfEmail).to.eql('quest-started');
|
|
});
|
|
|
|
it('sends webhook to participating members that quest has started', async () => {
|
|
// should receive webhook
|
|
participatingMember.webhooks = [{
|
|
type: 'questActivity',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
questStarted: true,
|
|
},
|
|
}];
|
|
sleepingParticipatingMember.webhooks = [{
|
|
type: 'questActivity',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
questStarted: true,
|
|
},
|
|
}];
|
|
questLeader.webhooks = [{
|
|
type: 'questActivity',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
questStarted: true,
|
|
},
|
|
}];
|
|
|
|
await Promise.all([
|
|
participatingMember.save(),
|
|
sleepingParticipatingMember.save(),
|
|
questLeader.save(),
|
|
]);
|
|
|
|
await party.startQuest(nonParticipatingMember);
|
|
|
|
await sleep(0.5);
|
|
|
|
expect(questActivityWebhook.send).to.be.calledThrice; // for 3 participating members
|
|
|
|
const args = questActivityWebhook.send.args[0];
|
|
const { webhooks } = args[0];
|
|
const webhookOwner = args[0]._id;
|
|
const options = args[1];
|
|
|
|
expect(webhooks).to.have.a.lengthOf(1);
|
|
if (webhookOwner === questLeader._id) {
|
|
expect(webhooks[0].id).to.eql(questLeader.webhooks[0].id);
|
|
} else if (webhookOwner === sleepingParticipatingMember._id) {
|
|
expect(webhooks[0].id).to.eql(sleepingParticipatingMember.webhooks[0].id);
|
|
} else {
|
|
expect(webhooks[0].id).to.eql(participatingMember.webhooks[0].id);
|
|
}
|
|
expect(webhooks[0].type).to.eql('questActivity');
|
|
expect(options.group).to.eql(party);
|
|
expect(options.quest.key).to.eql('whale');
|
|
});
|
|
|
|
it('sends email only to members who have not opted out', async () => {
|
|
participatingMember.preferences.emailNotifications.questStarted = false;
|
|
sleepingParticipatingMember.preferences.emailNotifications.questStarted = false;
|
|
questLeader.preferences.emailNotifications.questStarted = true;
|
|
await Promise.all([
|
|
participatingMember.save(),
|
|
sleepingParticipatingMember.save(),
|
|
questLeader.save(),
|
|
]);
|
|
|
|
await party.startQuest(nonParticipatingMember);
|
|
|
|
await sleep(0.5);
|
|
|
|
expect(email.sendTxn).to.be.calledOnce;
|
|
|
|
const memberIds = _.map(email.sendTxn.args[0][0], '_id');
|
|
|
|
expect(memberIds).to.have.a.lengthOf(1);
|
|
expect(memberIds).to.not.include(participatingMember._id);
|
|
expect(memberIds).to.not.include(sleepingParticipatingMember._id);
|
|
expect(memberIds).to.include(questLeader._id);
|
|
});
|
|
|
|
it('does not send email to initiating member', async () => {
|
|
participatingMember.preferences.emailNotifications.questStarted = true;
|
|
sleepingParticipatingMember.preferences.emailNotifications.questStarted = true;
|
|
questLeader.preferences.emailNotifications.questStarted = true;
|
|
await Promise.all([
|
|
participatingMember.save(),
|
|
sleepingParticipatingMember.save(),
|
|
questLeader.save(),
|
|
]);
|
|
|
|
await party.startQuest(participatingMember);
|
|
|
|
await sleep(0.5);
|
|
|
|
expect(email.sendTxn).to.be.calledOnce;
|
|
|
|
const memberIds = _.map(email.sendTxn.args[0][0], '_id');
|
|
|
|
expect(memberIds).to.have.a.lengthOf(2);
|
|
expect(memberIds).to.not.include(participatingMember._id);
|
|
expect(memberIds).to.include(sleepingParticipatingMember._id);
|
|
expect(memberIds).to.include(questLeader._id);
|
|
});
|
|
|
|
it('updates participting members (not including user)', async () => {
|
|
sandbox.spy(User, 'updateMany');
|
|
|
|
await party.startQuest(nonParticipatingMember);
|
|
|
|
const members = [
|
|
questLeader._id, participatingMember._id, sleepingParticipatingMember._id,
|
|
];
|
|
|
|
expect(User.updateMany).to.be.calledWith(
|
|
{ _id: { $in: members } },
|
|
{
|
|
$set: {
|
|
'party.quest.key': 'whale',
|
|
'party.quest.progress.down': 0,
|
|
'party.quest.completed': null,
|
|
},
|
|
},
|
|
);
|
|
});
|
|
|
|
it('updates non-user quest leader and decrements quest scroll', async () => {
|
|
sandbox.spy(User, 'updateOne');
|
|
|
|
await party.startQuest(participatingMember);
|
|
|
|
expect(User.updateOne).to.be.calledWith(
|
|
{ _id: questLeader._id },
|
|
{
|
|
$inc: {
|
|
'items.quests.whale': -1,
|
|
},
|
|
},
|
|
);
|
|
});
|
|
|
|
it('modifies the participating initiating user directly', async () => {
|
|
await party.startQuest(participatingMember);
|
|
|
|
const userQuest = participatingMember.party.quest;
|
|
|
|
expect(userQuest.key).to.eql('whale');
|
|
expect(userQuest.progress.up).to.eql(10);
|
|
expect(userQuest.progress.down).to.eql(0);
|
|
expect(userQuest.progress.collectedItems).to.eql(5);
|
|
expect(userQuest.completed).to.eql(null);
|
|
});
|
|
|
|
it('does not modify user if not participating', async () => {
|
|
await party.startQuest(nonParticipatingMember);
|
|
|
|
expect(nonParticipatingMember.party.quest.key).to.not.eql('whale');
|
|
});
|
|
|
|
it('removes the quest directly if initiating user is the quest leader', async () => {
|
|
await party.startQuest(questLeader);
|
|
|
|
expect(questLeader.items.quests.whale).to.eql(0);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('#finishQuest', () => {
|
|
let quest;
|
|
|
|
beforeEach(() => {
|
|
quest = questScrolls.armadillo;
|
|
party.quest.key = quest.key;
|
|
party.quest.active = false;
|
|
party.quest.leader = questLeader._id;
|
|
party.quest.members = {
|
|
[questLeader._id]: true,
|
|
[participatingMember._id]: true,
|
|
[sleepingParticipatingMember._id]: true,
|
|
[nonParticipatingMember._id]: false,
|
|
[undecidedMember._id]: null,
|
|
};
|
|
});
|
|
|
|
describe('user update retry failures', () => {
|
|
const successfulMock = {
|
|
exec: () => Promise.resolve({ raw: 'sucess' }),
|
|
};
|
|
const failedMock = {
|
|
exec: () => Promise.reject(new Error('error')),
|
|
};
|
|
|
|
it('doesn\'t retry successful operations', async () => {
|
|
sandbox.stub(User, 'updateOne').returns(successfulMock);
|
|
|
|
await party.finishQuest(quest);
|
|
|
|
expect(User.updateOne).to.be.calledThrice;
|
|
});
|
|
|
|
it('stops retrying when a successful update has occurred', async () => {
|
|
const updateStub = sandbox.stub(User, 'updateOne');
|
|
updateStub.onCall(0).returns(failedMock);
|
|
updateStub.returns(successfulMock);
|
|
|
|
await party.finishQuest(quest);
|
|
|
|
expect(User.updateOne.callCount).to.equal(4);
|
|
});
|
|
|
|
it('retries failed updates at most five times per user', async () => {
|
|
sandbox.stub(User, 'updateOne').returns(failedMock);
|
|
|
|
await expect(party.finishQuest(quest)).to.eventually.be.rejected;
|
|
|
|
expect(User.updateOne.callCount).to.eql(15); // for 3 users
|
|
});
|
|
});
|
|
|
|
it('gives out achievements', async () => {
|
|
await party.finishQuest(quest);
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id),
|
|
User.findById(participatingMember._id),
|
|
User.findById(sleepingParticipatingMember._id),
|
|
]);
|
|
|
|
expect(updatedLeader.achievements.quests[quest.key]).to.eql(1);
|
|
expect(updatedParticipatingMember.achievements.quests[quest.key]).to.eql(1);
|
|
expect(updatedSleepingParticipatingMember.achievements.quests[quest.key]).to.eql(1);
|
|
});
|
|
|
|
it('gives out super awesome Masterclasser achievement to the deserving', async () => {
|
|
quest = questScrolls.lostMasterclasser4;
|
|
party.quest.key = quest.key;
|
|
|
|
questLeader.achievements.quests = {
|
|
mayhemMistiflying1: 1,
|
|
mayhemMistiflying2: 1,
|
|
mayhemMistiflying3: 1,
|
|
stoikalmCalamity1: 1,
|
|
stoikalmCalamity2: 1,
|
|
stoikalmCalamity3: 1,
|
|
taskwoodsTerror1: 1,
|
|
taskwoodsTerror2: 1,
|
|
taskwoodsTerror3: 1,
|
|
dilatoryDistress1: 1,
|
|
dilatoryDistress2: 1,
|
|
dilatoryDistress3: 1,
|
|
lostMasterclasser1: 1,
|
|
lostMasterclasser2: 1,
|
|
lostMasterclasser3: 1,
|
|
};
|
|
await questLeader.save();
|
|
await party.finishQuest(quest);
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id).exec(),
|
|
User.findById(participatingMember._id).exec(),
|
|
User.findById(sleepingParticipatingMember._id).exec(),
|
|
]);
|
|
|
|
expect(updatedLeader.achievements.lostMasterclasser).to.eql(true);
|
|
expect(updatedParticipatingMember.achievements.lostMasterclasser).to.not.eql(true);
|
|
expect(updatedSleepingParticipatingMember.achievements.lostMasterclasser).to.not.eql(true);
|
|
});
|
|
|
|
it('gives out super awesome Masterclasser achievement when quests done out of order', async () => {
|
|
quest = questScrolls.lostMasterclasser1;
|
|
party.quest.key = quest.key;
|
|
|
|
questLeader.achievements.quests = {
|
|
mayhemMistiflying1: 1,
|
|
mayhemMistiflying2: 1,
|
|
mayhemMistiflying3: 1,
|
|
stoikalmCalamity1: 1,
|
|
stoikalmCalamity2: 1,
|
|
stoikalmCalamity3: 1,
|
|
taskwoodsTerror1: 1,
|
|
taskwoodsTerror2: 1,
|
|
taskwoodsTerror3: 1,
|
|
dilatoryDistress1: 1,
|
|
dilatoryDistress2: 1,
|
|
dilatoryDistress3: 1,
|
|
lostMasterclasser2: 1,
|
|
lostMasterclasser3: 1,
|
|
lostMasterclasser4: 1,
|
|
};
|
|
await questLeader.save();
|
|
await party.finishQuest(quest);
|
|
|
|
await sleep(0.5);
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id).exec(),
|
|
User.findById(participatingMember._id).exec(),
|
|
User.findById(sleepingParticipatingMember._id).exec(),
|
|
]);
|
|
|
|
expect(updatedLeader.achievements.lostMasterclasser).to.eql(true);
|
|
expect(updatedParticipatingMember.achievements.lostMasterclasser).to.not.eql(true);
|
|
expect(updatedSleepingParticipatingMember.achievements.lostMasterclasser).to.not.eql(true);
|
|
});
|
|
|
|
it('gives out other pet-related quest achievements', async () => {
|
|
quest = questScrolls.rock;
|
|
party.quest.key = quest.key;
|
|
|
|
questLeader.achievements.quests = {
|
|
mayhemMistiflying1: 1,
|
|
yarn: 1,
|
|
mayhemMistiflying2: 1,
|
|
egg: 1,
|
|
mayhemMistiflying3: 1,
|
|
slime: 2,
|
|
};
|
|
await questLeader.save();
|
|
await party.finishQuest(quest);
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id).exec(),
|
|
User.findById(participatingMember._id).exec(),
|
|
User.findById(sleepingParticipatingMember._id).exec(),
|
|
]);
|
|
|
|
expect(updatedLeader.achievements.mindOverMatter).to.eql(true);
|
|
expect(updatedParticipatingMember.achievements.mindOverMatter).to.not.eql(true);
|
|
expect(updatedSleepingParticipatingMember.achievements.mindOverMatter).to.not.eql(true);
|
|
});
|
|
|
|
it('gives xp and gold', async () => {
|
|
await party.finishQuest(quest);
|
|
|
|
const [
|
|
updatedLeader,
|
|
updatedParticipatingMember,
|
|
updatedSleepingParticipatingMember,
|
|
] = await Promise.all([
|
|
User.findById(questLeader._id),
|
|
User.findById(participatingMember._id),
|
|
User.findById(sleepingParticipatingMember._id),
|
|
]);
|
|
|
|
expect(updatedLeader.stats.exp).to.eql(quest.drop.exp);
|
|
expect(updatedLeader.stats.gp).to.eql(quest.drop.gp);
|
|
expect(updatedParticipatingMember.stats.exp).to.eql(quest.drop.exp);
|
|
expect(updatedParticipatingMember.stats.gp).to.eql(quest.drop.gp);
|
|
expect(updatedSleepingParticipatingMember.stats.exp).to.eql(quest.drop.exp);
|
|
expect(updatedSleepingParticipatingMember.stats.gp).to.eql(quest.drop.gp);
|
|
});
|
|
|
|
context('drops', () => {
|
|
it('awards gear', async () => {
|
|
const gearQuest = questScrolls.vice3;
|
|
|
|
await party.finishQuest(gearQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.gear.owned.weapon_special_2).to.eql(true);
|
|
});
|
|
|
|
it('awards eggs', async () => {
|
|
const eggQuest = questScrolls.vice3;
|
|
|
|
await party.finishQuest(eggQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.eggs.Dragon).to.eql(2);
|
|
});
|
|
|
|
it('awards food', async () => {
|
|
const foodQuest = questScrolls.moonstone3;
|
|
|
|
await party.finishQuest(foodQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.food.RottenMeat).to.eql(5);
|
|
});
|
|
|
|
it('awards hatching potions', async () => {
|
|
const hatchingPotionQuest = questScrolls.vice3;
|
|
|
|
await party.finishQuest(hatchingPotionQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.hatchingPotions.Shade).to.eql(2);
|
|
});
|
|
|
|
it('awards quest scrolls to owner', async () => {
|
|
const questAwardQuest = questScrolls.vice2;
|
|
|
|
await party.finishQuest(questAwardQuest);
|
|
|
|
const updatedLeader = await User.findById(questLeader._id);
|
|
|
|
expect(updatedLeader.items.quests.vice3).to.eql(1);
|
|
});
|
|
|
|
it('awards non quest leader rewards to quest leader', async () => {
|
|
const gearQuest = questScrolls.vice3;
|
|
|
|
await party.finishQuest(gearQuest);
|
|
|
|
const updatedLeader = await User.findById(questLeader._id);
|
|
|
|
expect(updatedLeader.items.gear.owned.weapon_special_2).to.eql(true);
|
|
});
|
|
|
|
it('doesn\'t award quest owner rewards to all participants', async () => {
|
|
const questAwardQuest = questScrolls.vice2;
|
|
|
|
await party.finishQuest(questAwardQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.quests.vice3).to.not.exist;
|
|
});
|
|
|
|
it('awards pets', async () => {
|
|
const petQuest = questScrolls.evilsanta2;
|
|
|
|
await party.finishQuest(petQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.pets['BearCub-Polar']).to.eql(5);
|
|
});
|
|
|
|
it('awards mounts', async () => {
|
|
const mountQuest = questScrolls.evilsanta;
|
|
|
|
await party.finishQuest(mountQuest);
|
|
|
|
const updatedParticipatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(updatedParticipatingMember.items.mounts['BearCub-Polar']).to.eql(true);
|
|
});
|
|
});
|
|
|
|
context('Party quests', () => {
|
|
it('updates participating members with rewards', async () => {
|
|
sandbox.spy(User, 'updateOne');
|
|
await party.finishQuest(quest);
|
|
|
|
expect(User.updateOne).to.be.calledThrice;
|
|
expect(User.updateOne).to.be.calledWithMatch({
|
|
_id: questLeader._id,
|
|
});
|
|
expect(User.updateOne).to.be.calledWithMatch({
|
|
_id: participatingMember._id,
|
|
});
|
|
expect(User.updateOne).to.be.calledWithMatch({
|
|
_id: sleepingParticipatingMember._id,
|
|
});
|
|
});
|
|
|
|
it('updates participating members quest object to a clean state (except for progress)', async () => {
|
|
await party.finishQuest(quest);
|
|
|
|
questLeader = await User.findById(questLeader._id);
|
|
participatingMember = await User.findById(participatingMember._id);
|
|
|
|
expect(questLeader.party.quest.completed).to.eql('armadillo');
|
|
expect(questLeader.party.quest.progress.up).to.eql(10);
|
|
expect(questLeader.party.quest.progress.down).to.eql(8);
|
|
expect(questLeader.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(questLeader.party.quest.RSVPNeeded).to.eql(false);
|
|
|
|
expect(participatingMember.party.quest.completed).to.eql('armadillo');
|
|
expect(participatingMember.party.quest.progress.up).to.eql(10);
|
|
expect(participatingMember.party.quest.progress.down).to.eql(8);
|
|
expect(participatingMember.party.quest.progress.collectedItems).to.eql(5);
|
|
expect(participatingMember.party.quest.RSVPNeeded).to.eql(false);
|
|
});
|
|
});
|
|
|
|
it('sends webhook to participating members that quest has finished', async () => {
|
|
// should receive webhook
|
|
participatingMember.webhooks = [{
|
|
type: 'questActivity',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
questFinished: true,
|
|
},
|
|
}];
|
|
questLeader.webhooks = [{
|
|
type: 'questActivity',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
questStarted: true, // will not receive the webhook
|
|
},
|
|
}];
|
|
|
|
await Promise.all([
|
|
participatingMember.save(),
|
|
sleepingParticipatingMember.save(),
|
|
questLeader.save(),
|
|
]);
|
|
|
|
await party.finishQuest(quest);
|
|
|
|
await sleep(0.5);
|
|
|
|
expect(questActivityWebhook.send).to.be.calledOnce;
|
|
|
|
const args = questActivityWebhook.send.args[0];
|
|
const { webhooks } = args[0];
|
|
const options = args[1];
|
|
|
|
expect(webhooks).to.have.a.lengthOf(1);
|
|
expect(webhooks[0].id).to.eql(participatingMember.webhooks[0].id);
|
|
expect(webhooks[0].type).to.eql('questActivity');
|
|
expect(options.group).to.eql(party);
|
|
expect(options.quest.key).to.eql(quest.key);
|
|
});
|
|
|
|
context('World quests in Tavern', () => {
|
|
let tavernQuest;
|
|
|
|
beforeEach(() => {
|
|
party._id = TAVERN_ID;
|
|
party.quest.key = 'stressbeast';
|
|
tavernQuest = questScrolls.stressbeast;
|
|
});
|
|
|
|
it('updates all users with rewards', async () => {
|
|
sandbox.spy(User, 'updateMany');
|
|
await party.finishQuest(tavernQuest);
|
|
|
|
expect(User.updateMany).to.be.calledOnce;
|
|
expect(User.updateMany).to.be.calledWithMatch({});
|
|
});
|
|
|
|
it('sets quest completed to the world quest key', async () => {
|
|
await party.finishQuest(tavernQuest);
|
|
|
|
const updatedLeader = await User.findById(questLeader._id);
|
|
|
|
expect(updatedLeader.party.quest.completed).to.eql(tavernQuest.key);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('sendGroupChatReceivedWebhooks', () => {
|
|
beforeEach(() => {
|
|
sandbox.stub(groupChatReceivedWebhook, 'send');
|
|
});
|
|
|
|
it('looks for users in specified guild with webhooks', () => {
|
|
sandbox.spy(User, 'find');
|
|
|
|
const guild = new Group({
|
|
type: 'guild',
|
|
});
|
|
|
|
guild.sendGroupChatReceivedWebhooks({});
|
|
|
|
expect(User.find).to.be.calledWith({
|
|
webhooks: {
|
|
$elemMatch: {
|
|
type: 'groupChatReceived',
|
|
'options.groupId': guild._id,
|
|
},
|
|
},
|
|
guilds: guild._id,
|
|
});
|
|
});
|
|
|
|
it('looks for users in specified party with webhooks', () => {
|
|
sandbox.spy(User, 'find');
|
|
|
|
party.sendGroupChatReceivedWebhooks({});
|
|
|
|
expect(User.find).to.be.calledWith({
|
|
webhooks: {
|
|
$elemMatch: {
|
|
type: 'groupChatReceived',
|
|
'options.groupId': party._id,
|
|
},
|
|
},
|
|
'party._id': party._id,
|
|
});
|
|
});
|
|
|
|
it('sends webhooks for users with webhooks', async () => {
|
|
const guild = new Group({
|
|
name: 'some guild',
|
|
type: 'guild',
|
|
});
|
|
|
|
const chat = { message: 'text' };
|
|
const memberWithWebhook = new User({
|
|
guilds: [guild._id],
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
groupId: guild._id,
|
|
},
|
|
}],
|
|
});
|
|
const memberWithoutWebhook = new User({
|
|
guilds: [guild._id],
|
|
});
|
|
const nonMemberWithWebhooks = new User({
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://a-different-url.com',
|
|
options: {
|
|
groupId: generateUUID(),
|
|
},
|
|
}],
|
|
});
|
|
|
|
await Promise.all([
|
|
memberWithWebhook.save(),
|
|
memberWithoutWebhook.save(),
|
|
nonMemberWithWebhooks.save(),
|
|
]);
|
|
|
|
guild.leader = memberWithWebhook._id;
|
|
|
|
await guild.save();
|
|
|
|
guild.sendGroupChatReceivedWebhooks(chat);
|
|
|
|
await sleep();
|
|
|
|
expect(groupChatReceivedWebhook.send).to.be.calledOnce;
|
|
|
|
const args = groupChatReceivedWebhook.send.args[0];
|
|
const { webhooks } = args[0];
|
|
const options = args[1];
|
|
|
|
expect(webhooks).to.have.a.lengthOf(1);
|
|
expect(webhooks[0].id).to.eql(memberWithWebhook.webhooks[0].id);
|
|
expect(options.group).to.eql(guild);
|
|
expect(options.chat).to.eql(chat);
|
|
});
|
|
|
|
it('sends webhooks for users with webhooks triggered by system messages', async () => {
|
|
const guild = new Group({
|
|
name: 'some guild',
|
|
type: 'guild',
|
|
});
|
|
|
|
const memberWithWebhook = new User({
|
|
guilds: [guild._id],
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
groupId: guild._id,
|
|
},
|
|
}],
|
|
});
|
|
const memberWithoutWebhook = new User({
|
|
guilds: [guild._id],
|
|
});
|
|
const nonMemberWithWebhooks = new User({
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://a-different-url.com',
|
|
options: {
|
|
groupId: generateUUID(),
|
|
},
|
|
}],
|
|
});
|
|
|
|
await Promise.all([
|
|
memberWithWebhook.save(),
|
|
memberWithoutWebhook.save(),
|
|
nonMemberWithWebhooks.save(),
|
|
]);
|
|
|
|
guild.leader = memberWithWebhook._id;
|
|
|
|
await guild.save();
|
|
|
|
const groupMessage = guild.sendChat({ message: 'Test message.' });
|
|
await groupMessage.save();
|
|
|
|
await sleep();
|
|
|
|
expect(groupChatReceivedWebhook.send).to.be.calledOnce;
|
|
|
|
const args = groupChatReceivedWebhook.send.args[0];
|
|
const { webhooks } = args[0];
|
|
const options = args[1];
|
|
|
|
expect(webhooks).to.have.a.lengthOf(1);
|
|
expect(webhooks[0].id).to.eql(memberWithWebhook.webhooks[0].id);
|
|
expect(options.group).to.eql(guild);
|
|
expect(options.chat).to.eql(groupMessage);
|
|
});
|
|
|
|
it('sends webhooks for each user with webhooks in group', async () => {
|
|
const guild = new Group({
|
|
name: 'some guild',
|
|
type: 'guild',
|
|
});
|
|
|
|
const chat = { message: 'text' };
|
|
const memberWithWebhook = new User({
|
|
guilds: [guild._id],
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://someurl.com',
|
|
options: {
|
|
groupId: guild._id,
|
|
},
|
|
}],
|
|
});
|
|
const memberWithWebhook2 = new User({
|
|
guilds: [guild._id],
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://another-member.com',
|
|
options: {
|
|
groupId: guild._id,
|
|
},
|
|
}],
|
|
});
|
|
const memberWithWebhook3 = new User({
|
|
guilds: [guild._id],
|
|
webhooks: [{
|
|
type: 'groupChatReceived',
|
|
url: 'http://a-third-member.com',
|
|
options: {
|
|
groupId: guild._id,
|
|
},
|
|
}],
|
|
});
|
|
|
|
await Promise.all([
|
|
memberWithWebhook.save(),
|
|
memberWithWebhook2.save(),
|
|
memberWithWebhook3.save(),
|
|
]);
|
|
|
|
guild.leader = memberWithWebhook._id;
|
|
|
|
await guild.save();
|
|
|
|
guild.sendGroupChatReceivedWebhooks(chat);
|
|
|
|
await sleep();
|
|
|
|
expect(groupChatReceivedWebhook.send).to.be.calledThrice;
|
|
|
|
const { args } = groupChatReceivedWebhook.send;
|
|
expect(args.find(
|
|
arg => arg[0].webhooks[0].id === memberWithWebhook.webhooks[0].id,
|
|
)).to.be.exist;
|
|
expect(args.find(
|
|
arg => arg[0].webhooks[0].id === memberWithWebhook2.webhooks[0].id,
|
|
)).to.be.exist;
|
|
expect(args.find(
|
|
arg => arg[0].webhooks[0].id === memberWithWebhook3.webhooks[0].id,
|
|
)).to.be.exist;
|
|
});
|
|
});
|
|
|
|
context('hasActiveGroupPlan', () => {
|
|
it('returns false if group does not have customer id', () => {
|
|
expect(party.hasActiveGroupPlan()).to.be.undefined;
|
|
});
|
|
|
|
it('returns true if group does not have plan.dateTerminated', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
|
|
expect(party.hasActiveGroupPlan()).to.be.true;
|
|
});
|
|
|
|
it('returns true if group if plan.dateTerminated is after today', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
party.purchased.plan.dateTerminated = moment().add(1, 'days').toDate();
|
|
|
|
expect(party.hasActiveGroupPlan()).to.be.true;
|
|
});
|
|
|
|
it('returns false if group if plan.dateTerminated is before today', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
party.purchased.plan.dateTerminated = moment().subtract(1, 'days').toDate();
|
|
|
|
expect(party.hasActiveGroupPlan()).to.be.false;
|
|
});
|
|
});
|
|
|
|
context('hasNotCancelled', () => {
|
|
it('returns false if group does not have customer id', () => {
|
|
expect(party.hasNotCancelled()).to.be.false;
|
|
});
|
|
|
|
it('returns true if group does not have plan.dateTerminated', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
|
|
expect(party.hasNotCancelled()).to.be.true;
|
|
});
|
|
|
|
it('returns false if group if plan.dateTerminated is after today', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
party.purchased.plan.dateTerminated = moment().add(1, 'days').toDate();
|
|
|
|
expect(party.hasNotCancelled()).to.be.false;
|
|
});
|
|
|
|
it('returns false if group if plan.dateTerminated is before today', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
party.purchased.plan.dateTerminated = moment().subtract(1, 'days').toDate();
|
|
|
|
expect(party.hasNotCancelled()).to.be.false;
|
|
});
|
|
});
|
|
|
|
context('hasCancelled', () => {
|
|
it('returns false if group does not have customer id', () => {
|
|
expect(party.hasCancelled()).to.be.false;
|
|
});
|
|
|
|
it('returns false if group does not have plan.dateTerminated', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
|
|
expect(party.hasCancelled()).to.be.false;
|
|
});
|
|
|
|
it('returns true if group if plan.dateTerminated is after today', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
party.purchased.plan.dateTerminated = moment().add(1, 'days').toDate();
|
|
|
|
expect(party.hasCancelled()).to.be.true;
|
|
});
|
|
|
|
it('returns false if group if plan.dateTerminated is before today', () => {
|
|
party.purchased.plan.customerId = 'test-id';
|
|
party.purchased.plan.dateTerminated = moment().subtract(1, 'days').toDate();
|
|
|
|
expect(party.hasCancelled()).to.be.false;
|
|
});
|
|
});
|
|
});
|
|
});
|