forked from jquery/jquery-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestinit.js
259 lines (225 loc) · 7.64 KB
/
testinit.js
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
"use strict";
( typeof global != "undefined" ? global : window ).TestManager = {
/**
* Load a version of a file based on URL parameters.
*
* dev Uncompressed development version: source files in the project /dist dir
* esmodules Non-combined dev version: source files from the project /src dir
* min Minified version in the project /dist dir
* VER Version from code.jquery.com, e.g.: git, 4.0.0.min or 4.0.0-beta.2
* else Full or relative path to be used for script src
*/
loadProject: function( projectName, defaultVersion, isSelf ) {
var file,
urlTag = this.projects[ projectName ].urlTag,
matcher = new RegExp( "\\b" + urlTag + "=([^&]+)" ),
projectRoot = this.baseURL + ( isSelf ? "../.." : "../../../" + projectName ),
version = ( matcher.exec( document.location.search ) || {} )[ 1 ] || defaultVersion;
// The esmodules mode requires the browser to support ES modules
// so it won't run in IE.
if ( version === "esmodules" ) {
// This is the main source file that imports all the others.
file = projectRoot + "/src/migrate.js";
} else if ( version === "dev" ) {
file = projectRoot + "/dist/" + projectName + ".js";
} else if ( version === "min" ) {
file = projectRoot + "/dist/" + projectName + ".min.js";
} else if ( version.indexOf( "git" ) === 0 ) {
file = "https://releases.jquery.com/git/" + projectName + "-" + version + ".js";
} else if ( /^[\w\.\-]+$/.test( version ) ) {
file = "https://code.jquery.com/" + projectName + "-" + version + ".js";
} else {
file = version;
}
this.loaded.push( {
projectName: projectName,
tag: version,
file: file
} );
if ( version === "esmodules" ) {
document.write( "<script type='module' src='" + file + "'></script>" );
} else {
document.write( "<script src='" + file + "'></script>" );
}
},
/**
* Load jQuery Migrate tests. In esmodules mode it loads all tests as
* ES modules so that they get executed in the correct order.
*/
loadTests: function() {
var esmodules = QUnit.config.plugin === "esmodules" ||
QUnit.urlParams.plugin === "esmodules",
testFiles = [
"data/test-utils.js",
"unit/migrate.js",
"unit/jquery/core.js",
"unit/jquery/ajax.js",
"unit/jquery/attributes.js",
"unit/jquery/css.js",
"unit/jquery/deferred.js",
"unit/jquery/effects.js",
"unit/jquery/event.js",
"unit/jquery/manipulation.js",
"unit/jquery/selector.js"
];
testFiles.forEach( function( testFile ) {
document.write( "<script " + ( esmodules ? "type='module'" : "" ) +
" src='" + testFile + "'></script>" );
} );
document.write( "<script " + ( esmodules ? "type='module'" : "" ) + ">" +
" QUnit.start();\n" +
"</script>" );
},
/**
* Iframe tests that require setup not covered in the standard unit test
*
* Note that options passed into the standard unit tests will also be passed to
* the iframe, but the iframe html page is responsible for processing them
* as appropriate (for example by calling TestManager.loadProject)
*/
runIframeTest: function( title, url, func ) {
var that = this,
esmodules = QUnit.config.plugin === "esmodules" ||
QUnit.urlParams.plugin === "esmodules";
// Skip iframe tests in esmodules mode as that mode is not compatible with how
// they are written.
if ( esmodules ) {
QUnit.skip( title );
return;
}
QUnit.test( title, function( assert ) {
var iframe,
query = window.location.search.slice( 1 ),
done = assert.async();
that.iframeCallback = function() {
var args = Array.prototype.slice.call( arguments );
args.unshift( assert );
setTimeout( function() {
that.iframeCallback = undefined;
func.apply( this, args );
func = function() {};
iframe.remove();
done();
} );
};
iframe = jQuery( "<div/>" )
.css( { position: "absolute", width: "500px", left: "-600px" } )
.append( jQuery( "<iframe/>" ).attr( "src", that.baseURL + url +
( query && ( /\?/.test( url ) ? "&" : "?" ) ) + query ) )
.appendTo( "#qunit-fixture" );
} );
},
iframeCallback: undefined,
init: function( projects ) {
var p, project, originalDeduplicateWarnings,
disabledPatches, origMigrateDisablePatches,
FILEPATH = "/test/data/testinit.js",
activeScript = [].slice.call( document.getElementsByTagName( "script" ), -1 )[ 0 ],
parentUrl = activeScript && activeScript.src ?
activeScript.src.replace( /[?#].*/, "" ) + FILEPATH.replace( /[^/]+/g, ".." ) + "/" :
"../";
this.baseURL = parentUrl + "test/data/";
this.projects = projects;
this.loaded = [];
// Do QUnit setup if QUnit is loaded (could be an iframe page)
if ( !window.QUnit ) {
return;
}
// Tests are always loaded async
QUnit.config.autostart = false;
// Max time for async tests until it aborts test
// and start()'s the next test.
QUnit.config.testTimeout = 20 * 1000; // 20 seconds
// Enforce an "expect" argument or expect() call in all test bodies.
QUnit.config.requireExpects = true;
// Set the list of projects, including the project version choices.
for ( p in projects ) {
project = projects[ p ];
QUnit.config.urlConfig.push( {
label: p,
id: project.urlTag,
value: project.choices
} );
}
/**
* Add random number to url to stop caching
*
* Also prefixes with baseURL automatically.
*
* @example url("index.html")
* @result "data/index.html?10538358428943"
*
* @example url("xyz.php?foo=bar")
* @result "data/xyz.php?foo=bar&10538358345554"
*/
window.url = function url( value ) {
return TestManager.baseURL + value + ( /\?/.test( value ) ? "&" : "?" ) +
new Date().getTime() + "" + parseInt( Math.random() * 100000, 10 );
};
QUnit.begin( function() {
originalDeduplicateWarnings = jQuery.migrateDeduplicateMessages;
} );
QUnit.testStart( function( details ) {
// If only the first warning is reported, tests using `expectMessage`
// with multiple function calls would pass even if some of them didn't
// warn. Because of that, by default don't deduplicate warnings in tests.
if ( details.name !== "jQuery.migrateDeduplicateMessages" ) {
jQuery.migrateDeduplicateMessages = false;
} else {
// When testing this API, we want to start with its default value.
jQuery.migrateDeduplicateMessages = originalDeduplicateWarnings;
}
if ( jQuery.migrateDisablePatches ) {
// Patch `jQuery.migrateDisablePatches` so that we keep a list of disabled
// patches that we can then re-enable. Some of those patches may have already
// been re-enabled later but if we do it here again it won't hurt.
disabledPatches = [];
origMigrateDisablePatches = jQuery.migrateDisablePatches;
jQuery.migrateDisablePatches = function customMigrateDisablePatches() {
var i;
for ( i = 0; i < arguments.length; i++ ) {
disabledPatches.push( arguments[ i ] );
}
return origMigrateDisablePatches.apply( this, arguments );
};
}
} );
QUnit.testDone( function() {
if ( jQuery.migrateDisablePatches ) {
jQuery.migrateDisablePatches = origMigrateDisablePatches;
// Restore potentially disabled patches
var i, patch;
for ( i = 0; i < disabledPatches.length; i++ ) {
patch = disabledPatches[ i ];
jQuery.migrateEnablePatches( patch );
}
// Re-disable patches disabled by default
jQuery.migrateDisablePatches( "self-closed-tags", "jsonp-promotion" );
}
} );
}
};
TestManager.init( {
"jquery": {
urlTag: "jquery",
choices: [
"dev",
"min",
"git",
"git.min",
"git.slim",
"git.slim.min",
"4.0.0-beta.2",
"4.0.0-beta.2.slim"
]
},
"jquery-migrate": {
urlTag: "plugin",
choices: [
"dev",
"min",
"git",
"esmodules"
]
}
} );