Wordpress/tests/phpunit/tests/avatar.php
Sergey Biryukov 164b22cf6a Tests: First pass at using assertSame() instead of assertEquals() in most of the unit tests.
This ensures that not only the return values match the expected results, but also that their type is the same.

Going forward, stricter type checking by using `assertSame()` should generally be preferred to `assertEquals()` where appropriate, to make the tests more reliable.

Props johnbillion, jrf, SergeyBiryukov.
See #38266.

git-svn-id: https://develop.svn.wordpress.org/trunk@48937 602fd350-edb4-49c9-b593-d223f7449a82
2020-09-02 00:35:36 +00:00

284 lines
7.9 KiB
PHP

<?php
/**
* Test avatar related functions
*
* @group avatar
*/
class Tests_Avatar extends WP_UnitTestCase {
/**
* @ticket 21195
*/
public function test_get_avatar_url_gravatar_url() {
$url = get_avatar_url( 1 );
$this->assertSame( preg_match( '|^http?://[0-9]+.gravatar.com/avatar/[0-9a-f]{32}\?|', $url ), 1 );
}
/**
* @ticket 21195
*/
public function test_get_avatar_url_size() {
$url = get_avatar_url( 1 );
$this->assertSame( preg_match( '|\?.*s=96|', $url ), 1 );
$args = array( 'size' => 100 );
$url = get_avatar_url( 1, $args );
$this->assertSame( preg_match( '|\?.*s=100|', $url ), 1 );
}
/**
* @ticket 21195
*/
public function test_get_avatar_url_default() {
$url = get_avatar_url( 1 );
$this->assertSame( preg_match( '|\?.*d=mm|', $url ), 1 );
$args = array( 'default' => 'wavatar' );
$url = get_avatar_url( 1, $args );
$this->assertSame( preg_match( '|\?.*d=wavatar|', $url ), 1 );
$this->assertSame( preg_match( '|\?.*f=y|', $url ), 0 );
$args = array( 'force_default' => true );
$url = get_avatar_url( 1, $args );
$this->assertSame( preg_match( '|\?.*f=y|', $url ), 1 );
}
/**
* @ticket 21195
*/
public function test_get_avatar_url_rating() {
$url = get_avatar_url( 1 );
$this->assertSame( preg_match( '|\?.*r=g|', $url ), 1 );
$args = array( 'rating' => 'M' );
$url = get_avatar_url( 1, $args );
$this->assertSame( preg_match( '|\?.*r=m|', $url ), 1 );
}
/**
* @ticket 21195
*/
public function test_get_avatar_url_scheme() {
$url = get_avatar_url( 1 );
$this->assertSame( preg_match( '|^http://|', $url ), 1 );
$args = array( 'scheme' => 'https' );
$url = get_avatar_url( 1, $args );
$this->assertSame( preg_match( '|^https://|', $url ), 1 );
$args = array( 'scheme' => 'lolcat' );
$url = get_avatar_url( 1, $args );
$this->assertSame( preg_match( '|^lolcat://|', $url ), 0 );
}
/**
* @ticket 21195
*/
public function test_get_avatar_url_user() {
$url = get_avatar_url( 1 );
$url2 = get_avatar_url( WP_TESTS_EMAIL );
$this->assertSame( $url, $url2 );
$url2 = get_avatar_url( md5( WP_TESTS_EMAIL ) . '@md5.gravatar.com' );
$this->assertSame( $url, $url2 );
$user = get_user_by( 'id', 1 );
$url2 = get_avatar_url( $user );
$this->assertSame( $url, $url2 );
$post_id = self::factory()->post->create( array( 'post_author' => 1 ) );
$post = get_post( $post_id );
$url2 = get_avatar_url( $post );
$this->assertSame( $url, $url2 );
$comment_id = self::factory()->comment->create(
array(
'comment_post_ID' => $post_id,
'user_id' => 1,
)
);
$comment = get_comment( $comment_id );
$url2 = get_avatar_url( $comment );
$this->assertSame( $url, $url2 );
}
protected $fake_url;
/**
* @ticket 21195
*/
public function test_pre_get_avatar_url_filter() {
$this->fake_url = 'haha wat';
add_filter( 'pre_get_avatar_data', array( $this, 'pre_get_avatar_url_filter' ), 10, 1 );
$url = get_avatar_url( 1 );
remove_filter( 'pre_get_avatar_data', array( $this, 'pre_get_avatar_url_filter' ), 10 );
$this->assertSame( $url, $this->fake_url );
}
public function pre_get_avatar_url_filter( $args ) {
$args['url'] = $this->fake_url;
return $args;
}
/**
* @ticket 21195
*/
public function test_get_avatar_url_filter() {
$this->fake_url = 'omg lol';
add_filter( 'get_avatar_url', array( $this, 'get_avatar_url_filter' ), 10, 1 );
$url = get_avatar_url( 1 );
remove_filter( 'get_avatar_url', array( $this, 'get_avatar_url_filter' ), 10 );
$this->assertSame( $url, $this->fake_url );
}
public function get_avatar_url_filter( $url ) {
return $this->fake_url;
}
/**
* @ticket 21195
*/
public function test_get_avatar_comment_types_filter() {
$url = get_avatar_url( 1 );
$post_id = self::factory()->post->create( array( 'post_author' => 1 ) );
$comment_id = self::factory()->comment->create(
array(
'comment_post_ID' => $post_id,
'user_id' => 1,
'comment_type' => 'pingback',
)
);
$comment = get_comment( $comment_id );
$url2 = get_avatar_url( $comment );
$this->assertFalse( $url2 );
add_filter( 'get_avatar_comment_types', array( $this, 'get_avatar_comment_types_filter' ), 10, 1 );
$url2 = get_avatar_url( $comment );
remove_filter( 'get_avatar_comment_types', array( $this, 'get_avatar_comment_types_filter' ), 10 );
$this->assertSame( $url, $url2 );
}
public function get_avatar_comment_types_filter( $comment_types ) {
$comment_types[] = 'pingback';
return $comment_types;
}
public function test_get_avatar() {
$img = get_avatar( 1 );
$this->assertSame( preg_match( "|^<img alt='[^']*' src='[^']*' srcset='[^']*' class='[^']*' height='[^']*' width='[^']*' loading='lazy'/>$|", $img ), 1 );
}
public function test_get_avatar_size() {
$size = '100';
$img = get_avatar( 1, $size );
$this->assertSame( preg_match( "|^<img .*height='$size'.*width='$size'|", $img ), 1 );
}
public function test_get_avatar_alt() {
$alt = 'Mr Hyde';
$img = get_avatar( 1, 96, '', $alt );
$this->assertSame( preg_match( "|^<img alt='$alt'|", $img ), 1 );
}
public function test_get_avatar_class() {
$class = 'first';
$img = get_avatar( 1, 96, '', '', array( 'class' => $class ) );
$this->assertSame( preg_match( "|^<img .*class='[^']*{$class}[^']*'|", $img ), 1 );
}
public function test_get_avatar_default_class() {
$img = get_avatar( 1, 96, '', '', array( 'force_default' => true ) );
$this->assertSame( preg_match( "|^<img .*class='[^']*avatar-default[^']*'|", $img ), 1 );
}
public function test_get_avatar_force_display() {
$old = get_option( 'show_avatars' );
update_option( 'show_avatars', false );
$this->assertFalse( get_avatar( 1 ) );
$this->assertNotEmpty( get_avatar( 1, 96, '', '', array( 'force_display' => true ) ) );
update_option( 'show_avatars', $old );
}
protected $fake_img;
/**
* @ticket 21195
*/
public function test_pre_get_avatar_filter() {
$this->fake_img = 'YOU TOO?!';
add_filter( 'pre_get_avatar', array( $this, 'pre_get_avatar_filter' ), 10, 1 );
$img = get_avatar( 1 );
remove_filter( 'pre_get_avatar', array( $this, 'pre_get_avatar_filter' ), 10 );
$this->assertSame( $img, $this->fake_img );
}
public function pre_get_avatar_filter( $img ) {
return $this->fake_img;
}
/**
* @ticket 21195
*/
public function test_get_avatar_filter() {
$this->fake_url = 'YA RLY';
add_filter( 'get_avatar', array( $this, 'get_avatar_filter' ), 10, 1 );
$img = get_avatar( 1 );
remove_filter( 'get_avatar', array( $this, 'get_avatar_filter' ), 10 );
$this->assertSame( $img, $this->fake_url );
}
public function get_avatar_filter( $img ) {
return $this->fake_url;
}
/**
* The `get_avatar_data()` function should return gravatar url when comment type allowed to retrieve avatars.
*
* @ticket 44033
*/
public function test_get_avatar_data_should_return_gravatar_url_when_input_avatar_comment_type() {
$comment_type = 'comment';
$comment = self::factory()->comment->create_and_get(
array(
'comment_author_email' => 'commenter@example.com',
'comment_type' => $comment_type,
)
);
$actual_data = get_avatar_data( $comment );
$this->assertTrue( is_avatar_comment_type( $comment_type ) );
$this->assertRegexp( '|^http?://[0-9]+.gravatar.com/avatar/[0-9a-f]{32}\?|', $actual_data['url'] );
}
/**
* The `get_avatar_data()` function should return invalid url when comment type not allowed to retrieve avatars.
*
* @ticket 44033
*/
public function test_get_avatar_data_should_return_invalid_url_when_input_not_avatar_comment_type() {
$comment_type = 'review';
$comment = self::factory()->comment->create_and_get(
array(
'comment_author_email' => 'commenter@example.com',
'comment_type' => $comment_type,
)
);
$actual_data = get_avatar_data( $comment );
$this->assertFalse( is_avatar_comment_type( $comment_type ) );
$this->assertFalse( $actual_data['url'] );
}
}