forked from DataTables/DataTablesSrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing: New testing frame using karma and Jasmine
- Tests for `paging` included - `npm run` commands of `test` for a single pass test and `test-watch` to watch for changes to the test files - Uses a custom script to load the HTML and JS/CSS libraries for DataTables testing
- Loading branch information
Showing
6 changed files
with
1,071 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
{ | ||
"name": "datatables.net-src", | ||
"version": "1.10.12", | ||
"description": "DataTables source files. Please note that this package does not include the built files. Use the `datatables.net` package!", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build-debug": "cd build; ./make.sh build debug", | ||
"build": "cd build; ./make.sh build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/DataTables/DataTablesSrc.git" | ||
}, | ||
"author": { | ||
"name": "SpryMedia Ltd", | ||
"url": "http://datatables.net" | ||
}, | ||
"license": "MIT", | ||
"homepage": "https://datatables.net", | ||
"bugs": "https://datatables.net/forums", | ||
"devDependencies": { | ||
"jasmine-core": "^2.4.1", | ||
"karma": "^0.13.22", | ||
"karma-chrome-launcher": "^1.0.1", | ||
"karma-jasmine": "^1.0.2" | ||
} | ||
"name": "datatables.net-src", | ||
"version": "1.10.12", | ||
"description": "DataTables source files. Please note that this package does not include the built files. Use the `datatables.net` package!", | ||
"scripts": { | ||
"test": "./node_modules/karma/bin/karma start test/karma.conf.js --single-run", | ||
"test-watch": "./node_modules/karma/bin/karma start test/karma.conf.js", | ||
"build-debug": "cd build; ./make.sh build debug", | ||
"build": "cd build; ./make.sh build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/DataTables/DataTablesSrc.git" | ||
}, | ||
"author": { | ||
"name": "SpryMedia Ltd", | ||
"url": "http://datatables.net" | ||
}, | ||
"license": "MIT", | ||
"homepage": "https://datatables.net", | ||
"bugs": "https://datatables.net/forums", | ||
"devDependencies": { | ||
"jasmine-core": "^2.4.1", | ||
"karma": "^0.13.22", | ||
"karma-chrome-launcher": "^1.0.1", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-jasmine-jquery": "^0.1.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,227 @@ | ||
/** | ||
* @summary DataTables testing suite, HTML and library loader | ||
* @version 1.0.0 | ||
* @author SpryMedia Ltd (www.sprymedia.co.uk) | ||
* | ||
* This source file is free software, available under the following license: | ||
* MIT license - http://datatables.net/license | ||
* | ||
* This source file is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. | ||
* | ||
* This loader is intended for use in the DataTables testing framework. I doubt | ||
* it will be useful elsewhere since it is specifically tooled for the | ||
* DataTables project's module structure, but it is MIT licensed should anyone | ||
* feel they can get any benefit from it. | ||
* | ||
* The loader provides the global `dt` object which provides three methods: | ||
* | ||
* * `libs` - Load CSS and JS libraries. This method should be called only once | ||
* per page. This takes a single object with the following parameters: | ||
* * `framework` - Styling framework to load - for example `bootstrap` or | ||
* `foundation`. Default is `datatables` if not provided. | ||
* * `js` - Array of Javascript files to load - these are the key references | ||
* to the files defined in the `client.libraries` object of the karma | ||
* configuration object. | ||
* * As the `js` array but in this case for CSS | ||
* | ||
* * `html` - Load HTML into a page from a given template. The `.html` extension | ||
* should not be given. | ||
* | ||
* * `clean` - Clean up the HTML. The libraries loaded are retained, but the | ||
* HTML is destroyed. | ||
* | ||
* The `dt.html` and `dt.libs` methods are async. This is done in Jasmine's | ||
* testing environment by adding a test called `Load fixture` to the current | ||
* spec. | ||
*/ | ||
|
||
|
||
(function (window, jasmine) { | ||
"use strict"; | ||
|
||
/** | ||
* Sequentially load the CSS and JS files. When finished called the `done` | ||
* method to tell Jasmine we are complete! | ||
*/ | ||
function _runQueue ( done, queue ) { | ||
var doc = window.document; | ||
|
||
if ( queue.length === 0 ) { | ||
// Everything finally loaded | ||
done(); | ||
} | ||
else { | ||
var lib = queue.shift(); | ||
|
||
// CSS or JS? | ||
if ( lib.match(/js$/) ) { | ||
var script = doc.createElement('script'); | ||
script.onload = function () { | ||
_runQueue( done, queue ); | ||
}; | ||
script.type = 'text/javascript'; | ||
script.src = lib; | ||
|
||
doc.body.appendChild( script ); | ||
} | ||
else { | ||
var link = doc.createElement('link'); | ||
link.onload = function () { | ||
_runQueue( done, queue ); | ||
}; | ||
link.type = 'text/css'; | ||
link.href = lib; | ||
link.rel = 'stylesheet'; | ||
|
||
doc.head.appendChild( link ); | ||
} | ||
} | ||
} | ||
|
||
|
||
/** | ||
* Convert the module name to a path to load | ||
*/ | ||
function _pathResolver ( type, path, framework ) { | ||
var config = window.__karma__.config; | ||
var libs = config.libraries; | ||
var lib = libs[ path ]; | ||
var urlBase = config.htmlLoader.builtRoot; | ||
|
||
if ( lib.pathName ) { | ||
// First party library | ||
if ( path === 'datatables' ) { | ||
// DataTables is a special case... | ||
if ( type === 'css' ) { | ||
return framework === 'datatables' ? | ||
[ urlBase+'/media/css/jquery.dataTables.css' ] : | ||
[ urlBase+'/media/css/dataTables.'+framework+'.css' ]; | ||
} | ||
else { | ||
return framework === 'datatables' ? | ||
[ urlBase+'/media/js/jquery.dataTables.js' ] : | ||
[ urlBase+'/media/js/jquery.dataTables.js', urlBase+'/media/js/dataTables.'+framework+'.js' ]; | ||
} | ||
} | ||
else { | ||
if ( type === 'css' && lib.css ) { | ||
return [ urlBase+'/extensions/'+lib.pathName+'/css/'+lib.fileName+'.'+framework+'.css' ]; | ||
} | ||
else if ( type === 'js' ) { | ||
var out = [ urlBase+'/extensions/'+lib.pathName+'/js/dataTables.'+lib.fileName+'.js' ]; | ||
|
||
if ( lib.js && framework !== 'datatables' ) { | ||
out.push( urlBase+'/extensions/'+lib.pathName+'/js/'+lib.fileName+'.'+framework+'.js' ); | ||
} | ||
|
||
return out; | ||
} | ||
} | ||
} | ||
else { | ||
// Third party or additional | ||
return lib[ type ] ? | ||
lib[ type ] : | ||
null; | ||
} | ||
|
||
return []; | ||
} | ||
|
||
|
||
/** | ||
* Build a list of CSS and JS files that need to be loaded | ||
*/ | ||
function _loadDeps ( done, obj ) { | ||
var libraries = window.__karma__.config.libraries; | ||
var doc = window.document; | ||
var queue = [], i, ien; | ||
|
||
// CSS | ||
if ( obj.css ) { | ||
for ( i=0, ien=obj.css.length ; i<ien ; i++ ) { | ||
var resolved = _pathResolver( 'css', obj.css[i], obj.framework || 'datatables' ); | ||
queue = queue.concat( resolved ); | ||
} | ||
} | ||
|
||
// JS | ||
if ( obj.js ) { | ||
for ( i=0, ien=obj.js.length ; i<ien ; i++ ) { | ||
var resolved = _pathResolver( 'js', obj.js[i], obj.framework || 'datatables' ); | ||
queue = queue.concat( resolved ); | ||
} | ||
} | ||
|
||
_runQueue( done, queue ); | ||
} | ||
|
||
|
||
/** | ||
* Get the HTML file and insert into the testing area | ||
*/ | ||
function _loadHtml ( done, file ) { | ||
var config = window.__karma__.config; | ||
var url = config.htmlLoader.path+file+'.html'; | ||
|
||
// Create a container element | ||
var doc = window.document; | ||
var container = doc.createElement( 'div' ); | ||
container.id = 'dt-test-loader-container'; | ||
doc.body.appendChild( container ); | ||
|
||
// Load the HTML needed | ||
var xhr = new XMLHttpRequest(); | ||
xhr.addEventListener( 'load', function () { | ||
if ( ! xhr.responseText ) { | ||
console.error( 'Could not load file: '+url ); | ||
} | ||
|
||
container.innerHTML = xhr.responseText; | ||
|
||
done(); | ||
} ); | ||
xhr.open( 'GET', url ); | ||
xhr.send(); | ||
} | ||
|
||
// Publicly exposed method | ||
window.dt = { | ||
libs: function ( obj ) { | ||
window.it( 'Load libraries', function (done) { | ||
_loadDeps( done, obj ); | ||
}, 5000 ); | ||
|
||
return window.dt; | ||
}, | ||
|
||
html: function ( file ) { | ||
window.it( 'Load HTML: '+file, function (done) { | ||
dt.clean(); | ||
|
||
_loadHtml( done, file ); | ||
}, 5000 ); | ||
|
||
return window.dt; | ||
}, | ||
|
||
clean: function () { | ||
if ( $ ) { | ||
$('#dt-test-loader-container').remove(); | ||
} | ||
else { | ||
var el = document.getElementById('dt-test-loader-container'); | ||
|
||
if ( el ) { | ||
document.body.removeChild( el ); | ||
} | ||
} | ||
|
||
return window.dt; | ||
} | ||
}; | ||
|
||
|
||
}(window, window.jasmine)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* @summary DataTables testing suite, HTML and library loader | ||
* @version 1.0.0 | ||
* @author SpryMedia Ltd (www.sprymedia.co.uk) | ||
* | ||
* This source file is free software, available under the following license: | ||
* MIT license - http://datatables.net/license | ||
* | ||
* This source file is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. | ||
* | ||
* Karma plug-in to export the DataTables library loader | ||
*/ | ||
|
||
var initHtmlLoader = function(files) { | ||
files.unshift( { | ||
pattern: __dirname+'/html-loader-lib.js', | ||
included: true, | ||
served: true, | ||
watched: false | ||
} ); | ||
}; | ||
|
||
initHtmlLoader.$inject = ['config.files']; | ||
|
||
module.exports = { | ||
'framework:html-loader': ['factory', initHtmlLoader] | ||
}; |
Oops, something went wrong.