-
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
Conversation
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 comment
The reason will be displayed to describe this comment to others. Learn more.
This file just contains null
which is both valid JSON & JS. Quite handy!
// 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(); | ||
} ); | ||
} ); |
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.
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 comment
The 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.
@@ -14,7 +14,7 @@ | |||
<!-- 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 comment
The reason will be displayed to describe this comment to others. Learn more.
I can separate these changes if you want.
// Register this prefilter before the jQuery one. Otherwise, a promoted | ||
// request is transformed into one with the script dataType and we can't | ||
// catch it anymore. | ||
jQuery.ajaxPrefilter( "+json", function( s ) { |
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. 🙈
// 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(); | ||
} ); | ||
} ); |
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.
I'm fine with it, if it really gets out of hand we can refactor some other time.
test/migrate.js
Outdated
} | ||
|
||
if ( result && result.then ) { | ||
return jQuery.when( |
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.
Note to self - jQuery.when
is unavailable in jQuery 4.x Slim. Perhaps it's better to use a Promise polyfill like native-promise-only that we already use in Core tests.
@dmethvin I added one commit switching |
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.
Seems like the easiest way to make this work in slim, LGTM.
The warning landed in jquerygh-376 but I forgot to document it. Fixes jquerygh-443 Ref jquerygh-376
The warning landed in gh-376 but I forgot to document it. Fixes gh-443 Closes gh-447 Ref gh-376 Co-authored-by: Dave Methvin <[email protected]>
Fixes gh-372
Ref jquery/jquery#1799
Ref jquery/jquery#3376
Ref jquery/jquery#4754