mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
* Only unequip Gen 1 pets/mounts when releasing pets/mounts * Changed mount declaration to match releasePets * Check if a pet/mount is a drop type instead of checking for its name in the list of pets * Changed references to pet and mount to petInfo and mountInfo for consistency with releasePets and releaseMounts * Test that releasePets, releaseMounts, and releaseBoth do not unequip quest pets * Fixed test names, and tests verify that a pet/mount is/is not a drop pet/mount on release * Removed unneeded comments
122 lines
3.4 KiB
JavaScript
122 lines
3.4 KiB
JavaScript
import releaseBoth from '../../../website/common/script/ops/releaseBoth';
|
|
import content from '../../../website/common/script/content/index';
|
|
import i18n from '../../../website/common/script/i18n';
|
|
import {
|
|
generateUser,
|
|
} from '../../helpers/common.helper';
|
|
import {
|
|
NotAuthorized,
|
|
} from '../../../website/common/script/libs/errors';
|
|
|
|
describe('shared.ops.releaseBoth', () => {
|
|
let user;
|
|
let animal = 'Wolf-Base';
|
|
|
|
beforeEach(() => {
|
|
user = generateUser();
|
|
user.items.currentMount = animal;
|
|
user.items.currentPet = animal;
|
|
user.items.pets[animal] = 5;
|
|
user.items.mounts[animal] = true;
|
|
user.balance = 1.5;
|
|
});
|
|
|
|
it('returns an error when user balance is too low and user does not have triadBingo', (done) => {
|
|
user.balance = 0;
|
|
|
|
try {
|
|
releaseBoth(user);
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(NotAuthorized);
|
|
expect(err.message).to.equal(i18n.t('notEnoughGems'));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('grants triad bingo with gems', () => {
|
|
let [, message] = releaseBoth(user);
|
|
|
|
expect(message).to.equal(i18n.t('mountsAndPetsReleased'));
|
|
expect(user.achievements.triadBingoCount).to.equal(1);
|
|
});
|
|
|
|
it('grants triad bingo without gems', () => {
|
|
user.balance = 0;
|
|
user.achievements.triadBingo = 1;
|
|
user.achievements.triadBingoCount = 1;
|
|
|
|
let [, message] = releaseBoth(user);
|
|
|
|
expect(message).to.equal(i18n.t('mountsAndPetsReleased'));
|
|
expect(user.achievements.triadBingoCount).to.equal(2);
|
|
});
|
|
|
|
it('releases pets', () => {
|
|
let [, message] = releaseBoth(user);
|
|
|
|
expect(message).to.equal(i18n.t('mountsAndPetsReleased'));
|
|
expect(user.items.pets[animal]).to.be.empty;
|
|
expect(user.items.mounts[animal]).to.equal(null);
|
|
});
|
|
|
|
it('releases mounts', () => {
|
|
let [, message] = releaseBoth(user);
|
|
|
|
expect(message).to.equal(i18n.t('mountsAndPetsReleased'));
|
|
expect(user.items.mounts[animal]).to.equal(null);
|
|
});
|
|
|
|
it('removes drop currentPet', () => {
|
|
let petInfo = content.petInfo[user.items.currentPet];
|
|
expect(petInfo.type).to.equal('drop');
|
|
releaseBoth(user);
|
|
|
|
expect(user.items.currentMount).to.be.empty;
|
|
expect(user.items.currentPet).to.be.empty;
|
|
});
|
|
|
|
it('removes drop currentMount', () => {
|
|
let mountInfo = content.mountInfo[user.items.currentMount];
|
|
expect(mountInfo.type).to.equal('drop');
|
|
releaseBoth(user);
|
|
|
|
expect(user.items.currentMount).to.be.empty;
|
|
});
|
|
|
|
it('leaves non-drop pets and mounts equipped', () => {
|
|
let questAnimal = 'Gryphon-Base';
|
|
user.items.currentMount = questAnimal;
|
|
user.items.currentPet = questAnimal;
|
|
user.items.pets[questAnimal] = 5;
|
|
user.items.mounts[questAnimal] = true;
|
|
|
|
let petInfo = content.petInfo[user.items.currentPet];
|
|
expect(petInfo.type).to.not.equal('drop');
|
|
let mountInfo = content.mountInfo[user.items.currentMount];
|
|
expect(mountInfo.type).to.not.equal('drop');
|
|
|
|
releaseBoth(user);
|
|
|
|
expect(user.items.currentMount).to.equal(questAnimal);
|
|
expect(user.items.currentPet).to.equal(questAnimal);
|
|
});
|
|
|
|
it('decreases user\'s balance', () => {
|
|
releaseBoth(user);
|
|
|
|
expect(user.balance).to.equal(0);
|
|
});
|
|
|
|
it('incremenets beastMasterCount', () => {
|
|
releaseBoth(user);
|
|
|
|
expect(user.achievements.beastMasterCount).to.equal(1);
|
|
});
|
|
|
|
it('incremenets mountMasterCount', () => {
|
|
releaseBoth(user);
|
|
|
|
expect(user.achievements.mountMasterCount).to.equal(1);
|
|
});
|
|
});
|