mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
New functions: * get_adjacent_image_link() * get_next_image_link() * get_previous_image_link() Fixes #45708. Props flixos90, DrewAPicture, mor10, antpb, hellofromTonya, whyisjake. git-svn-id: https://develop.svn.wordpress.org/trunk@51122 602fd350-edb4-49c9-b593-d223f7449a82
58 lines
1.9 KiB
PHP
58 lines
1.9 KiB
PHP
<?php
|
|
|
|
require_once __DIR__ . '/testcase-adjacent-image-link.php';
|
|
|
|
/**
|
|
* @group media
|
|
* @covers ::get_previous_image_link
|
|
*/
|
|
class Tests_Media_GetPreviousImageLink extends WP_Test_Adjacent_Image_Link_TestCase {
|
|
protected $default_args = array(
|
|
'size' => 'thumbnail',
|
|
'text' => false,
|
|
);
|
|
|
|
/**
|
|
* @ticket 45708
|
|
*
|
|
* @dataProvider data_get_previous_image_link
|
|
*/
|
|
function test_get_previous_image_link( $current_attachment_index, $expected_attachment_index = 0, $expected, array $args = array() ) {
|
|
list( $expected, $args ) = $this->setup_test_scenario( $current_attachment_index, $expected_attachment_index, $expected, $args );
|
|
|
|
$actual = get_previous_image_link( ...$args );
|
|
|
|
$this->assertSame( $expected, $actual );
|
|
}
|
|
|
|
public function data_get_previous_image_link() {
|
|
return array(
|
|
// Happy paths.
|
|
'when has previous link' => array(
|
|
'current_attachment_index' => 3,
|
|
'expected_attachment_index' => 2,
|
|
'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'><img width="1" height="1" src="http://example.org/wp-content/uploads/image2.jpg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /></a>',
|
|
),
|
|
'with text when has previous link' => array(
|
|
'current_attachment_index' => 3,
|
|
'expected_attachment_index' => 2,
|
|
'expected' => '<a href=\'http://example.org/?attachment_id=%%ID%%\'>Some text</a>',
|
|
'args' => array( 'text' => 'Some text' ),
|
|
),
|
|
|
|
// Unhappy paths.
|
|
'when no previous link' => array(
|
|
'current_attachment_index' => 1,
|
|
'expected_attachment_index' => 0,
|
|
'expected' => '',
|
|
),
|
|
'with text when no previous link' => array(
|
|
'current_attachment_index' => 1,
|
|
'expected_attachment_index' => 0,
|
|
'expected' => '',
|
|
'args' => array( 'text' => 'Some text' ),
|
|
),
|
|
);
|
|
}
|
|
}
|