aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/subsuiteRunner.js
blob: ddfccc7c1e1028532594ae9cd369de685fddc9ef (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
(function( QUnit ) {

var subsuiteFrame;

QUnit.extend( QUnit, {
	testSuites: function( suites ) {
		for ( var i = 0; i < suites.length; i++ ) {
			(function( suite ) {
				asyncTest( suite, function() {
					QUnit.runSuite( suite );
				});
			}( suites[i] ) );
		}
		QUnit.done = function() {
			subsuiteFrame.style.display = "none";
		};
	},

	testStart: function( data ) {
		// update the test status to show which test suite is running
		QUnit.id( "qunit-testresult" ).innerHTML = "Running " + data.name + "...<br>&nbsp;";
	},

	testDone: function() {
		var current = QUnit.id( this.config.current.id ),
			children = current.children;

		// undo the auto-expansion of failed tests
		for ( var i = 0; i < children.length; i++ ) {
			if ( children[i].nodeName === "OL" ) {
				children[i].style.display = "none";
			}
		}
	},

	runSuite: function( suite ) {
		var body = document.getElementsByTagName( "body" )[0],
			iframe = subsuiteFrame = document.createElement( "iframe" ),
			iframeWin;

		iframe.className = "qunit-subsuite";
		body.appendChild( iframe );

		function onIframeLoad() {
			var module, test,
				count = 0;

			QUnit.extend( iframeWin.QUnit, {
				moduleStart: function( data ) {
					// capture module name for messages
					module = data.name;
				},

				testStart: function( data ) {
					// capture test name for messages
					test = data.name;
				},

				log: function( data ) {
					// pass all test details through to the main page
					var message = module + ": " + test + ": " + data.message;
					expect( ++count );
					QUnit.push( data.result, data.actual, data.expected, message );
				},

				done: function() {
					// start the wrapper test from the main page
					start();
				}
			});
		}
		QUnit.addEvent( iframe, "load", onIframeLoad );

		iframeWin = iframe.contentWindow;
		iframe.setAttribute( "src", suite );

		this.runSuite = function( suite ) {
			iframe.setAttribute( "src", suite );
		};
	}
});
}( QUnit ) );