mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-27 01:02:12 +05:30
Removed some tests that randomly fail
This commit is contained in:
parent
2adefdf4c8
commit
619d755008
@ -386,7 +386,6 @@ class Authorization_Server_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_issueAccessToken()
|
public function test_issueAccessToken()
|
||||||
@ -425,7 +424,6 @@ class Authorization_Server_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_issueAccessToken_customExpiresIn()
|
public function test_issueAccessToken_customExpiresIn()
|
||||||
@ -507,7 +505,6 @@ class Authorization_Server_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown() {
|
public function tearDown() {
|
||||||
|
@ -290,7 +290,6 @@ class Client_Credentials_Grant_Test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_issueAccessToken_clientCredentialsGrant()
|
function test_issueAccessToken_clientCredentialsGrant()
|
||||||
@ -328,7 +327,6 @@ class Client_Credentials_Grant_Test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_issueAccessToken_clientCredentialsGrant_customExpiresIn()
|
function test_issueAccessToken_clientCredentialsGrant_customExpiresIn()
|
||||||
@ -408,7 +406,6 @@ class Client_Credentials_Grant_Test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -471,7 +471,6 @@ class Password_Grant_Test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_issueAccessToken_passwordGrant()
|
function test_issueAccessToken_passwordGrant()
|
||||||
@ -516,7 +515,6 @@ class Password_Grant_Test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_issueAccessToken_passwordGrant_customExpiresIn()
|
function test_issueAccessToken_passwordGrant_customExpiresIn()
|
||||||
@ -611,7 +609,5 @@ class Password_Grant_Test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('refresh_token', $v);
|
$this->assertArrayHasKey('refresh_token', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -67,7 +67,6 @@ class Refresh_Token_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('refresh_token', $v);
|
$this->assertArrayHasKey('refresh_token', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -208,7 +207,6 @@ class Refresh_Token_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_issueAccessToken_refreshTokenGrant()
|
public function test_issueAccessToken_refreshTokenGrant()
|
||||||
@ -247,7 +245,6 @@ class Refresh_Token_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('expires_in', $v);
|
$this->assertArrayHasKey('expires_in', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_issueAccessToken_refreshTokenGrant_rotateTokens()
|
public function test_issueAccessToken_refreshTokenGrant_rotateTokens()
|
||||||
@ -290,7 +287,6 @@ class Refresh_Token_test extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertArrayHasKey('refresh_token', $v);
|
$this->assertArrayHasKey('refresh_token', $v);
|
||||||
|
|
||||||
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
$this->assertEquals($a->getAccessTokenTTL(), $v['expires_in']);
|
||||||
$this->assertEquals(time()+$a->getAccessTokenTTL(), $v['expires']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_issueAccessToken_refreshTokenGrant_customExpiresIn()
|
public function test_issueAccessToken_refreshTokenGrant_customExpiresIn()
|
||||||
|
Loading…
Reference in New Issue
Block a user