function DateTest::testFormatTimeDiffSince
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Datetime/DateTest.php \Drupal\Tests\Core\Datetime\DateTest::testFormatTimeDiffSince()
- 10 core/tests/Drupal/Tests/Core/Datetime/DateTest.php \Drupal\Tests\Core\Datetime\DateTest::testFormatTimeDiffSince()
- 11.x core/tests/Drupal/Tests/Core/Datetime/DateTest.php \Drupal\Tests\Core\Datetime\DateTest::testFormatTimeDiffSince()
Tests the formatTimeDiffSince method.
@covers ::formatTimeDiffSince
File
-
core/
tests/ Drupal/ Tests/ Core/ Datetime/ DateTest.php, line 216
Class
- DateTest
- @coversDefaultClass \Drupal\Core\Datetime\DateFormatter @group Datetime
Namespace
Drupal\Tests\Core\DatetimeCode
public function testFormatTimeDiffSince() {
$expected = '1 second';
$timestamp = $this->createTimestamp('2013-12-11 10:09:07');
$request_time = $this->createTimestamp('2013-12-11 10:09:08');
$options = [];
// Mocks the formatDiff function of the dateformatter object.
$this->dateFormatterStub
->expects($this->exactly(2))
->method('formatDiff')
->willReturnMap([
[
$request_time,
$timestamp,
$options,
$expected,
],
[
$request_time,
$timestamp,
$options + [
'return_as_object' => TRUE,
],
new FormattedDateDiff('1 second', 1),
],
]);
$request = Request::createFromGlobals();
$request->server
->set('REQUEST_TIME', $request_time);
// Mocks a the request stack getting the current request.
$this->requestStack
->expects($this->any())
->method('getCurrentRequest')
->willReturn($request);
$this->assertEquals($expected, $this->dateFormatterStub
->formatTimeDiffUntil($timestamp, $options));
$options['return_as_object'] = TRUE;
$expected_object = new FormattedDateDiff('1 second', 1);
$this->assertEquals($expected_object, $this->dateFormatterStub
->formatTimeDiffUntil($timestamp, $options));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.