PathLanguageUiTest.php

Definition of Drupal\path\Tests\PathLanguageUiTest.

Namespace

Drupal\path\Tests

File

drupal/core/modules/path/lib/Drupal/path/Tests/PathLanguageUiTest.php
View source
<?php

/**
 * @file
 * Definition of Drupal\path\Tests\PathLanguageUiTest.
 */
namespace Drupal\path\Tests;


/**
 * Tests the user interface for creating path aliases, with languages.
 */
class PathLanguageUiTest extends PathTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'path',
    'locale',
  );
  public static function getInfo() {
    return array(
      'name' => 'Path aliases with languages',
      'description' => 'Confirm that the Path module user interface works with languages.',
      'group' => 'Path',
    );
  }
  function setUp() {
    parent::setUp();

    // Create and login user.
    $web_user = $this
      ->drupalCreateUser(array(
      'edit any page content',
      'create page content',
      'administer url aliases',
      'create url aliases',
      'administer languages',
      'access administration pages',
    ));
    $this
      ->drupalLogin($web_user);

    // Enable French language.
    $edit = array();
    $edit['predefined_langcode'] = 'fr';
    $this
      ->drupalPost('admin/config/regional/language/add', $edit, t('Add language'));

    // Enable URL language detection and selection.
    $edit = array(
      'language_interface[enabled][language-url]' => 1,
    );
    $this
      ->drupalPost('admin/config/regional/language/detection', $edit, t('Save settings'));
  }

  /**
   * Tests that a language-neutral URL alias works.
   */
  function testLanguageNeutralUrl() {
    $name = $this
      ->randomName(8);
    $edit = array();
    $edit['source'] = 'admin/config/search/path';
    $edit['alias'] = $name;
    $this
      ->drupalPost('admin/config/search/path/add', $edit, t('Save'));
    $this
      ->drupalGet($name);
    $this
      ->assertText(t('Filter aliases'), 'Language-neutral URL alias works');
  }

  /**
   * Tests that a default language URL alias works.
   */
  function testDefaultLanguageUrl() {
    $name = $this
      ->randomName(8);
    $edit = array();
    $edit['source'] = 'admin/config/search/path';
    $edit['alias'] = $name;
    $edit['langcode'] = 'en';
    $this
      ->drupalPost('admin/config/search/path/add', $edit, t('Save'));
    $this
      ->drupalGet($name);
    $this
      ->assertText(t('Filter aliases'), 'English URL alias works');
  }

  /**
   * Tests that a non-default language URL alias works.
   */
  function testNonDefaultUrl() {
    $name = $this
      ->randomName(8);
    $edit = array();
    $edit['source'] = 'admin/config/search/path';
    $edit['alias'] = $name;
    $edit['langcode'] = 'fr';
    $this
      ->drupalPost('admin/config/search/path/add', $edit, t('Save'));
    $this
      ->drupalGet('fr/' . $name);
    $this
      ->assertText(t('Filter aliases'), 'Foreign URL alias works');
  }

}

Classes

Namesort descending Description
PathLanguageUiTest Tests the user interface for creating path aliases, with languages.