StatisticsAttachedTest.php

Same filename and directory in other branches
  1. 9 core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php
  2. 10 core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php
  3. 11.x core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php

Namespace

Drupal\Tests\statistics\Functional

File

core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php

View source
<?php

namespace Drupal\Tests\statistics\Functional;

use Drupal\Tests\BrowserTestBase;
use Drupal\node\Entity\Node;

/**
 * Tests if statistics.js is loaded when content is not printed.
 *
 * @group statistics
 */
class StatisticsAttachedTest extends BrowserTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    public static $modules = [
        'node',
        'statistics',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        $this->drupalCreateContentType([
            'type' => 'page',
        ]);
        // Install "statistics_test_attached" and set it as the default theme.
        $theme = 'statistics_test_attached';
        \Drupal::service('theme_installer')->install([
            $theme,
        ]);
        $this->config('system.theme')
            ->set('default', $theme)
            ->save();
        // Installing a theme will cause the kernel terminate event to rebuild the
        // router. Simulate that here.
        \Drupal::service('router.builder')->rebuildIfNeeded();
    }
    
    /**
     * Tests if statistics.js is loaded when content is not printed.
     */
    public function testAttached() {
        $node = Node::create([
            'type' => 'page',
            'title' => 'Page node',
            'body' => 'body text',
        ]);
        $node->save();
        $this->drupalGet('node/' . $node->id());
        $this->assertRaw('core/modules/statistics/statistics.js', 'Statistics library is available');
    }

}

Classes

Title Deprecated Summary
StatisticsAttachedTest Tests if statistics.js is loaded when content is not printed.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.