You are here

public function LTIToolProviderTest::testTimestampNonceHandlerAlmostTooOld in LTI Tool Provider 2.x

Same name and namespace in other branches
  1. 8 tests/src/Unit/LTIToolProviderTest.php \Drupal\Tests\lti_tool_provider\Unit\LTIToolProviderTest::testTimestampNonceHandlerAlmostTooOld()

Tests a nonce timestamp that is almost too old.

@covers ::timestampNonceHandler @covers ::__construct

File

tests/src/Unit/LTIToolProviderTest.php, line 259

Class

LTIToolProviderTest
LTIToolProvider unit tests.

Namespace

Drupal\Tests\lti_tool_provider\Unit

Code

public function testTimestampNonceHandlerAlmostTooOld() {
  $provider = $this
    ->getNonceSpecificLtiToolProvider();
  $this->provider->consumer_key = '';
  $this->provider->nonce = uniqid();
  $this->provider->timestamp = time() - LTI_TOOL_PROVIDER_NONCE_INTERVAL;
  $expected = OAUTH_OK;
  $actual = $provider
    ->timestampNonceHandler($this->provider);
  $this
    ->assertEquals($expected, $actual);
}