You are here

public function PathLanguageUiTest::testDefaultLanguageUrl in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/path/tests/src/Functional/PathLanguageUiTest.php \Drupal\Tests\path\Functional\PathLanguageUiTest::testDefaultLanguageUrl()

Tests that a default language URL alias works.

File

core/modules/path/tests/src/Functional/PathLanguageUiTest.php, line 71

Class

PathLanguageUiTest
Confirm that the Path module user interface works with languages.

Namespace

Drupal\Tests\path\Functional

Code

public function testDefaultLanguageUrl() {
  $name = $this
    ->randomMachineName(8);
  $edit = [];
  $edit['path[0][value]'] = '/admin/config/search/path';
  $edit['alias[0][value]'] = '/' . $name;
  $edit['langcode[0][value]'] = 'en';
  $this
    ->drupalGet('admin/config/search/path/add');
  $this
    ->submitForm($edit, 'Save');
  $this
    ->drupalGet($name);
  $this
    ->assertSession()
    ->pageTextContains('Filter aliases');
}