Make WordPress Core

Opened 4 months ago

Last modified 2 weeks ago

#60798 reopened defect (bug)

Investigate potentially failing Imagick PDF alpha channel test

Reported by: swissspidy's profile swissspidy Owned by: antpb's profile antpb
Milestone: 6.7 Priority: normal
Severity: normal Version:
Component: Media Keywords: dev-feedback has-patch
Focuses: Cc:

Description (last modified by swissspidy)

The test \Tests_Image_Editor_Imagick::test_remove_pdf_alpha_channel_should_remove_the_alpha_channel_in_preview() was introduced in #39216 / [56271].

On some hosting providers, this test appears to be failing with errors such as this:

Tests_Image_Editor_Imagick::test_remove_pdf_alpha_channel_should_remove_the_alpha_channel_in_preview
The intermediate size could not be retrieved.
Failed asserting that false is of type "array".

/tmp/wp-test-runner/tests/phpunit/tests/image/editorImagick.php:680

Examples:

https://make.wordpress.org/hosting/test-results/r57849/wpsabot-r57849/
https://make.wordpress.org/hosting/test-results/r57848/wetopibot-r57848/

We should investigate this failure to see whether it's an issue in core or with the hosting provider.

The test mentions "Ghostscript version >= 9.14", so maybe it's just a matter of skipping the test if the installed Ghostscript version (gs --version I think) is older than that.

Attachments (2)

60798.patch (872 bytes) - added by antpb 4 months ago.
60798-2.patch (872 bytes) - added by antpb 4 months ago.

Download all attachments as: .zip

Change History (14)

#1 @swissspidy
4 months ago

  • Description modified (diff)

cc @antpb @javiercasares

This ticket was mentioned in Slack in #core-media by antpb. View the logs.


4 months ago

#3 @swissspidy
4 months ago

tl;dr from the above Slack discussion:

\WP_Image_Editor_Imagick::remove_pdf_alpha_channel is currently checking the ImageMagick version, but it looks like we need to check the Imagick version via phpversion( 'imagick' ).

So maybe even as simple as version_compare( phpversion( 'imagick' ), '9.14', '>=' ) would work.

@antpb
4 months ago

#4 @antpb
4 months ago

  • Keywords has-patch added
  • Milestone changed from Awaiting Review to 6.6

I've attached a patch. I'm pretty certain the version check is checking ImageMagick and not the correct imagick version. From the php docs it says the function being used currently only returns the ImageMagick version: https://www.php.net/manual/en/imagick.getversion.php

Imagick::getVersion — Returns the ImageMagick API version

We should just directly do the phpversion() call to the module to get the version. We could use some testing from hosts seeing the test errors.

Prior art also: https://github.com/WordPress/wordpress-develop/blob/4f9b520d3e2531c9ffb9ee5c06a2e2a7e34f9c52/src/wp-admin/includes/class-wp-debug-data.php#L540

For manual testing to ensure this patch doesnt result in a regression please repeat the report here to ensure it is still fixed with this new version check: https://core.trac.wordpress.org/ticket/39216

Last edited 4 months ago by antpb (previous) (diff)

This ticket was mentioned in Slack in #core-media by swissspidy. View the logs.


4 months ago

@antpb
4 months ago

#6 @joedolson
4 months ago

  • Keywords commit added

This looks good to me; it'll definitely help to be checking the right package! ;)

#7 @swissspidy
3 months ago

  • Owner set to antpb
  • Status changed from new to assigned

This ticket was mentioned in Slack in #core-media by antpb. View the logs.


5 weeks ago

#9 @antpb
4 weeks ago

  • Resolution set to fixed
  • Status changed from assigned to closed

In 58415:

Media: Use version_compare() for Imagick version check when removing alpha.

Previously remove_pdf_alpha_channel() used Imagick::getVersion() to validate the environment is capable of handling alpha. This was the incorrect function to use to check the module version as it will only provide the ImageMagick API version. This patch adjusts to instead use phpversion() as this is the correct method to get the Imagick version needed to determine alpha compatibility. This fixes a number of host tests that have been correctly failing on subsets of environments. Serendipidously, sometimes the API version was high enough to avoid shining light on this problem.

Props swissspidy, joedolson, antpb.
Fixes #60798.

#10 @antpb
4 weeks ago

In 58417:

Media: Revert r58415 Use version_compare() for Imagick version check when removing alpha.
This commit is a clean revert of r58415 as tests seem to now be failing with this change. Likely the test needs an update as well to accomodate the new successful version check.
Follow-up to [60798].
Props jorbin, hellofromTonya.
See #60798.

#11 @SergeyBiryukov
4 weeks ago

  • Resolution fixed deleted
  • Status changed from closed to reopened

#12 @oglekler
2 weeks ago

  • Keywords commit removed
  • Milestone changed from 6.6 to 6.7

Moving this ticket to the next milestone due to RC1 coming.

Note: See TracTickets for help on using tickets.