View source
<?php
namespace Drupal\Tests\simple_oauth\Functional;
use Drupal\Component\Serialization\Json;
use Drupal\Core\Url;
use Drupal\consumers\Entity\Consumer;
use Drupal\Tests\BrowserTestBase;
use Drupal\user\Entity\Role;
use Drupal\user\RoleInterface;
use Psr\Http\Message\ResponseInterface;
abstract class TokenBearerFunctionalTestBase extends BrowserTestBase {
use RequestHelperTrait;
use SimpleOauthTestTrait;
public static $modules = [
'image',
'node',
'serialization',
'simple_oauth',
'text',
];
protected $url;
protected $client;
protected $user;
protected $clientSecret;
protected $httpClient;
protected $additionalRoles;
protected $scope;
protected function setUp() {
parent::setUp();
$this->url = Url::fromRoute('oauth2_token.token');
$this->httpClient = $this->container
->get('http_client_factory')
->fromOptions([
'base_uri' => $this->baseUrl,
]);
$client_role = Role::create([
'id' => $this
->getRandomGenerator()
->name(8, TRUE),
'label' => $this
->getRandomGenerator()
->word(5),
'is_admin' => FALSE,
]);
$client_role
->save();
$this->additionalRoles = [];
for ($i = 0; $i < mt_rand(1, 3); $i++) {
$role = Role::create([
'id' => $this
->getRandomGenerator()
->name(8, TRUE),
'label' => $this
->getRandomGenerator()
->word(5),
'is_admin' => FALSE,
]);
$role
->save();
$this->additionalRoles[] = $role;
}
$this->clientSecret = $this
->getRandomGenerator()
->string();
$this->client = Consumer::create([
'owner_id' => '',
'label' => $this
->getRandomGenerator()
->name(),
'secret' => $this->clientSecret,
'confidential' => TRUE,
'third_party' => TRUE,
'roles' => [
[
'target_id' => $client_role
->id(),
],
],
]);
$this->client
->save();
$this->user = $this
->drupalCreateUser();
$this
->grantPermissions(Role::load(RoleInterface::ANONYMOUS_ID), [
'access content',
]);
$this
->grantPermissions(Role::load(RoleInterface::AUTHENTICATED_ID), [
'access content',
]);
$this
->setUpKeys();
$num_roles = mt_rand(1, count($this->additionalRoles));
$requested_roles = array_slice($this->additionalRoles, 0, $num_roles);
$scopes = array_map(function (RoleInterface $role) {
return $role
->id();
}, $requested_roles);
$this->scope = implode(' ', $scopes);
drupal_flush_all_caches();
}
protected function assertValidTokenResponse(ResponseInterface $response, $has_refresh = FALSE) {
$this
->assertEquals(200, $response
->getStatusCode());
$parsed_response = Json::decode((string) $response
->getBody());
$this
->assertSame('Bearer', $parsed_response['token_type']);
$expiration = $this
->config('simple_oauth.settings')
->get('access_token_expiration');
$this
->assertLessThanOrEqual($expiration, $parsed_response['expires_in']);
$this
->assertGreaterThanOrEqual($expiration - 10, $parsed_response['expires_in']);
$this
->assertNotEmpty($parsed_response['access_token']);
if ($has_refresh) {
$this
->assertNotEmpty($parsed_response['refresh_token']);
}
else {
$this
->assertFalse(isset($parsed_response['refresh_token']));
}
return $parsed_response;
}
}