wordpress-develop/tests/phpunit/tests/user/session.php
Gary Pendergast 8f95800d52 Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.



git-svn-id: https://develop.svn.wordpress.org/trunk@42343 602fd350-edb4-49c9-b593-d223f7449a82
2017-11-30 23:09:33 +00:00

53 lines
2.0 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 = self::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 ) );
}
}