Added rules and tests for them

This commit is contained in:
2016-02-26 14:21:01 +08:00
parent a82d04af1a
commit 1ceecc417d
13 changed files with 801 additions and 340 deletions
+7 -3
View File
@@ -53,7 +53,10 @@ module.exports = function (config) {
// dependencies
'bower_components/jquery/dist/jquery.js',
'bower_components/jquery-ui/jquery-ui.js',
'bower_components/bootstrap/dist/js/bootstrap.js',
'bower_components/angular/angular.js',
'bower_components/angular-route/angular-route.js',
'bower_components/angular-resource/angular-resource.js',
@@ -61,7 +64,10 @@ module.exports = function (config) {
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/angular-dragdrop/src/angular-dragdrop.js',
'bower_components/angular-ui-grid/ui-grid.js',
'bower_components/lodash/dist/lodash.js',
'bower_components/chai/chai.js',
'js/external/*.js',
// fixtures
@@ -88,9 +94,7 @@ module.exports = function (config) {
'js/helpers.js',
'js/analytics.js',
'js/gameobjects.js',
'js/detector/flame.js',
'js/detector/bubblr.js',
'js/detector/event.js',
'js/rules.js',
'js/detector/detector.js',
'js/ui.js',
'js/game.js',
+102
View File
@@ -0,0 +1,102 @@
'use strict';
/* jasmine specs for filters go here */
var allCards;
beforeEach(function(){
allCards = Helpers.loadFile('json/elements.json');
});
describe('Rules', function () {
var card, lastCards;
beforeEach(
module('Rules')
);
beforeEach(function(){
lastCards = _.sampleSize(allCards,4);
card = _.sample(allCards);
});
describe('Rule', function () {
it('should test false on false', function () {
var rule = new Rules.Rule('1',function(){return false;},{},{},[]);
var res = rule.test(card,lastCards,allCards);
expect(res).toBe(false);
});
it('should test false on assertion error', function () {
var rule = new Rules.Rule('2',function(){return chai.expect(1).to.equal(0);},{},{},[]);
var res = rule.test(card,lastCards,allCards);
expect(res).toBe(false);
});
it('should test true on assertion', function () {
var rule = new Rules.Rule('3',function(){return chai.expect(1).to.equal(1);},{},{},[]);
var res = rule.test(card,lastCards,allCards);
expect(res).toBe(true);
});
it('should test true on true', function () {
var rule = new Rules.Rule('4',function(){return true;},{},{},[]);
var res = rule.test(card,lastCards,allCards);
expect(res).toBe(true);
});
it('should throw test on error', function () {
var rule = new Rules.Rule('5',function(){throw new Error('test');return true;},{},{},[]);
expect(function(){
rule.test(card,lastCards,allCards);
}).toThrow();
});
});
Rules.rules.forEach(function(rule){
describe('rule', function () {
it('should test', function () {
var res = rule.test(card,lastCards,allCards);
Boolean(res);
});
it('should describe itself', function () {
var desc = rule.describe();
expect(typeof desc).toBe('string');
expect(desc).not.toContain(/[{}]+/);
});
it('should describeOptions', function () {
var desc = rule.describeOptions();
expect(typeof desc).toBe('string');
expect(desc).not.toContain(/[{}]+/);
});
it('should describeVariations', function () {
var desc = rule.describeVariations();
expect(typeof desc).toBe('string');
expect(desc).not.toContain(/[{}]+/);
});
it('should genHints', function () {
var hints = rule.genHints();
expect(hints instanceof Array).toBe(true);
expect(hints.length).toBeGreaterThan(0);
expect(hints.join('')).not.toContain(/[{}]+/);
});
it('should set options', function () {
var opts1 = rule.options;
var opts = rule.setOptions({a24tgsdgtg43t5fd:1});
expect(typeof opts).toBe('object');
expect(opts).not.toEqual(opts1);
});
// now check each rule permutation
var options=Object.keys(rule.optionDesc);
options.forEach(function(option){
var vals = rule.optionDesc[option].possibleVals;
for (var i = 0; i < vals.length; i++) {
it('should test with option: '+option+' = '+vals[i],function(){
var options={};
options[option]=vals[i];
rule.setOptions(options);
var res = rule.test(card,lastCards,allCards);
Boolean(res);
});
}
});
});
});
});