mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-28 03:32:29 +01:00
* common: import lodash modules separately * remove test/content from .eslintignore, fix with eslint --fix content/index * lint test/content * lint content/index except for lodash methods * upgrade server/models * upgrade server/middlewares and server/libs * port server/controllers/top-level * port server/controllers/api-v3 * port views and tests * client old port lodash and _(, missing _. * upgrade client-old * port common/script (root level files only) * port common/script/fns * port common/libs * port common/script/ops * port common/script/content and common/script/libs/shops.js * misc fixes * misc fixes * misc fixes * more tests fixes * fix payments test stubbing, down to 2 failing tests * remove more instances of lodash wrapping * fix bug where toObject does not clone object * fix tests * upgrade migration or add lodash 4 note * update shrinkwrap * fix linting * upgrade eslint-config-habitrpg * update shrinkwrap * recompile shrinkwrap
539 lines
17 KiB
JavaScript
539 lines
17 KiB
JavaScript
'use strict';
|
|
|
|
describe('Inventory Controller', function() {
|
|
var scope, ctrl, user, rootScope, shared, achievement;
|
|
|
|
beforeEach(function() {
|
|
module(function($provide) {
|
|
var mockWindow = {
|
|
confirm: function(msg) {
|
|
return true;
|
|
},
|
|
location: {search: '', pathname: '', href: ''},
|
|
};
|
|
|
|
$provide.value('$window', mockWindow);
|
|
});
|
|
|
|
inject(function($rootScope, $controller, Shared, User, $location, $window, Achievement) {
|
|
user = specHelper.newUser({
|
|
balance: 4,
|
|
items: {
|
|
gear: { owned: {} },
|
|
eggs: { Cactus: 1 },
|
|
hatchingPotions: { Base: 1 },
|
|
food: { Meat: 1 },
|
|
pets: {},
|
|
mounts: {}
|
|
},
|
|
preferences: {
|
|
suppressModals: {}
|
|
},
|
|
purchased: {
|
|
plan: {
|
|
mysteryItems: [],
|
|
},
|
|
},
|
|
});
|
|
|
|
Shared.wrap(user);
|
|
shared = Shared;
|
|
achievement = Achievement;
|
|
|
|
scope = $rootScope.$new();
|
|
rootScope = $rootScope;
|
|
|
|
User.user = user;
|
|
User.setUser(user);
|
|
|
|
// Load RootCtrl to ensure shared behaviors are loaded
|
|
$controller('RootCtrl', {$scope: scope, User: User});
|
|
|
|
ctrl = $controller('InventoryCtrl', {$scope: scope, User: User});
|
|
});
|
|
});
|
|
|
|
it('starts without any item selected', function(){
|
|
expect(scope.selectedEgg).to.eql(null);
|
|
expect(scope.selectedPotion).to.eql(null);
|
|
expect(scope.selectedFood).to.eql(undefined);
|
|
});
|
|
|
|
it('chooses an egg', function(){
|
|
scope.chooseEgg('Cactus');
|
|
expect(scope.selectedEgg.key).to.eql('Cactus');
|
|
});
|
|
|
|
it('chooses a potion', function(){
|
|
scope.choosePotion('Base');
|
|
expect(scope.selectedPotion.key).to.eql('Base');
|
|
});
|
|
|
|
describe('Hatching Pets', function(){
|
|
beforeEach(function() {
|
|
sandbox.stub(rootScope, 'openModal');
|
|
});
|
|
|
|
it('hatches a pet', function(){
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
expect(user.items.eggs).to.eql({Cactus: 0});
|
|
expect(user.items.hatchingPotions).to.eql({Base: 0});
|
|
expect(user.items.pets).to.eql({'Cactus-Base': 5});
|
|
expect(scope.selectedEgg).to.eql(null);
|
|
expect(scope.selectedPotion).to.eql(null);
|
|
});
|
|
|
|
it('shows a modal for pet hatching', function(){
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
|
|
expect(rootScope.openModal).to.have.been.calledOnce;
|
|
expect(rootScope.openModal).to.have.been.calledWith('hatchPet');
|
|
});
|
|
|
|
it('shows modal even if user has raised that pet to a mount', function(){
|
|
user.items.pets['Cactus-Base'] = -1;
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
|
|
expect(rootScope.openModal).to.have.been.calledOnce;
|
|
expect(rootScope.openModal).to.have.been.calledWith('hatchPet');
|
|
});
|
|
|
|
//@TODO: Fix Common hatch
|
|
xit('does not show modal if user tries to hatch a pet they own', function(){
|
|
user.items.pets['Cactus-Base'] = 5;
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
expect(rootScope.openModal).to.not.have.been.called;
|
|
});
|
|
|
|
//@TODO: Fix Common hatch
|
|
xit('does not show modal if user tries to hatch a premium quest pet', function(){
|
|
user.items.eggs = {Snake: 1};
|
|
user.items.hatchingPotions = {Peppermint: 1};
|
|
scope.chooseEgg('Snake');
|
|
scope.choosePotion('Peppermint');
|
|
expect(rootScope.openModal).to.not.have.been.called;
|
|
});
|
|
|
|
it('does not show pet hatching modal if user has opted out', function(){
|
|
user.preferences.suppressModals.hatchPet = true;
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
|
|
expect(rootScope.openModal).to.not.be.called;
|
|
});
|
|
|
|
it('shows beastMaster achievement modal if user has all 90 pets', function(){
|
|
sandbox.stub(achievement, 'displayAchievement');
|
|
sandbox.stub(shared.count, "beastMasterProgress").returns(90);
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
|
|
expect(achievement.displayAchievement).to.be.called;
|
|
expect(achievement.displayAchievement).to.be.calledWith('beastMaster');
|
|
});
|
|
|
|
it('shows triadBingo achievement modal if user has all pets twice and all mounts', function(){
|
|
sandbox.stub(achievement, 'displayAchievement');
|
|
sandbox.stub(shared.count, "mountMasterProgress").returns(90);
|
|
sandbox.stub(shared.count, "dropPetsCurrentlyOwned").returns(90);
|
|
scope.chooseEgg('Cactus');
|
|
scope.choosePotion('Base');
|
|
|
|
expect(achievement.displayAchievement).to.be.called;
|
|
expect(achievement.displayAchievement).to.be.calledWith('triadBingo');
|
|
});
|
|
});
|
|
|
|
describe('Feeding and Raising Pets', function() {
|
|
beforeEach(function() {
|
|
sandbox.stub(rootScope, 'openModal');
|
|
user.items.pets = {'PandaCub-Base':5};
|
|
user.items.mounts = {'PandaCub-Base':false};
|
|
});
|
|
|
|
it('feeds a pet', function() {
|
|
scope.chooseFood('Meat');
|
|
scope.choosePet('PandaCub','Base');
|
|
|
|
expect(user.items.pets['PandaCub-Base']).to.eql(10);
|
|
});
|
|
|
|
it('gives weaker benefit when feeding inappropriate food', function() {
|
|
user.items.food.Honey = 1;
|
|
|
|
scope.chooseFood('Honey');
|
|
scope.choosePet('PandaCub','Base');
|
|
|
|
expect(user.items.pets['PandaCub-Base']).to.eql(7);
|
|
});
|
|
|
|
it('raises pet to a mount when feeding gauge maxes out', function() {
|
|
user.items.pets['PandaCub-Base'] = 45;
|
|
|
|
scope.chooseFood('Meat');
|
|
scope.choosePet('PandaCub','Base');
|
|
|
|
expect(user.items.pets['PandaCub-Base']).to.eql(-1);
|
|
expect(user.items.mounts['PandaCub-Base']).to.exist;
|
|
});
|
|
|
|
it('raises pet to a mount instantly when using a Saddle', function() {
|
|
user.items.food.Saddle = 1;
|
|
|
|
scope.chooseFood('Saddle');
|
|
scope.choosePet('PandaCub','Base');
|
|
|
|
expect(user.items.pets['PandaCub-Base']).to.eql(-1);
|
|
expect(user.items.mounts['PandaCub-Base']).to.exist;
|
|
});
|
|
|
|
it('displays mount raising modal for drop pets', function() {
|
|
user.items.food.Saddle = 1;
|
|
|
|
scope.chooseFood('Saddle');
|
|
scope.choosePet('PandaCub','Base');
|
|
|
|
expect(rootScope.openModal).to.have.been.calledOnce;
|
|
expect(rootScope.openModal).to.have.been.calledWith('raisePet');
|
|
});
|
|
|
|
it('displays mount raising modal for quest pets', function() {
|
|
user.items.food.Saddle = 1;
|
|
user.items.pets['Snake-Base'] = 1;
|
|
|
|
scope.chooseFood('Saddle');
|
|
scope.choosePet('Snake','Base');
|
|
|
|
expect(rootScope.openModal).to.have.been.calledOnce;
|
|
expect(rootScope.openModal).to.have.been.calledWith('raisePet');
|
|
});
|
|
|
|
it('displays mount raising modal for premium pets', function() {
|
|
user.items.food.Saddle = 1;
|
|
user.items.pets['TigerCub-Spooky'] = 1;
|
|
|
|
scope.chooseFood('Saddle');
|
|
scope.choosePet('TigerCub','Spooky');
|
|
|
|
expect(rootScope.openModal).to.have.been.calledOnce;
|
|
expect(rootScope.openModal).to.have.been.calledWith('raisePet');
|
|
});
|
|
|
|
it('shows mountMaster achievement modal if user has all 90 mounts', function(){
|
|
sandbox.stub(achievement, 'displayAchievement');
|
|
sandbox.stub(shared.count, "mountMasterProgress").returns(90);
|
|
scope.chooseFood('Meat');
|
|
scope.choosePet('PandaCub','Base');
|
|
|
|
expect(achievement.displayAchievement).to.be.calledOnce;
|
|
expect(achievement.displayAchievement).to.be.calledWith('mountMaster');
|
|
});
|
|
});
|
|
|
|
it('sells an egg', function(){
|
|
scope.chooseEgg('Cactus');
|
|
scope.sellInventory();
|
|
expect(user.items.eggs).to.eql({Cactus: 0});
|
|
expect(user.stats.gp).to.eql(3);
|
|
});
|
|
|
|
it('sells a potion', function(){
|
|
scope.choosePotion('Base');
|
|
scope.sellInventory();
|
|
expect(user.items.hatchingPotions).to.eql({Base: 0});
|
|
expect(user.stats.gp).to.eql(2);
|
|
});
|
|
|
|
it('sells food', function(){
|
|
scope.chooseFood('Meat');
|
|
scope.sellInventory();
|
|
expect(user.items.food).to.eql({Meat: 0});
|
|
expect(user.stats.gp).to.eql(1);
|
|
});
|
|
|
|
it('chooses a pet', function(){
|
|
user.items.pets['Cactus-Base'] = 5;
|
|
scope.choosePet('Cactus', 'Base');
|
|
expect(user.items.currentPet).to.eql('Cactus-Base');
|
|
});
|
|
|
|
it('purchases an egg', inject(function(Content){
|
|
scope.purchase('eggs', Content.eggs['Wolf']);
|
|
expect(user.balance).to.eql(3.25);
|
|
expect(user.items.eggs).to.eql({Cactus: 1, Wolf: 1})
|
|
}));
|
|
|
|
describe('Deselecting Items', function() {
|
|
it('deselects a food', function(){
|
|
scope.chooseFood('Meat');
|
|
scope.deselectItem();
|
|
expect(scope.selectedFood).to.eql(null);
|
|
});
|
|
|
|
it('deselects a potion', function(){
|
|
scope.choosePotion('Base');
|
|
scope.deselectItem();
|
|
expect(scope.selectedPotion).to.eql(null);
|
|
});
|
|
|
|
it('deselects a egg', function(){
|
|
scope.chooseEgg('Cactus');
|
|
scope.deselectItem();
|
|
expect(scope.selectedEgg).to.eql(null);
|
|
});
|
|
});
|
|
|
|
describe('openCardsModal', function(type, numberOfVariations) {
|
|
var cardsModalScope;
|
|
|
|
beforeEach(function() {
|
|
cardsModalScope = {};
|
|
sandbox.stub(rootScope, 'openModal');
|
|
sandbox.stub(rootScope, '$new').returns(cardsModalScope);
|
|
});
|
|
|
|
it('opens cards modal', function() {
|
|
scope.openCardsModal('valentine', 4);
|
|
|
|
expect(rootScope.openModal).to.be.calledOnce;
|
|
expect(rootScope.openModal).to.be.calledWith(
|
|
'cards'
|
|
);
|
|
});
|
|
|
|
it('instantiates a new scope for the modal', function() {
|
|
scope.openCardsModal('valentine', 4);
|
|
|
|
expect(rootScope.$new).to.be.calledOnce;
|
|
expect(cardsModalScope.cardType).to.eql('valentine');
|
|
expect(cardsModalScope.cardMessage).to.exist;
|
|
});
|
|
|
|
it('provides a card message', function() {
|
|
scope.openCardsModal('valentine', 1);
|
|
|
|
expect(cardsModalScope.cardMessage).to.eql(env.t('valentine0'));
|
|
});
|
|
|
|
it('randomly generates message from x number of messages', function() {
|
|
var possibleValues = [env.t('valentine0'), env.t('valentine1')];
|
|
|
|
scope.openCardsModal('valentine', 2);
|
|
|
|
expect(possibleValues).to.contain(cardsModalScope.cardMessage);
|
|
});
|
|
});
|
|
|
|
describe('#buyQuest', function() {
|
|
var quests, questObject;
|
|
|
|
beforeEach(inject(function(Quests) {
|
|
quests = Quests;
|
|
questObject = { key: 'whale' };
|
|
|
|
sandbox.stub(quests, 'buyQuest').returns({ then: function(res) { res(questObject); } });
|
|
}));
|
|
|
|
it('calls Quests.buyQuest', function() {
|
|
scope.buyQuest('foo');
|
|
|
|
expect(quests.buyQuest).to.be.calledOnce;
|
|
expect(quests.buyQuest).to.be.calledWith('foo');
|
|
});
|
|
|
|
it('sets selectedQuest to resolved quest object', function() {
|
|
scope.buyQuest('whale');
|
|
|
|
expect(rootScope.selectedQuest).to.eql(questObject);
|
|
});
|
|
|
|
it('opens buyQuest modal', function() {
|
|
sandbox.spy(rootScope, 'openModal');
|
|
|
|
scope.buyQuest('whale');
|
|
|
|
expect(rootScope.openModal).to.be.calledOnce;
|
|
expect(rootScope.openModal).to.be.calledWith('buyQuest', {controller: 'InventoryCtrl'});
|
|
});
|
|
});
|
|
|
|
describe('#showQuest', function() {
|
|
var quests, questObject;
|
|
|
|
beforeEach(inject(function(Quests) {
|
|
quests = Quests;
|
|
questObject = { key: 'whale' };
|
|
|
|
sandbox.stub(quests, 'showQuest').returns({ then: function(res) { res(questObject); } });
|
|
}));
|
|
|
|
it('calls Quests.showQuest', function() {
|
|
scope.showQuest('foo');
|
|
|
|
expect(quests.showQuest).to.be.calledOnce;
|
|
expect(quests.showQuest).to.be.calledWith('foo');
|
|
});
|
|
|
|
it('sets selectedQuest to resolved quest object', function() {
|
|
scope.showQuest('whale');
|
|
|
|
expect(rootScope.selectedQuest).to.eql(questObject);
|
|
});
|
|
|
|
it('opens showQuest modal', function() {
|
|
sandbox.spy(rootScope, 'openModal');
|
|
|
|
scope.showQuest('whale');
|
|
|
|
expect(rootScope.openModal).to.be.calledOnce;
|
|
expect(rootScope.openModal).to.be.calledWith('showQuest', {controller: 'InventoryCtrl'});
|
|
});
|
|
});
|
|
|
|
describe('#hasAllTimeTravelerItems', function() {
|
|
it('returns false if items remain for purchase with Mystic Hourglasses', function() {
|
|
expect(scope.hasAllTimeTravelerItems()).to.eql(false);
|
|
});
|
|
|
|
it('returns true if there are no items left to purchase', inject(function(Content) {
|
|
_.forEach(Content.gear.flat, function(v,item) {
|
|
if (item.indexOf('mystery') > -1) {
|
|
user.items.gear.owned[item] = true;
|
|
}
|
|
});
|
|
_.forEach(Content.timeTravelStable.pets, function(v,pet) {
|
|
user.items.pets[pet] = 5;
|
|
});
|
|
_.forEach(Content.timeTravelStable.mounts, function(v,mount) {
|
|
user.items.mounts[mount] = true;
|
|
});
|
|
|
|
expect(scope.hasAllTimeTravelerItems()).to.eql(true);
|
|
}));
|
|
});
|
|
|
|
describe('#hasAllTimeTravelerItemsOfType', function() {
|
|
it('returns false for Mystery Sets if there are sets left in the time traveler store', function() {
|
|
expect(scope.hasAllTimeTravelerItemsOfType('mystery')).to.eql(false);
|
|
});
|
|
|
|
it('returns true for Mystery Sets if there are no sets left to purchase', inject(function(Content) {
|
|
_.forEach(Content.gear.flat, function(v,item) {
|
|
if (item.indexOf('mystery') > -1) {
|
|
user.items.gear.owned[item] = true;
|
|
}
|
|
});
|
|
|
|
expect(scope.hasAllTimeTravelerItemsOfType('mystery')).to.eql(true);
|
|
}));
|
|
|
|
it('returns false for pets if user does not own all pets in the Time Travel Stable', function() {
|
|
expect(scope.hasAllTimeTravelerItemsOfType('pets')).to.eql(false);
|
|
});
|
|
|
|
it('returns true for pets if user owns all pets in the Time Travel Stable', inject(function(Content) {
|
|
_.forEach(Content.timeTravelStable.pets, function(v,pet) {
|
|
user.items.pets[pet] = 5;
|
|
});
|
|
|
|
expect(scope.hasAllTimeTravelerItemsOfType('pets')).to.eql(true);
|
|
}));
|
|
|
|
it('returns false for mounts if user does not own all mounts in the Time Travel Stable', function() {
|
|
expect(scope.hasAllTimeTravelerItemsOfType('mounts')).to.eql(false);
|
|
});
|
|
|
|
it('returns true for mounts if user owns all mounts in the Time Travel Stable', inject(function(Content) {
|
|
_.forEach(Content.timeTravelStable.mounts, function(v,mount) {
|
|
user.items.mounts[mount] = true;
|
|
});
|
|
|
|
expect(scope.hasAllTimeTravelerItemsOfType('mounts')).to.eql(true);
|
|
}));
|
|
});
|
|
|
|
describe('Gear search filter', function() {
|
|
var wrap = function(text) {
|
|
return {'text': function() {return text;}};
|
|
}
|
|
|
|
var toText = function(list) {
|
|
return _.map(list, function(ele) { return ele.text(); });
|
|
}
|
|
|
|
var gearByClass, gearByType;
|
|
|
|
beforeEach(function() {
|
|
scope.$digest();
|
|
gearByClass = {'raw': [wrap('kale'), wrap('sashimi')],
|
|
'cooked': [wrap('chicken'), wrap('potato')]};
|
|
|
|
gearByType = {'veg': [wrap('kale'), wrap('potato')],
|
|
'not': [wrap('chicken'), wrap('sashimi')]};
|
|
scope.gearByClass = gearByClass;
|
|
scope.gearByType = gearByType;
|
|
scope.equipmentQuery.query = 'a';
|
|
});
|
|
|
|
it('filters nothing if equipmentQuery is nothing', function() {
|
|
scope.equipmentQuery.query = '';
|
|
scope.$digest();
|
|
expect(toText(scope.filteredGearByClass['raw'])).to.eql(['kale', 'sashimi']);
|
|
expect(toText(scope.filteredGearByClass['cooked'])).to.eql(['chicken', 'potato']);
|
|
expect(toText(scope.filteredGearByType['veg'])).to.eql(['kale', 'potato']);
|
|
expect(toText(scope.filteredGearByType['not'])).to.eql(['chicken', 'sashimi']);
|
|
});
|
|
|
|
it('filters out gear if class gear changes', function() {
|
|
scope.$digest();
|
|
expect(toText(scope.filteredGearByClass['raw'])).to.eql(['kale', 'sashimi']);
|
|
expect(toText(scope.filteredGearByClass['cooked'])).to.eql(['potato']);
|
|
|
|
scope.gearByClass['raw'].push(wrap('zucchini'));
|
|
scope.gearByClass['cooked'].push(wrap('pizza'));
|
|
scope.$digest();
|
|
expect(toText(scope.filteredGearByClass['raw'])).to.eql(['kale', 'sashimi']);
|
|
expect(toText(scope.filteredGearByClass['cooked'])).to.eql(['potato', 'pizza']);
|
|
});
|
|
|
|
it('filters out gear if typed gear changes', function() {
|
|
scope.$digest();
|
|
expect(toText(scope.filteredGearByType['veg'])).to.eql(['kale', 'potato']);
|
|
expect(toText(scope.filteredGearByType['not'])).to.eql(['sashimi']);
|
|
|
|
scope.gearByType['veg'].push(wrap('zucchini'));
|
|
scope.gearByType['not'].push(wrap('pizza'));
|
|
|
|
scope.$digest();
|
|
expect(toText(scope.filteredGearByType['veg'])).to.eql(['kale', 'potato']);
|
|
expect(toText(scope.filteredGearByType['not'])).to.eql(['sashimi', 'pizza']);
|
|
});
|
|
|
|
it('filters out gear if filter query changes', function() {
|
|
scope.equipmentQuery.query = 'c';
|
|
scope.$digest();
|
|
|
|
expect(toText(scope.filteredGearByClass['raw'])).to.eql([]);
|
|
expect(toText(scope.filteredGearByClass['cooked'])).to.eql(['chicken']);
|
|
expect(toText(scope.filteredGearByType['veg'])).to.eql([]);
|
|
expect(toText(scope.filteredGearByType['not'])).to.eql(['chicken']);
|
|
});
|
|
|
|
it('returns the right filtered gear', function() {
|
|
var equipment = [wrap('spicy tuna'), wrap('dragon'), wrap('rainbow'), wrap('caterpillar')];
|
|
expect(toText(scope.equipmentSearch(equipment, 'ra'))).to.eql(['dragon', 'rainbow']);
|
|
});
|
|
|
|
it('returns the right filtered gear if the source gear has unicode', function() {
|
|
// blue hat, red hat, red shield
|
|
var equipment = [wrap('藍色軟帽'), wrap('紅色軟帽'), wrap('紅色盾牌')];
|
|
// searching for 'red' gives red hat, red shield
|
|
expect(toText(scope.equipmentSearch(equipment, '紅色'))).to.eql(['紅色軟帽', '紅色盾牌']);
|
|
});
|
|
});
|
|
});
|