wordpress-develop/tests/phpunit/tests/user/wpAuthenticateSpamCheck.php
Sergey Biryukov 32cbb46a21 Tests: Rename classes in phpunit/tests/user/ per the naming conventions.
https://make.wordpress.org/core/handbook/testing/automated-testing/writing-phpunit-tests/#naming-and-organization

Follow-up to [47780], [48911], [49327], [50291], [50292], [50342], [50452], [50453], [50456], [50967], [50968], [50969], [51491], [51492], [51493], [51623], [51639], [51646], [51650], [51651], [51860], [52264], [52265].

See #55652.

git-svn-id: https://develop.svn.wordpress.org/trunk@53489 602fd350-edb4-49c9-b593-d223f7449a82
2022-06-11 15:48:31 +00:00

51 lines
1.3 KiB
PHP

<?php
/**
* @group user
*/
class Tests_User_wpAuthenticateSpamCheck extends WP_UnitTestCase {
/**
* @group ms-excluded
*/
public function test_wp_authenticate_spam_check_returns_user_when_single_site() {
$user_id = self::factory()->user->create( array( 'role' => 'contributor' ) );
$user = new WP_User( $user_id );
$actual_user = wp_authenticate_spam_check( $user );
wp_delete_user( $user_id );
$this->assertSame( $user->user_login, $actual_user->user_login );
}
/**
* @group ms-required
*/
public function test_wp_authenticate_spam_check_returns_user_when_not_flagged() {
$user_id = self::factory()->user->create( array( 'role' => 'contributor' ) );
$user = new WP_User( $user_id );
$actual_user = wp_authenticate_spam_check( $user );
wpmu_delete_user( $user_id );
$this->assertSame( $user->user_login, $actual_user->user_login );
}
/**
* @group ms-required
*/
public function test_wp_authenticate_spam_check_returns_wp_error_when_flagged() {
$user_id = self::factory()->user->create( array( 'role' => 'contributor' ) );
wp_update_user(
array(
'ID' => $user_id,
'spam' => '1',
)
);
$user = new WP_User( $user_id );
$actual_user = wp_authenticate_spam_check( $user );
wpmu_delete_user( $user_id );
$this->assertInstanceOf( 'WP_Error', $actual_user );
}
}