wordpress-develop/tests/phpunit/tests/ajax
Sergey Biryukov 3196ab6db0 Tests: Prevent wp_update_themes() from running in wp_ajax_update_theme() tests.
In the tests for updating a theme via Ajax, `wp_installing( true )` is called to prevent `wp_update_themes()` from running.

This worked as expected in `test_update_theme()`, however, it was missed in `test_uppercase_theme_slug()`, which was accidentally relying on the `wp_installing()` status not being properly restored in the previous test.

Now that the `wp_installing()` status was corrected in [54723], the latter test started throwing an error on PHP 8.2:
{{{
1) Tests_Ajax_wpAjaxUpdateTheme::test_uppercase_theme_slug
http_build_query(): Passing null to parameter #2 ($numeric_prefix) of type string is deprecated

/var/www/src/wp-includes/Requests/Transport/cURL.php:345
/var/www/src/wp-includes/Requests/Transport/cURL.php:135
/var/www/src/wp-includes/class-requests.php:381
/var/www/src/wp-includes/class-wp-http.php:395
/var/www/src/wp-includes/class-wp-http.php:615
/var/www/src/wp-includes/http.php:179
/var/www/src/wp-includes/update.php:719
/var/www/src/wp-admin/includes/ajax-actions.php:4292
/var/www/src/wp-includes/class-wp-hook.php:308
/var/www/src/wp-includes/class-wp-hook.php:332
/var/www/src/wp-includes/plugin.php:517
/var/www/tests/phpunit/includes/testcase-ajax.php:265
/var/www/tests/phpunit/tests/ajax/wpAjaxUpdateTheme.php:157
}}}

Replicating the `wp_installing()` status changes in this test too resolves the error.

Follow-up to [38168], [38710], [54722], [54723].

See #56793.

git-svn-id: https://develop.svn.wordpress.org/trunk@54725 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-30 03:48:53 +00:00
..
wpAjaxAddMeta.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxAddTag.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxAjaxTagSearch.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxCropImage.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxDeleteComment.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxDeletePlugin.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxDimComment.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxEditComment.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxGetComments.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxHeartbeat.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxImageEditor.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxInlineSave.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxReplytoComment.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxResponse.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxSendAttachmentToEditor.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxUpdatePlugin.php Tests: Correctly restore the wp_installing() status in Ajax tests. 2022-10-30 02:52:04 +00:00
wpAjaxUpdateTheme.php Tests: Prevent wp_update_themes() from running in wp_ajax_update_theme() tests. 2022-10-30 03:48:53 +00:00
wpAjaxWpCompressionTest.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxWpPrivacyErasePersonalData.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpAjaxWpPrivacyExportPersonalData.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpCustomizeManager.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00
wpCustomizeNavMenus.php Tests: Rename classes in phpunit/tests/ajax/ per the naming conventions. 2022-10-30 01:05:06 +00:00