2012-06-15 21:51:05 +00:00
|
|
|
/*jshint node: true */
|
2012-06-08 15:35:11 +00:00
|
|
|
module.exports = function( grunt ) {
|
|
|
|
|
2012-07-23 15:54:06 +00:00
|
|
|
var versions = {
|
|
|
|
"git": "git",
|
|
|
|
"1.7": "1.7 1.7.1 1.7.2",
|
|
|
|
"1.6": "1.6 1.6.1 1.6.2 1.6.3 1.6.4"
|
|
|
|
},
|
|
|
|
tests = {
|
|
|
|
"Accordion": "accordion/accordion.html",
|
|
|
|
"Accordion_deprecated": "accordion/accordion_deprecated.html",
|
|
|
|
"Autocomplete": "autocomplete/autocomplete.html",
|
|
|
|
"Button": "button/button.html",
|
|
|
|
"Core": "core/core.html",
|
|
|
|
//"datepicker/datepicker.html",
|
|
|
|
//"dialog/dialog.html",
|
|
|
|
//"draggable/draggable.html",
|
|
|
|
//"droppable/droppable.html",
|
|
|
|
"Effects": "effects/effects.html",
|
|
|
|
"Menu": "menu/menu.html",
|
|
|
|
"Position": "position/position.html",
|
|
|
|
"Position_deprecated": "position/position_deprecated.html",
|
|
|
|
"Progressbar": "progressbar/progressbar.html",
|
|
|
|
//"resizable/resizable.html",
|
|
|
|
//"selectable/selectable.html",
|
|
|
|
//"slider/slider.html",
|
|
|
|
//"sortable/sortable.html",
|
|
|
|
"Spinner": "spinner/spinner.html",
|
|
|
|
"Tabs": "tabs/tabs.html",
|
|
|
|
"Tabs_deprecated": "tabs/tabs_deprecated.html",
|
|
|
|
"Tooltip": "tooltip/tooltip.html",
|
|
|
|
"Widget": "widget/widget.html"
|
|
|
|
};
|
2012-06-15 21:51:05 +00:00
|
|
|
|
2012-07-23 16:50:50 +00:00
|
|
|
function submit( commit, tests, configFile, version, done ) {
|
2012-06-08 15:35:11 +00:00
|
|
|
var test,
|
|
|
|
testswarm = require( "testswarm" ),
|
2012-06-11 19:46:06 +00:00
|
|
|
config = grunt.file.readJSON( configFile ).jqueryui,
|
2012-06-13 22:24:51 +00:00
|
|
|
testBase = config.testUrl + commit + "/tests/unit/",
|
2012-06-15 21:51:05 +00:00
|
|
|
testUrls = [];
|
2012-06-08 15:35:11 +00:00
|
|
|
for ( test in tests ) {
|
2012-06-15 22:11:20 +00:00
|
|
|
testUrls.push( testBase + tests[ test ] );
|
2012-06-08 15:35:11 +00:00
|
|
|
}
|
|
|
|
testswarm({
|
2012-06-13 22:24:51 +00:00
|
|
|
url: config.swarmUrl,
|
2012-06-08 15:35:11 +00:00
|
|
|
pollInterval: 10000,
|
|
|
|
timeout: 1000 * 60 * 30,
|
2012-06-15 21:58:29 +00:00
|
|
|
done: done
|
2012-06-08 15:35:11 +00:00
|
|
|
}, {
|
2012-06-15 21:51:05 +00:00
|
|
|
authUsername: config.authUsername,
|
2012-06-11 19:46:06 +00:00
|
|
|
authToken: config.authToken,
|
2012-07-23 16:50:50 +00:00
|
|
|
jobName: 'jQuery UI ' + version + '<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 7 ) + '</a>',
|
2012-06-11 19:46:06 +00:00
|
|
|
runMax: config.runMax,
|
2012-06-08 15:35:11 +00:00
|
|
|
"runNames[]": Object.keys(tests),
|
|
|
|
"runUrls[]": testUrls,
|
|
|
|
"browserSets[]": ["popular"]
|
|
|
|
});
|
2012-06-15 21:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
grunt.registerTask( "testswarm", function( commit, configFile ) {
|
2012-06-15 22:11:20 +00:00
|
|
|
var test,
|
|
|
|
latestTests = {};
|
|
|
|
for ( test in tests ) {
|
|
|
|
latestTests[ test ] = tests[ test ] + "?nojshint=true";
|
|
|
|
}
|
2012-07-23 16:50:50 +00:00
|
|
|
submit( commit, latestTests, configFile, "", this.async() );
|
2012-06-15 21:51:05 +00:00
|
|
|
});
|
|
|
|
|
2012-07-23 15:54:06 +00:00
|
|
|
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, minor ) {
|
2012-06-16 10:12:41 +00:00
|
|
|
var allTests = {};
|
2012-07-23 15:54:06 +00:00
|
|
|
versions[ minor ].split(" ").forEach(function( version ) {
|
2012-06-16 10:12:41 +00:00
|
|
|
for ( var test in tests ) {
|
|
|
|
allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
|
|
|
|
}
|
|
|
|
});
|
2012-07-23 16:50:50 +00:00
|
|
|
submit( commit, allTests, configFile, minor + " core", this.async() );
|
2012-06-08 15:35:11 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
};
|