-
Notifications
You must be signed in to change notification settings - Fork 476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ajax: Warn against automatic JSON-to-JSONP promotion #376
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ QUnit.test( "jQuery.ajax() deprecations on jqXHR", function( assert ) { | |
|
||
expectWarning( assert, ".success(), .error(), .compete() calls", 3, function() { | ||
|
||
jQuery.ajax( "/not-found.404" ) | ||
return jQuery.ajax( url( "not-found.404" ) ) | ||
.success( jQuery.noop ) | ||
.error( function( jQXHR ) { | ||
|
||
|
@@ -19,12 +19,104 @@ QUnit.test( "jQuery.ajax() deprecations on jqXHR", function( assert ) { | |
} ) | ||
.complete( function() { | ||
assert.ok( true, "ajax complete" ); | ||
} ) | ||
.catch( jQuery.noop ); | ||
} ).then( function() { | ||
done(); | ||
} ); | ||
|
||
} ); | ||
|
||
[ " - Same Domain", " - Cross Domain" ].forEach( function( label, crossDomain ) { | ||
|
||
// The JSON-to-JSONP auto-promotion behavior is gone in jQuery 4.0 and as | ||
// it has security implications, we don't want to restore the legacy behavior. | ||
QUnit[ jQueryVersionSince( "4.0.0" ) ? "skip" : "test" ]( | ||
"jQuery.ajax() JSON-to-JSONP auto-promotion" + label, function( assert ) { | ||
|
||
assert.expect( 5 ); | ||
|
||
var done = assert.async(), | ||
tests = [ | ||
function() { | ||
return expectNoWarning( assert, "dataType: \"json\"", | ||
function() { | ||
return jQuery.ajax( { | ||
url: url( "data/null.json" ), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file just contains |
||
crossDomain: crossDomain, | ||
dataType: "json" | ||
} ).catch( jQuery.noop ); | ||
} | ||
); | ||
}, | ||
|
||
// Wait for expectWarning to complete | ||
setTimeout( done, 1 ); | ||
function() { | ||
return expectWarning( assert, "dataType: \"json\", URL callback", 1, | ||
function() { | ||
return jQuery.ajax( { | ||
url: url( "data/null.json?callback=?" ), | ||
crossDomain: crossDomain, | ||
dataType: "json" | ||
} ).catch( jQuery.noop ); | ||
} | ||
); | ||
}, | ||
|
||
function() { | ||
return expectWarning( assert, "dataType: \"json\", data callback", 1, | ||
function() { | ||
return jQuery.ajax( { | ||
url: url( "data/null.json" ), | ||
crossDomain: crossDomain, | ||
data: "callback=?", | ||
dataType: "json" | ||
} ).catch( jQuery.noop ); | ||
} | ||
); | ||
}, | ||
|
||
function() { | ||
return expectNoWarning( assert, "dataType: \"jsonp\", URL callback", | ||
function() { | ||
return jQuery.ajax( { | ||
url: url( "data/null.json?callback=?" ), | ||
crossDomain: crossDomain, | ||
dataType: "jsonp" | ||
} ).catch( jQuery.noop ); | ||
} | ||
); | ||
}, | ||
|
||
function() { | ||
return expectNoWarning( assert, "dataType: \"jsonp\", data callback", | ||
function() { | ||
return jQuery.ajax( { | ||
url: url( "data/null.json" ), | ||
crossDomain: crossDomain, | ||
data: "callback=?", | ||
dataType: "jsonp" | ||
} ).catch( jQuery.noop ); | ||
} | ||
); | ||
} | ||
]; | ||
|
||
// Invoke tests sequentially as they're async and early tests could get warnings | ||
// from later ones. | ||
function run( tests ) { | ||
var test = tests[ 0 ]; | ||
return test().then( function() { | ||
if ( tests.length > 1 ) { | ||
return run( tests.slice( 1 ) ); | ||
} | ||
} ); | ||
} ); | ||
} | ||
|
||
run( tests ) | ||
.then( function() { | ||
done(); | ||
} ); | ||
} ); | ||
Comment on lines
+104
to
+119
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is quite a lot of boilerplate but we don't have that many tests so I'm not sure if this is the moment to generalize it... If there's a way to simplify, I'm all ears. :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm fine with it, if it really gets out of hand we can refactor some other time. |
||
} ); | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,13 @@ | |
<link rel="stylesheet" href="../node_modules/qunit/qunit/qunit.css" media="screen"> | ||
<script src="../node_modules/qunit/qunit/qunit.js"></script> | ||
|
||
<!-- A promise polyfill --> | ||
<script src="../node_modules/native-promise-only/lib/npo.src.js"></script> | ||
|
||
<!-- Load a jQuery and jquery-migrate plugin file based on URL --> | ||
<script src="testinit.js"></script> | ||
<script> | ||
TestManager.loadProject( "jquery", "git" ); | ||
TestManager.loadProject( "jquery", "3.x-git" ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can separate these changes if you want. |
||
// Close this script tag so file will load | ||
</script> | ||
<script> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The special
+
handling is not documented at https://api.jquery.com/jQuery.ajaxPrefilter/, I found it by reading source. 🙈