Skip to content

Commit

Permalink
Merge pull request #7673 from google/followup/7632-e2e-php-error-ignores
Browse files Browse the repository at this point in the history
Update E2E PHP error ignore mechanism
  • Loading branch information
tofumatt authored Oct 7, 2023
2 parents e713eb5 + a0e5e13 commit 043ce68
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
6 changes: 5 additions & 1 deletion tests/e2e/config/wordpress-debug-log/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,13 @@ async function assertEmptyDebugLog() {
// before the entries are recorded and result in a false success.
await page.waitForTimeout( 1000 );

// Filter out lines that are ignored.
const filteredDebugLog = debugLogData.filter( ( line ) => {
const lineWithoutTimestamp = line.replace( /^\[[^\]]+\]\s+/, '' );
return ! ignoreList.includes( lineWithoutTimestamp );

return ! ignoreList.some( ( ignoreLine ) =>
lineWithoutTimestamp.startsWith( ignoreLine )
);
} );

if ( filteredDebugLog.length ) {
Expand Down
23 changes: 9 additions & 14 deletions tests/e2e/config/wordpress-debug-log/log-ignore-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,19 @@
export const logIgnoreList = {
'5.2.16': [
// Deprecated syntax or function calls which are fixed in later WP versions.
'PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wp-includes/load.php on line 926',
'PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wp-includes/formatting.php on line 2697',
'PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wp-includes/formatting.php on line 4803',
'PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/wp-includes/class-wp-editor.php on line 749',
'PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/wp-includes/class-wp-editor.php on line 750',
'PHP Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /var/www/html/wp-includes/SimplePie/Parse/Date.php on line 545',
'PHP Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /var/www/html/wp-includes/SimplePie/Parse/Date.php on line 546',
'PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wp-includes/load.php',
'PHP Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/wp-includes/formatting.php',
'PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/wp-includes/class-wp-editor.php',
'PHP Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /var/www/html/wp-includes/SimplePie/Parse/Date.php',

// These are guarded against in later WP versions.
'PHP Notice: Trying to access array offset on value of type bool in /var/www/html/wp-admin/includes/update.php on line 673',
'PHP Notice: Trying to access array offset on value of type null in /var/www/html/wp-includes/rest-api/class-wp-rest-request.php on line 337',
'PHP Notice: Trying to access array offset on value of type bool in /var/www/html/wp-includes/theme.php on line 2360',
'PHP Notice: Trying to access array offset on value of type bool in /var/www/html/wp-admin/includes/update.php',
'PHP Notice: Trying to access array offset on value of type null in /var/www/html/wp-includes/rest-api/class-wp-rest-request.php',
'PHP Notice: Trying to access array offset on value of type bool in /var/www/html/wp-includes/theme.php',
],
nightly: [
// Can be removed once WordPress AMP Plugin removes the deprecated function
// call.
//
// Can be removed once WordPress AMP Plugin removes the deprecated function call.
// See: https://github.com/ampproject/amp-wp/issues/7619
'PHP Deprecated: Function _admin_bar_bump_cb is deprecated since version 6.4.0! Use wp_enqueue_admin_bar_bump_styles instead. in /var/www/html/wp-includes/functions.php on line 6032',
'PHP Deprecated: Function _admin_bar_bump_cb is deprecated since version 6.4.0! Use wp_enqueue_admin_bar_bump_styles instead. in /var/www/html/wp-includes/functions.php',
],
};

0 comments on commit 043ce68

Please sign in to comment.