You are here

function StatisticsReportsTest::testPopularContentBlock in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/statistics/src/Tests/StatisticsReportsTest.php \Drupal\statistics\Tests\StatisticsReportsTest::testPopularContentBlock()

Tests the "popular content" block.

File

core/modules/statistics/src/Tests/StatisticsReportsTest.php, line 20
Contains \Drupal\statistics\Tests\StatisticsReportsTest.

Class

StatisticsReportsTest
Tests display of statistics report blocks.

Namespace

Drupal\statistics\Tests

Code

function testPopularContentBlock() {

  // Clear the block cache to load the Statistics module's block definitions.
  $this->container
    ->get('plugin.manager.block')
    ->clearCachedDefinitions();

  // Visit a node to have something show up in the block.
  $node = $this
    ->drupalCreateNode(array(
    'type' => 'page',
    'uid' => $this->blockingUser
      ->id(),
  ));
  $this
    ->drupalGet('node/' . $node
    ->id());

  // Manually calling statistics.php, simulating ajax behavior.
  $nid = $node
    ->id();
  $post = http_build_query(array(
    'nid' => $nid,
  ));
  $headers = array(
    'Content-Type' => 'application/x-www-form-urlencoded',
  );
  global $base_url;
  $stats_path = $base_url . '/' . drupal_get_path('module', 'statistics') . '/statistics.php';
  $client = \Drupal::service('http_client_factory')
    ->fromOptions([
    'config/curl' => [
      CURLOPT_TIMEOUT => 10,
    ],
  ]);
  $client
    ->post($stats_path, array(
    'headers' => $headers,
    'body' => $post,
  ));

  // Configure and save the block.
  $this
    ->drupalPlaceBlock('statistics_popular_block', array(
    'label' => 'Popular content',
    'top_day_num' => 3,
    'top_all_num' => 3,
    'top_last_num' => 3,
  ));

  // Get some page and check if the block is displayed.
  $this
    ->drupalGet('user');
  $this
    ->assertText('Popular content', 'Found the popular content block.');
  $this
    ->assertText("Today's", "Found today's popular content.");
  $this
    ->assertText('All time', 'Found the all time popular content.');
  $this
    ->assertText('Last viewed', 'Found the last viewed popular content.');

  // statistics.module doesn't use node entities, prevent the node language
  // from being added to the options.
  $this
    ->assertRaw(\Drupal::l($node
    ->label(), $node
    ->urlInfo('canonical', [
    'language' => NULL,
  ])), 'Found link to visited node.');
}