View source
<?php
namespace Drupal\Tests\lti_tool_provider\Functional;
use Behat\Mink\Driver\BrowserKitDriver;
use Behat\Mink\Driver\GoutteDriver;
use Drupal\Core\Entity\EntityStorageException;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Url;
use Drupal\lti_tool_provider\Entity\LtiToolProviderConsumer;
use Drupal\Tests\BrowserTestBase;
use Drupal\user\Entity\User;
use Drupal\user\UserStorageInterface;
use Exception;
use GuzzleHttp\RequestOptions;
use OAuth;
use OAuthException;
use Psr\Http\Message\ResponseInterface;
class LTIAuthTest extends BrowserTestBase {
public static $modules = [
'lti_tool_provider',
];
public $userStorage;
public $consumerStorage;
public $nonceStorage;
public $consumer;
protected $defaultTheme = 'stark';
public function testMissingOauthSignature() {
$oauth = new OAuth($this->consumer
->get('consumer_key')->value, $this->consumer
->get('consumer_secret')->value, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$timestamp = time();
$nonce = md5($timestamp);
$oauth
->setTimestamp($timestamp);
$oauth
->setNonce($nonce);
$url = Url::fromRoute('lti_tool_provider.lti');
$params = [
'oauth_version' => '1.0',
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_consumer_key' => 'consumer_key',
'oauth_timestamp' => $timestamp,
'oauth_nonce' => $nonce,
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'resource_link_id' => 'resource_link_id',
'lis_person_contact_email_primary' => '',
];
$response = $this
->request('POST', $url, [
'form_params' => $params,
]);
$ids = $this->userStorage
->getQuery()
->condition('name', 'ltiuser', '=')
->condition('mail', 'ltiuser@invalid', '=')
->execute();
$this
->assertEquals(403, $response
->getStatusCode());
$this
->assertCount(0, $ids);
}
protected function request(string $method, Url $url, array $request_options) : ResponseInterface {
$request_options[RequestOptions::HTTP_ERRORS] = FALSE;
$request_options = $this
->decorateWithXdebugCookie($request_options);
$driver = $this
->getSession()
->getDriver();
if ($driver instanceof GoutteDriver) {
return $driver
->getClient()
->getClient()
->request($method, $url
->setAbsolute(TRUE)
->toString(), $request_options);
}
throw new Exception('Goutte driver missing.');
}
protected function decorateWithXdebugCookie(array $request_options) : array {
$session = $this
->getSession();
$driver = $session
->getDriver();
if ($driver instanceof BrowserKitDriver) {
$client = $driver
->getClient();
foreach ($client
->getCookieJar()
->all() as $cookie) {
if (isset($request_options[RequestOptions::HEADERS]['Cookie'])) {
$request_options[RequestOptions::HEADERS]['Cookie'] .= '; ' . $cookie
->getName() . '=' . $cookie
->getValue();
}
else {
$request_options[RequestOptions::HEADERS]['Cookie'] = $cookie
->getName() . '=' . $cookie
->getValue();
}
}
}
return $request_options;
}
public function testOutdatedTimestamp() {
$oauth = new OAuth($this->consumer
->get('consumer_key')->value, $this->consumer
->get('consumer_secret')->value, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$timestamp = time() - LTI_TOOL_PROVIDER_NONCE_INTERVAL - 300;
$nonce = md5($timestamp);
$oauth
->setTimestamp($timestamp);
$oauth
->setNonce($nonce);
$url = Url::fromRoute('lti_tool_provider.lti');
$params = [
'oauth_version' => '1.0',
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_consumer_key' => 'consumer_key',
'oauth_timestamp' => $timestamp,
'oauth_nonce' => $nonce,
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'resource_link_id' => 'resource_link_id',
'lis_person_contact_email_primary' => '',
];
$signature = $oauth
->generateSignature('POST', $url
->setAbsolute()
->toString(), $params);
$params['oauth_signature'] = $signature;
$response = $this
->request('POST', $url, [
'form_params' => $params,
]);
$ids = $this->userStorage
->getQuery()
->condition('name', 'ltiuser', '=')
->condition('mail', 'ltiuser@invalid', '=')
->execute();
$this
->assertEquals(403, $response
->getStatusCode());
$this
->assertCount(0, $ids);
}
public function testDuplicateNonce() {
$oauth = new OAuth($this->consumer
->get('consumer_key')->value, $this->consumer
->get('consumer_secret')->value, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$timestamp = time();
$nonce = md5($timestamp);
$oauth
->setTimestamp($timestamp);
$oauth
->setNonce($nonce);
$this->nonceStorage
->create([
'nonce' => $nonce,
'consumer_key' => $this->consumer
->get('consumer_key')->value,
'timestamp' => $timestamp,
])
->save();
$url = Url::fromRoute('lti_tool_provider.lti');
$params = [
'oauth_version' => '1.0',
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_consumer_key' => 'consumer_key',
'oauth_timestamp' => $timestamp,
'oauth_nonce' => $nonce,
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'resource_link_id' => 'resource_link_id',
'lis_person_contact_email_primary' => '',
];
$signature = $oauth
->generateSignature('POST', $url
->setAbsolute()
->toString(), $params);
$params['oauth_signature'] = $signature;
$response = $this
->request('POST', $url, [
'form_params' => $params,
]);
$ids = $this->userStorage
->getQuery()
->condition('name', 'ltiuser', '=')
->condition('mail', 'ltiuser@invalid', '=')
->execute();
$this
->assertEquals(403, $response
->getStatusCode());
$this
->assertCount(0, $ids);
}
public function testSuccessfulAuthenticationLtiUser() {
$oauth = new OAuth($this->consumer
->get('consumer_key')->value, $this->consumer
->get('consumer_secret')->value, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$timestamp = time();
$nonce = md5($timestamp);
$oauth
->setTimestamp($timestamp);
$oauth
->setNonce($nonce);
$url = Url::fromRoute('lti_tool_provider.lti');
$params = [
'oauth_version' => '1.0',
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_consumer_key' => 'consumer_key',
'oauth_timestamp' => $timestamp,
'oauth_nonce' => $nonce,
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'resource_link_id' => 'resource_link_id',
'lis_person_contact_email_primary' => '',
];
$signature = $oauth
->generateSignature('POST', $url
->setAbsolute()
->toString(), $params);
$params['oauth_signature'] = $signature;
$response = $this
->request('POST', $url, [
'form_params' => $params,
]);
$ids = $this->userStorage
->getQuery()
->condition('name', 'ltiuser', '=')
->condition('mail', 'ltiuser@invalid', '=')
->execute();
$this
->assertEquals(200, $response
->getStatusCode());
$this
->assertCount(1, $ids);
}
public function testSuccessfulAuthenticationNewUser() {
$oauth = new OAuth($this->consumer
->get('consumer_key')->value, $this->consumer
->get('consumer_secret')->value, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$timestamp = time();
$nonce = md5($timestamp);
$oauth
->setTimestamp($timestamp);
$oauth
->setNonce($nonce);
$url = Url::fromRoute('lti_tool_provider.lti');
$params = [
'oauth_version' => '1.0',
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_consumer_key' => 'consumer_key',
'oauth_timestamp' => $timestamp,
'oauth_nonce' => $nonce,
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'resource_link_id' => 'resource_link_id',
'lis_person_contact_email_primary' => 'user@lms.edu',
];
$signature = $oauth
->generateSignature('POST', $url
->setAbsolute()
->toString(), $params);
$params['oauth_signature'] = $signature;
$response = $this
->request('POST', $url, [
'form_params' => $params,
]);
$ids = $this->userStorage
->getQuery()
->condition('name', 'user@lms.edu', '=')
->condition('mail', 'user@lms.edu', '=')
->execute();
$this
->assertEquals(200, $response
->getStatusCode());
$this
->assertCount(1, $ids);
}
public function testSuccessfulAuthenticationExistingUser() {
$oauth = new OAuth($this->consumer
->get('consumer_key')->value, $this->consumer
->get('consumer_secret')->value, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$timestamp = time();
$nonce = md5($timestamp);
$oauth
->setTimestamp($timestamp);
$oauth
->setNonce($nonce);
$mail = 'user@lms.edu';
$user = User::create();
if ($user instanceof User) {
$user
->setUsername($mail);
$user
->setEmail($mail);
$user
->setPassword(user_password());
$user
->enforceIsNew();
$user
->activate();
}
$user
->save();
$url = Url::fromRoute('lti_tool_provider.lti');
$params = [
'oauth_version' => '1.0',
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_consumer_key' => 'consumer_key',
'oauth_timestamp' => $timestamp,
'oauth_nonce' => $nonce,
'lti_message_type' => 'basic-lti-launch-request',
'lti_version' => 'LTI-1p0',
'resource_link_id' => 'resource_link_id',
'lis_person_contact_email_primary' => $mail,
];
$signature = $oauth
->generateSignature('POST', $url
->setAbsolute()
->toString(), $params);
$params['oauth_signature'] = $signature;
$response = $this
->request('POST', $url, [
'form_params' => $params,
]);
$ids = $this->userStorage
->getQuery()
->condition('name', $mail, '=')
->condition('mail', $mail, '=')
->execute();
$this
->assertEquals(200, $response
->getStatusCode());
$this
->assertCount(1, $ids);
}
protected function setUp() : void {
parent::setUp();
if (!class_exists('\\Oauth')) {
$this
->markTestSkipped('Missing OAuth PECL extension, skipping test.');
}
$this->userStorage = $this->container
->get('entity_type.manager')
->getStorage('user');
$this->consumerStorage = $this->container
->get('entity_type.manager')
->getStorage('lti_tool_provider_consumer');
$this->nonceStorage = $this->container
->get('entity_type.manager')
->getStorage('lti_tool_provider_nonce');
$this->consumer = $this->consumerStorage
->create([
'consumer' => 'consumer',
'consumer_key' => 'consumer_key',
'consumer_secret' => 'consumer_secret',
'name' => 'lis_person_contact_email_primary',
'mail' => 'lis_person_contact_email_primary',
]);
$this->consumer
->save();
}
}