StatisticsTokenReplaceTest.php
Same filename in other branches
Namespace
Drupal\Tests\statistics\FunctionalFile
-
core/
modules/ statistics/ tests/ src/ Functional/ StatisticsTokenReplaceTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\statistics\Functional;
/**
* Tests statistics token replacement.
*
* @group statistics
* @group legacy
*/
class StatisticsTokenReplaceTest extends StatisticsTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Creates a node, then tests the statistics tokens generated from it.
*/
public function testStatisticsTokenReplacement() : void {
$language_interface = \Drupal::languageManager()->getCurrentLanguage();
// Create user and node.
$user = $this->drupalCreateUser([
'create page content',
]);
$this->drupalLogin($user);
$node = $this->drupalCreateNode([
'type' => 'page',
'uid' => $user->id(),
]);
/** @var \Drupal\Core\Datetime\DateFormatterInterface $date_formatter */
$date_formatter = $this->container
->get('date.formatter');
$request_time = \Drupal::time()->getRequestTime();
// Generate and test tokens.
$tests = [];
$tests['[node:total-count]'] = 0;
$tests['[node:day-count]'] = 0;
$tests['[node:last-view]'] = 'never';
$tests['[node:last-view:short]'] = $date_formatter->format($request_time, 'short');
foreach ($tests as $input => $expected) {
$output = \Drupal::token()->replace($input, [
'node' => $node,
], [
'langcode' => $language_interface->getId(),
]);
$this->assertEquals($expected, $output, "Statistics token {$input} replaced.");
}
// Hit the node.
$this->drupalGet('node/' . $node->id());
// Manually calling statistics.php, simulating ajax behavior.
$nid = $node->id();
$post = http_build_query([
'nid' => $nid,
]);
$headers = [
'Content-Type' => 'application/x-www-form-urlencoded',
];
global $base_url;
$stats_path = $base_url . '/' . $this->getModulePath('statistics') . '/statistics.php';
$client = \Drupal::httpClient();
$client->post($stats_path, [
'headers' => $headers,
'body' => $post,
]);
/** @var \Drupal\statistics\StatisticsViewsResult $statistics */
$statistics = \Drupal::service('statistics.storage.node')->fetchView($node->id());
// Generate and test tokens.
$tests = [];
$tests['[node:total-count]'] = 1;
$tests['[node:day-count]'] = 1;
$tests['[node:last-view]'] = $date_formatter->format($statistics->getTimestamp());
$tests['[node:last-view:short]'] = $date_formatter->format($statistics->getTimestamp(), 'short');
// Test to make sure that we generated something for each token.
$this->assertNotContains(0, array_map('strlen', $tests), 'No empty tokens generated.');
foreach ($tests as $input => $expected) {
$output = \Drupal::token()->replace($input, [
'node' => $node,
], [
'langcode' => $language_interface->getId(),
]);
$this->assertEquals($expected, $output, "Statistics token {$input} replaced.");
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
StatisticsTokenReplaceTest | Tests statistics token replacement. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.