mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Introduces a new get( $token ) method. get_token() would not have made sense and spurred the overall renaming. Public methods are now get, get_all, verify, create, update, destroy, destroy_others, and destroy_all. The protected abstract methods designed for alternative implementations remain the same. props mdawaffe. see #20276. git-svn-id: https://develop.svn.wordpress.org/trunk@29635 602fd350-edb4-49c9-b593-d223f7449a82
53 lines
1.9 KiB
PHP
53 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Test WP_Session_Tokens and WP_User_Meta_Session_Tokens, in wp-includes/session.php
|
|
*
|
|
* @group user
|
|
* @group session
|
|
*/
|
|
class Tests_User_Session extends WP_UnitTestCase {
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
remove_all_filters( 'session_token_manager' );
|
|
$user_id = $this->factory->user->create();
|
|
$this->manager = WP_Session_Tokens::get_instance( $user_id );
|
|
$this->assertInstanceOf( 'WP_Session_Tokens', $this->manager );
|
|
$this->assertInstanceOf( 'WP_User_Meta_Session_Tokens', $this->manager );
|
|
}
|
|
|
|
function test_verify_and_destroy_token() {
|
|
$expiration = time() + DAY_IN_SECONDS;
|
|
$token = $this->manager->create( $expiration );
|
|
$this->assertFalse( $this->manager->verify( 'foo' ) );
|
|
$this->assertTrue( $this->manager->verify( $token ) );
|
|
$this->manager->destroy( $token );
|
|
$this->assertFalse( $this->manager->verify( $token ) );
|
|
}
|
|
|
|
function test_destroy_other_tokens() {
|
|
$expiration = time() + DAY_IN_SECONDS;
|
|
$token_1 = $this->manager->create( $expiration );
|
|
$token_2 = $this->manager->create( $expiration );
|
|
$token_3 = $this->manager->create( $expiration );
|
|
$this->assertTrue( $this->manager->verify( $token_1 ) );
|
|
$this->assertTrue( $this->manager->verify( $token_2 ) );
|
|
$this->assertTrue( $this->manager->verify( $token_3 ) );
|
|
$this->manager->destroy_others( $token_2 );
|
|
$this->assertFalse( $this->manager->verify( $token_1 ) );
|
|
$this->assertTrue( $this->manager->verify( $token_2 ) );
|
|
$this->assertFalse( $this->manager->verify( $token_3 ) );
|
|
}
|
|
|
|
function test_destroy_all_tokens() {
|
|
$expiration = time() + DAY_IN_SECONDS;
|
|
$token_1 = $this->manager->create( $expiration );
|
|
$token_2 = $this->manager->create( $expiration );
|
|
$this->assertTrue( $this->manager->verify( $token_1 ) );
|
|
$this->assertTrue( $this->manager->verify( $token_2 ) );
|
|
$this->manager->destroy_all();
|
|
$this->assertFalse( $this->manager->verify( $token_1 ) );
|
|
$this->assertFalse( $this->manager->verify( $token_2 ) );
|
|
}
|
|
}
|