You are here

public function PathAdminTest::testPathFiltering in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/path/src/Tests/PathAdminTest.php \Drupal\path\Tests\PathAdminTest::testPathFiltering()

Tests the filtering aspect of the Path UI.

File

core/modules/path/src/Tests/PathAdminTest.php, line 35
Contains \Drupal\path\Tests\PathAdminTest.

Class

PathAdminTest
Tests the Path admin UI.

Namespace

Drupal\path\Tests

Code

public function testPathFiltering() {

  // Create test nodes.
  $node1 = $this
    ->drupalCreateNode();
  $node2 = $this
    ->drupalCreateNode();
  $node3 = $this
    ->drupalCreateNode();

  // Create aliases.
  $alias1 = '/' . $this
    ->randomMachineName(8);
  $edit = array(
    'source' => '/node/' . $node1
      ->id(),
    'alias' => $alias1,
  );
  $this
    ->drupalPostForm('admin/config/search/path/add', $edit, t('Save'));
  $alias2 = '/' . $this
    ->randomMachineName(8);
  $edit = array(
    'source' => '/node/' . $node2
      ->id(),
    'alias' => $alias2,
  );
  $this
    ->drupalPostForm('admin/config/search/path/add', $edit, t('Save'));
  $alias3 = '/' . $this
    ->randomMachineName(4) . '/' . $this
    ->randomMachineName(4);
  $edit = array(
    'source' => '/node/' . $node3
      ->id(),
    'alias' => $alias3,
  );
  $this
    ->drupalPostForm('admin/config/search/path/add', $edit, t('Save'));

  // Filter by the first alias.
  $edit = array(
    'filter' => $alias1,
  );
  $this
    ->drupalPostForm(NULL, $edit, t('Filter'));
  $this
    ->assertLinkByHref($alias1);
  $this
    ->assertNoLinkByHref($alias2);
  $this
    ->assertNoLinkByHref($alias3);

  // Filter by the second alias.
  $edit = array(
    'filter' => $alias2,
  );
  $this
    ->drupalPostForm(NULL, $edit, t('Filter'));
  $this
    ->assertNoLinkByHref($alias1);
  $this
    ->assertLinkByHref($alias2);
  $this
    ->assertNoLinkByHref($alias3);

  // Filter by the third alias which has a slash.
  $edit = array(
    'filter' => $alias3,
  );
  $this
    ->drupalPostForm(NULL, $edit, t('Filter'));
  $this
    ->assertNoLinkByHref($alias1);
  $this
    ->assertNoLinkByHref($alias2);
  $this
    ->assertLinkByHref($alias3);

  // Filter by a random string with a different length.
  $edit = array(
    'filter' => $this
      ->randomMachineName(10),
  );
  $this
    ->drupalPostForm(NULL, $edit, t('Filter'));
  $this
    ->assertNoLinkByHref($alias1);
  $this
    ->assertNoLinkByHref($alias2);

  // Reset the filter.
  $edit = array();
  $this
    ->drupalPostForm(NULL, $edit, t('Reset'));
  $this
    ->assertLinkByHref($alias1);
  $this
    ->assertLinkByHref($alias2);
}