mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* initial market - routing - store - load market data * move drawer/drawerSlider / count/star badge to components/ui * filter market categories * shopItem with gem / gold * show count of purchable items * show count of purchable itemsshow drawer with currently owned items + DrawerHeaderTabs-Component * show featured gear * show Gear - filter by class - sort by (type, price, stats) - sort market items * Component: ItemRows - shows only the max items in one row (depending on the available width) * Sell Dialog + Balance Component * generic buy-dialog / attributes grid with highlight * buyItem - hide already owned gear * filter: hide locked/pinned - lock items if not enough gold * API: Sell multiple items * show avatar in buy-equipment-dialog with changed gear * market banner * misc fixes * filter by text * pin/unpin gear store actions * Sell API: amount as query-parameter * Update user.js * fixes * fix sell api amount test * add back stroke/fill currentColor * use scss variables
90 lines
2.4 KiB
JavaScript
90 lines
2.4 KiB
JavaScript
import sell from '../../../website/common/script/ops/sell';
|
|
import i18n from '../../../website/common/script/i18n';
|
|
import {
|
|
generateUser,
|
|
} from '../../helpers/common.helper';
|
|
import {
|
|
NotAuthorized,
|
|
BadRequest,
|
|
NotFound,
|
|
} from '../../../website/common/script/libs/errors';
|
|
import content from '../../../website/common/script/content/index';
|
|
|
|
describe('shared.ops.sell', () => {
|
|
let user;
|
|
let type = 'eggs';
|
|
let key = 'Wolf';
|
|
let acceptedTypes = ['eggs', 'hatchingPotions', 'food'];
|
|
|
|
beforeEach(() => {
|
|
user = generateUser();
|
|
user.items[type][key] = 1;
|
|
});
|
|
|
|
it('returns an error when type is not provided', (done) => {
|
|
try {
|
|
sell(user);
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(BadRequest);
|
|
expect(err.message).to.equal(i18n.t('typeRequired'));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('returns an error when key is not provided', (done) => {
|
|
try {
|
|
sell(user, {params: { type } });
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(BadRequest);
|
|
expect(err.message).to.equal(i18n.t('keyRequired'));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('returns an error when non-sellable type is provided', (done) => {
|
|
let nonSellableType = 'nonSellableType';
|
|
|
|
try {
|
|
sell(user, {params: { type: nonSellableType, key } });
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(NotAuthorized);
|
|
expect(err.message).to.equal(i18n.t('typeNotSellable', {acceptedTypes: acceptedTypes.join(', ')}));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('returns an error when key is not found with type provided', (done) => {
|
|
let fakeKey = 'fakeKey';
|
|
|
|
try {
|
|
sell(user, {params: { type, key: fakeKey } });
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(NotFound);
|
|
expect(err.message).to.equal(i18n.t('userItemsKeyNotFound', {type}));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('returns an error when the requested amount is above the available amount', (done) => {
|
|
try {
|
|
sell(user, {params: { type, key }, query: {amount: 2} });
|
|
} catch (err) {
|
|
expect(err).to.be.an.instanceof(NotFound);
|
|
expect(err.message).to.equal(i18n.t('userItemsNotEnough', {type}));
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('reduces item count from user', () => {
|
|
sell(user, {params: { type, key } });
|
|
|
|
expect(user.items[type][key]).to.equal(0);
|
|
});
|
|
|
|
it('increases user\'s gold', () => {
|
|
sell(user, {params: { type, key } });
|
|
|
|
expect(user.stats.gp).to.equal(content[type][key].value);
|
|
});
|
|
});
|