public function OAuth2ServerTest::testPasswordGrantType in OAuth2 Server 8
Same name and namespace in other branches
- 2.0.x tests/src/Functional/OAuth2ServerTest.php \Drupal\Tests\oauth2_server\Functional\OAuth2ServerTest::testPasswordGrantType()
Tests the "User credentials" grant type.
File
- tests/
src/ Functional/ OAuth2ServerTest.php, line 301
Class
- OAuth2ServerTest
- The OAuth2 Server admin test case.
Namespace
Drupal\Tests\oauth2_server\FunctionalCode
public function testPasswordGrantType() {
$response = $this
->passwordGrantRequest();
$this
->assertEqual($response
->getStatusCode(), 200, 'The token request completed successfully');
$payload = json_decode($response
->getBody());
$this
->assertTokenResponse($payload);
}