c040bc834c
Update file expand behavior
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
var grunt = require('grunt'),
|
|
phantomjs = require('grunt-lib-phantomjs').init(grunt),
|
|
jasmine = require('../tasks/lib/jasmine.js').init(grunt, phantomjs);
|
|
|
|
// Majority of test benefit comes from running the task itself.
|
|
|
|
function runTemplate(src,context) {
|
|
var source = grunt.file.read(src);
|
|
return grunt.util._.template(source, context);
|
|
}
|
|
|
|
// Just strips whitespace for now. Should do a proper min of everything
|
|
// but this is working well enough for now.
|
|
function normalize(html) {
|
|
return html.replace(/\s*/g,'');
|
|
}
|
|
|
|
exports.jasmine = {
|
|
defaultTemplate: function(test) {
|
|
test.expect(1);
|
|
|
|
var context = {
|
|
css : ['css/a.css'],
|
|
scripts : {
|
|
polyfills : ['p1.js'],
|
|
jasmine : ['J1.js','J2.js'],
|
|
helpers : ['H1.js','H2.js'],
|
|
specs : ['SPEC1.js','SPEC2.js'],
|
|
src : ['SRC1.js','SRC2.js'],
|
|
vendor : ['V1.js','V2.js'],
|
|
reporters : ['R1.js'],
|
|
boot : ['BOOT.js']
|
|
},
|
|
temp: 'path/to/temp/folder',
|
|
options : {}
|
|
};
|
|
|
|
var actual = runTemplate('./tasks/jasmine/templates/DefaultRunner.tmpl', context);
|
|
var expected = grunt.file.read('./test/expected/defaultTemplate.html');
|
|
|
|
test.equal(normalize(actual),normalize(expected), 'default test runner template');
|
|
|
|
test.done();
|
|
},
|
|
|
|
fileExpand: function(test) {
|
|
var patterns = ['test/fixtures/fileExpand/src/*.js', '!test/fixtures/fileExpand/src/exclude.js']
|
|
var expected = ['test/fixtures/fileExpand/src/include.js'];
|
|
test.deepEqual(jasmine.getRelativeFileList('', patterns, {}), expected, 'should properly expand file list')
|
|
test.done();
|
|
}
|
|
};
|