jquery-ui/build/tasks/testswarm.js

107 lines
2.9 KiB
JavaScript
Raw Normal View History

module.exports = function( grunt ) {
"use strict";
var versions = {
"git": "git",
"3.x-git": "3.x-git",
"3.5": "3.5.1",
"3.4": "3.4.1",
"3.3": "3.3.1",
"3.2": "3.2.1",
2016-10-31 16:29:59 +00:00
"3.1": "3.1.1",
"3.0": "3.0.0",
"2.2": "2.2.4",
"2.1": "2.1.4",
"2.0": "2.0.3",
"1.12": "1.12.4",
"1.11": "1.11.3",
"1.10": "1.10.2",
"1.9": "1.9.1",
"1.8": "1.8.3"
},
tests = {
"Accordion": "accordion/accordion.html",
"Autocomplete": "autocomplete/autocomplete.html",
"Button": "button/button.html",
"Checkboxradio": "checkboxradio/checkboxradio.html",
"Controlgroup": "controlgroup/controlgroup.html",
"Core": "core/core.html",
"Datepicker": "datepicker/datepicker.html",
"Dialog": "dialog/dialog.html",
"Draggable": "draggable/draggable.html",
"Droppable": "droppable/droppable.html",
"Effects": "effects/effects.html",
"Form Reset Mixin": "form-reset-mixin/form-reset-mixin.html",
"Menu": "menu/menu.html",
"Position": "position/position.html",
"Progressbar": "progressbar/progressbar.html",
"Resizable": "resizable/resizable.html",
"Selectable": "selectable/selectable.html",
"Selectmenu": "selectmenu/selectmenu.html",
2012-11-09 22:22:35 +00:00
"Slider": "slider/slider.html",
"Sortable": "sortable/sortable.html",
"Spinner": "spinner/spinner.html",
"Tabs": "tabs/tabs.html",
"Tooltip": "tooltip/tooltip.html",
"Widget": "widget/widget.html"
};
2013-04-09 18:22:37 +00:00
function submit( commit, runs, configFile, extra, done ) {
var testName,
testswarm = require( "testswarm" ),
2013-04-09 18:22:37 +00:00
config = grunt.file.readJSON( configFile ).jqueryui,
browserSets = config.browserSets,
2013-04-09 18:22:37 +00:00
commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit;
if ( extra ) {
extra = " (" + extra + ")";
2013-04-09 18:22:37 +00:00
}
for ( testName in runs ) {
2013-04-09 18:22:37 +00:00
runs[ testName ] = config.testUrl + commit + "/tests/unit/" + runs[ testName ];
}
2015-03-06 15:35:10 +00:00
testswarm.createClient( {
url: config.swarmUrl
2015-03-06 15:35:10 +00:00
} )
.addReporter( testswarm.reporters.cli )
.auth( {
id: config.authUsername,
token: config.authToken
} )
.addjob( {
name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
runs: runs,
runMax: config.runMax,
browserSets: browserSets,
2015-03-06 15:35:10 +00:00
timeout: 1000 * 60 * 30
}, function( error, passed ) {
if ( error ) {
grunt.log.error( error );
}
done( passed );
} );
}
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";
}
submit( commit, latestTests, configFile, "", this.async() );
2015-03-06 15:35:10 +00:00
} );
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, minor ) {
var allTests = {};
2015-03-06 15:35:10 +00:00
versions[ minor ].split( " " ).forEach( function( version ) {
for ( var test in tests ) {
allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
}
2015-03-06 15:35:10 +00:00
} );
2013-04-09 18:22:37 +00:00
submit( commit, allTests, configFile, "core " + minor, this.async() );
2015-03-06 15:35:10 +00:00
} );
};