mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 11:36:45 +00:00
82 lines
2.4 KiB
JavaScript
82 lines
2.4 KiB
JavaScript
import {
|
|
generateUser,
|
|
translate as t,
|
|
} from '../../../../../helpers/api-integration/v3';
|
|
import shared from '../../../../../../website/common/script';
|
|
import { apiError } from '../../../../../../website/server/libs/apiError';
|
|
|
|
const { content } = shared;
|
|
|
|
describe('POST /user/buy-quest/:key', () => {
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
// More tests in common code unit tests
|
|
|
|
it('returns an error if the quest is not found', async () => {
|
|
await expect(user.post('/user/buy-quest/notExisting'))
|
|
.to.eventually.be.rejected.and.eql({
|
|
code: 404,
|
|
error: 'NotFound',
|
|
message: apiError('questNotFound', { key: 'notExisting' }),
|
|
});
|
|
});
|
|
|
|
it('buys a quest', async () => {
|
|
const key = 'dilatoryDistress1';
|
|
const item = content.quests[key];
|
|
|
|
await user.updateOne({ 'stats.gp': 250 });
|
|
const res = await user.post(`/user/buy-quest/${key}`);
|
|
await user.sync();
|
|
|
|
expect(res.data).to.eql(user.items.quests);
|
|
expect(res.message).to.equal(t('messageBought', {
|
|
itemText: item.text(),
|
|
}));
|
|
});
|
|
|
|
it('returns an error if not all quest prerequisites are met', async () => {
|
|
const prerequisites = ['dilatoryDistress1', 'dilatoryDistress2'];
|
|
const key = 'dilatoryDistress3';
|
|
|
|
const achievementName1 = `achievements.quests.${prerequisites[0]}`;
|
|
|
|
await user.updateOne({
|
|
[achievementName1]: true,
|
|
'stats.gp': 9999,
|
|
});
|
|
|
|
await expect(user.post(`/user/buy-quest/${key}`))
|
|
.to.eventually.be.rejected.and.eql({
|
|
code: 401,
|
|
error: 'NotAuthorized',
|
|
message: t('mustComplete', { quest: prerequisites[1] }),
|
|
});
|
|
});
|
|
|
|
it('allows purchase of a quest if prerequisites are met', async () => {
|
|
const prerequisites = ['dilatoryDistress1', 'dilatoryDistress2'];
|
|
const key = 'dilatoryDistress3';
|
|
const item = content.quests[key];
|
|
|
|
const achievementName1 = `achievements.quests.${prerequisites[0]}`;
|
|
const achievementName2 = `achievements.quests.${prerequisites[1]}`;
|
|
|
|
await user.updateOne({
|
|
[achievementName1]: true,
|
|
[achievementName2]: true,
|
|
'stats.gp': 9999,
|
|
});
|
|
const res = await user.post(`/user/buy-quest/${key}`);
|
|
await user.sync();
|
|
|
|
expect(res.data).to.eql(user.items.quests);
|
|
expect(res.message).to.equal(t('messageBought', {
|
|
itemText: item.text(),
|
|
}));
|
|
});
|
|
});
|