UrlTest.php

Same filename in this branch
  1. 10 core/modules/system/tests/src/Kernel/Common/UrlTest.php
  2. 10 core/modules/system/tests/src/Functional/Form/UrlTest.php
  3. 10 core/tests/Drupal/Tests/Core/UrlTest.php
Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/Common/UrlTest.php
  2. 9 core/modules/system/tests/src/Functional/Form/UrlTest.php
  3. 9 core/modules/system/tests/src/Functional/Common/UrlTest.php
  4. 9 core/tests/Drupal/Tests/Core/UrlTest.php
  5. 8.9.x core/modules/system/tests/src/Functional/Form/UrlTest.php
  6. 8.9.x core/modules/system/tests/src/Functional/Common/UrlTest.php
  7. 8.9.x core/tests/Drupal/Tests/Core/UrlTest.php
  8. 11.x core/modules/system/tests/src/Kernel/Common/UrlTest.php
  9. 11.x core/modules/system/tests/src/Functional/Form/UrlTest.php
  10. 11.x core/modules/system/tests/src/Functional/Common/UrlTest.php
  11. 11.x core/tests/Drupal/Tests/Core/UrlTest.php

Namespace

Drupal\Tests\system\Functional\Common

File

core/modules/system/tests/src/Functional/Common/UrlTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\system\Functional\Common;

use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;

/**
 * Confirm that the link generator works correctly.
 *
 * @group Common
 */
class UrlTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'common_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests the active class in links.
   */
  public function testActiveLinkAttributes() : void {
    $options_no_query = [];
    $options_query = [
      'query' => [
        'foo' => 'bar',
        'one' => 'two',
      ],
    ];
    $options_query_reverse = [
      'query' => [
        'one' => 'two',
        'foo' => 'bar',
      ],
    ];
    // Test #type link.
    $path = 'common-test/type-link-active-class';
    $this->drupalGet($path, $options_no_query);
    // Test that a link generated by the link generator to the current page is
    // marked active.
    $this->assertSession()
      ->elementExists('xpath', $this->assertSession()
      ->buildXPathQuery('//a[@href = :href and contains(@class, "is-active")]', [
      ':href' => Url::fromRoute('common_test.l_active_class', [], $options_no_query)->toString(),
    ]));
    // Test that a link generated by the link generator to the current page
    // with a query string when the current page has no query string is not
    // marked active.
    $this->assertSession()
      ->elementExists('xpath', $this->assertSession()
      ->buildXPathQuery('//a[@href = :href and not(contains(@class, "is-active"))]', [
      ':href' => Url::fromRoute('common_test.l_active_class', [], $options_query)->toString(),
    ]));
    $this->drupalGet($path, $options_query);
    // Test that a link generated by the link generator to the current page with
    // a query string that matches the current query string is marked active.
    $this->assertSession()
      ->elementExists('xpath', $this->assertSession()
      ->buildXPathQuery('//a[@href = :href and contains(@class, "is-active")]', [
      ':href' => Url::fromRoute('common_test.l_active_class', [], $options_query)->toString(),
    ]));
    // Test that a link generated by the link generator to the current page with
    // a query string that has matching parameters to the current query string
    // but in a different order is marked active.
    $this->assertSession()
      ->elementExists('xpath', $this->assertSession()
      ->buildXPathQuery('//a[@href = :href and contains(@class, "is-active")]', [
      ':href' => Url::fromRoute('common_test.l_active_class', [], $options_query_reverse)->toString(),
    ]));
    // Test that a link generated by the link generator to the current page
    // without a query string when the current page has a query string is not
    // marked active.
    $this->assertSession()
      ->elementExists('xpath', $this->assertSession()
      ->buildXPathQuery('//a[@href = :href and not(contains(@class, "is-active"))]', [
      ':href' => Url::fromRoute('common_test.l_active_class', [], $options_no_query)->toString(),
    ]));
  }

}

Classes

Title Deprecated Summary
UrlTest Confirm that the link generator works correctly.

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