aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/testswarm.js
blob: bcbd122120f66e8421eae64cf4711c7c31871bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
module.exports = function( grunt ) {

"use strict";

var versions = {
		"git": "git",
		"2.2": "2.2.0 2.2.1 2.2.2 2.2.3 2.2.4",
		"2.1": "2.1.0 2.1.1 2.1.2 2.1.3 2.1.4",
		"2.0": "2.0.0 2.0.1 2.0.3",
		"1.12": "1.12.0 1.12.1 1.12.2 1.12.3 1.12.4",
		"1.11": "1.11.0 1.11.1 1.11.2 1.11.3",
		"1.10": "1.10.0 1.10.2",
		"1.9": "1.9.0 1.9.1",
		"1.8": "1.8.0 1.8.1 1.8.2 1.8.3",
		"1.7": "1.7.0 1.7.1 1.7.2"
	},
	tests = {
		"Accordion": "accordion/accordion.html",
		"Autocomplete": "autocomplete/autocomplete.html",
		"Button": "button/button.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",
		"Menu": "menu/menu.html",
		"Position": "position/position.html",
		"Progressbar": "progressbar/progressbar.html",
		"Resizable": "resizable/resizable.html",
		"Selectable": "selectable/selectable.html",
		"Selectmenu": "selectmenu/selectmenu.html",
		"Slider": "slider/slider.html",
		"Sortable": "sortable/sortable.html",
		"Spinner": "spinner/spinner.html",
		"Tabs": "tabs/tabs.html",
		"Tooltip": "tooltip/tooltip.html",
		"Widget": "widget/widget.html"
	};

function submit( commit, runs, configFile, extra, done ) {
	var testName,
		testswarm = require( "testswarm" ),
		config = grunt.file.readJSON( configFile ).jqueryui,
		browserSets = config.browserSets,
		commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit;

	if ( extra ) {

		// jQuery >= 2.0.0 don't support IE 8.
		if ( extra.substring( 0, 6 ) !== "core 1" ) {
			browserSets = "jquery-ui-future";
		}

		extra = " (" + extra + ")";
	}

	for ( testName in runs ) {
		runs[ testName ] = config.testUrl + commit + "/tests/unit/" + runs[ testName ];
	}

	testswarm.createClient( {
		url: config.swarmUrl
	} )
		.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,
			timeout: 1000 * 60 * 30
		}, function( error, passed ) {
			if ( error ) {
				grunt.log.error( error );
			}
			done( passed );
		} );
}

grunt.registerTask( "testswarm", function( commit, configFile ) {
	var test,
		latestTests = {};
	for ( test in tests ) {
		latestTests[ test ] = tests[ test ] + "?nojshint=true";
	}
	submit( commit, latestTests, configFile, "", this.async() );
} );

grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, minor ) {
	var allTests = {};
	versions[ minor ].split( " " ).forEach( function( version ) {
		for ( var test in tests ) {
			allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
		}
	} );
	submit( commit, allTests, configFile, "core " + minor, this.async() );
} );

};