mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
* Automatically delete objects that we were created during `wpSetUpBeforeClass` - posts, comments, terms (except 1), and user (except 1) * The amount of leftover data between tests was breathtaking - use the new function: `_delete_all_data()` * Commit database transactions for all `TestCase`s, not just those that implement `wpSetUpBeforeClass` and `wpTearDownAfterClass` * The tests run 10-20 seconds faster now See #37699. git-svn-id: https://develop.svn.wordpress.org/trunk@38398 602fd350-edb4-49c9-b593-d223f7449a82
60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group user
|
|
*/
|
|
class Tests_User_WpSetCurrentUser extends WP_UnitTestCase {
|
|
protected static $user_id;
|
|
protected static $user_id2;
|
|
protected static $user_ids = array();
|
|
|
|
public static function wpSetUpBeforeClass( $factory ) {
|
|
self::$user_ids[] = self::$user_id = $factory->user->create();
|
|
self::$user_ids[] = self::$user_id2 = $factory->user->create( array( 'user_login' => 'foo', ) );
|
|
}
|
|
|
|
public function test_set_by_id() {
|
|
$user = wp_set_current_user( self::$user_id );
|
|
|
|
$this->assertSame( self::$user_id, $user->ID );
|
|
$this->assertEquals( $user, wp_get_current_user() );
|
|
$this->assertSame( self::$user_id, get_current_user_id() );
|
|
}
|
|
|
|
public function test_name_should_be_ignored_if_id_is_not_null() {
|
|
$user = wp_set_current_user( self::$user_id, 'foo' );
|
|
|
|
$this->assertSame( self::$user_id, $user->ID );
|
|
$this->assertEquals( $user, wp_get_current_user() );
|
|
$this->assertSame( self::$user_id, get_current_user_id() );
|
|
}
|
|
|
|
public function test_should_set_by_name_if_id_is_null_and_current_user_is_nonempty() {
|
|
wp_set_current_user( self::$user_id );
|
|
$this->assertSame( self::$user_id, get_current_user_id() );
|
|
|
|
$user = wp_set_current_user( null, 'foo' );
|
|
|
|
$this->assertSame( self::$user_id2, $user->ID );
|
|
$this->assertEquals( $user, wp_get_current_user() );
|
|
$this->assertSame( self::$user_id2, get_current_user_id() );
|
|
}
|
|
|
|
/**
|
|
* Test that you can set the current user by the name parameter when the current user is 0.
|
|
*
|
|
* @ticket 20845
|
|
*/
|
|
public function test_should_set_by_name_if_id_is_null() {
|
|
wp_set_current_user( 0 );
|
|
$this->assertSame( 0, get_current_user_id() );
|
|
|
|
$user = wp_set_current_user( null, 'foo' );
|
|
|
|
$this->assertSame( self::$user_id2, $user->ID );
|
|
$this->assertEquals( $user, wp_get_current_user() );
|
|
$this->assertSame( self::$user_id2, get_current_user_id() );
|
|
}
|
|
}
|
|
|