mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods. Adds a `private` visibility to helper methods within test classes. Renames callbacks and helpers that previously started with a `_` prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit. Props costdev, jrf, hellofromTonya. Fixes #54177. git-svn-id: https://develop.svn.wordpress.org/trunk@52010 602fd350-edb4-49c9-b593-d223f7449a82
67 lines
1.3 KiB
PHP
67 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Tests for the behavior of `wp_auth_check()`
|
|
*
|
|
* @group functions.php
|
|
* @covers ::is_user_logged_in
|
|
* @covers ::wp_auth_check
|
|
*/
|
|
class Tests_Functions_wpAuthCheck extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Run with user not logged in.
|
|
*
|
|
* @ticket 41860
|
|
*/
|
|
public function test_wp_auth_check_user_not_logged_in() {
|
|
$expected = array(
|
|
'wp-auth-check' => false,
|
|
);
|
|
|
|
$this->assertFalse( is_user_logged_in() );
|
|
$this->assertSame( $expected, wp_auth_check( array() ) );
|
|
}
|
|
|
|
/**
|
|
* Run with user logged in.
|
|
*
|
|
* @ticket 41860
|
|
*/
|
|
public function test_wp_auth_check_user_logged_in() {
|
|
// Log user in.
|
|
wp_set_current_user( 1 );
|
|
|
|
$expected = array(
|
|
'wp-auth-check' => true,
|
|
);
|
|
|
|
$this->assertTrue( is_user_logged_in() );
|
|
$this->assertSame( $expected, wp_auth_check( array() ) );
|
|
}
|
|
|
|
/**
|
|
* Run with user logged in but with expired state.
|
|
*
|
|
* @ticket 41860
|
|
*/
|
|
public function test_wp_auth_check_user_logged_in_login_grace_period_set() {
|
|
// Log user in.
|
|
wp_set_current_user( 1 );
|
|
|
|
$GLOBALS['login_grace_period'] = 1;
|
|
|
|
$expected = array(
|
|
'wp-auth-check' => false,
|
|
);
|
|
$actual = wp_auth_check( array() );
|
|
$logged_in = is_user_logged_in();
|
|
|
|
// Leave the global state unchanged.
|
|
unset( $GLOBALS['login_grace_period'] );
|
|
|
|
$this->assertTrue( $logged_in );
|
|
$this->assertSame( $expected, $actual );
|
|
}
|
|
}
|