2012-06-08 15:35:11 +00:00
|
|
|
module.exports = function( grunt ) {
|
|
|
|
|
2012-10-22 21:41:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
2012-07-23 15:54:06 +00:00
|
|
|
var versions = {
|
|
|
|
"git": "git",
|
2012-09-21 01:41:47 +00:00
|
|
|
"1.8": "1.8.0 1.8.1 1.8.2",
|
2012-07-23 15:54:06 +00:00
|
|
|
"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",
|
|
|
|
"Autocomplete": "autocomplete/autocomplete.html",
|
|
|
|
"Button": "button/button.html",
|
|
|
|
"Core": "core/core.html",
|
2012-11-09 21:27:45 +00:00
|
|
|
"Datepicker": "datepicker/datepicker.html",
|
2012-11-09 20:02:12 +00:00
|
|
|
"Dialog": "dialog/dialog.html",
|
2012-10-30 23:12:17 +00:00
|
|
|
"Draggable": "draggable/draggable.html",
|
2012-10-31 02:19:49 +00:00
|
|
|
"Droppable": "droppable/droppable.html",
|
2012-07-23 15:54:06 +00:00
|
|
|
"Effects": "effects/effects.html",
|
|
|
|
"Menu": "menu/menu.html",
|
|
|
|
"Position": "position/position.html",
|
|
|
|
"Progressbar": "progressbar/progressbar.html",
|
2012-10-31 12:30:01 +00:00
|
|
|
"Resizable": "resizable/resizable.html",
|
2012-10-31 01:50:08 +00:00
|
|
|
"Selectable": "selectable/selectable.html",
|
2012-11-09 22:22:35 +00:00
|
|
|
"Slider": "slider/slider.html",
|
2012-11-02 00:54:52 +00:00
|
|
|
"Sortable": "sortable/sortable.html",
|
2012-07-23 15:54:06 +00:00
|
|
|
"Spinner": "spinner/spinner.html",
|
|
|
|
"Tabs": "tabs/tabs.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
|
|
|
}
|
2012-09-29 03:25:45 +00:00
|
|
|
version = version ? ( version + " " ) : "";
|
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,
|
2012-08-05 15:05:44 +00:00
|
|
|
timeout: 1000 * 60 * 45,
|
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-10-04 12:45:01 +00:00
|
|
|
jobName: 'jQuery UI ' + version + '#<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
|
2012-06-11 19:46:06 +00:00
|
|
|
runMax: config.runMax,
|
2012-10-26 15:09:26 +00:00
|
|
|
"runNames[]": Object.keys( tests ),
|
2012-06-08 15:35:11 +00:00
|
|
|
"runUrls[]": testUrls,
|
2012-10-26 15:09:26 +00:00
|
|
|
"browserSets[]": [ "popular-no-ie6" ]
|
2012-06-08 15:35:11 +00:00
|
|
|
});
|
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-09-29 03:25:45 +00:00
|
|
|
submit( commit, allTests, configFile, minor + " core", this.async() );
|
2012-06-08 15:35:11 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
};
|