You are here

class PathautoKernelTest in Pathauto 8

Unit tests for Pathauto functions.

@group pathauto

Hierarchy

Expanded class hierarchy of PathautoKernelTest

File

tests/src/Kernel/PathautoKernelTest.php, line 26

Namespace

Drupal\Tests\pathauto\Kernel
View source
class PathautoKernelTest extends KernelTestBase {
  use PathautoTestHelperTrait;
  public static $modules = [
    'system',
    'field',
    'text',
    'user',
    'node',
    'path',
    'path_alias',
    'pathauto',
    'pathauto_custom_punctuation_test',
    'taxonomy',
    'token',
    'filter',
    'ctools',
    'language',
  ];
  protected $currentUser;

  /**
   * @var \Drupal\pathauto\PathautoPatternInterface
   */
  protected $nodePattern;

  /**
   * @var \Drupal\pathauto\PathautoPatternInterface
   */
  protected $userPattern;
  public function setUp() {
    parent::setup();
    $this
      ->installEntitySchema('user');
    $this
      ->installEntitySchema('node');
    $this
      ->installEntitySchema('taxonomy_term');
    if ($this->container
      ->get('entity_type.manager')
      ->hasDefinition('path_alias')) {
      $this
        ->installEntitySchema('path_alias');
    }
    $this
      ->installConfig([
      'pathauto',
      'taxonomy',
      'system',
      'node',
    ]);
    ConfigurableLanguage::createFromLangcode('fr')
      ->save();
    $this
      ->installSchema('node', [
      'node_access',
    ]);
    $this
      ->installSchema('system', [
      'sequences',
    ]);
    $type = NodeType::create([
      'type' => 'page',
    ]);
    $type
      ->save();
    node_add_body_field($type);
    $this->nodePattern = $this
      ->createPattern('node', '/content/[node:title]');
    $this->userPattern = $this
      ->createPattern('user', '/users/[user:name]');
    \Drupal::service('router.builder')
      ->rebuild();
    $this->currentUser = User::create([
      'name' => $this
        ->randomMachineName(),
    ]);
    $this->currentUser
      ->save();
  }

  /**
   * Test _pathauto_get_schema_alias_maxlength().
   */
  public function testGetSchemaAliasMaxLength() {
    $this
      ->assertSame(\Drupal::service('pathauto.alias_storage_helper')
      ->getAliasSchemaMaxlength(), 255);
  }

  /**
   * Test pathauto_pattern_load_by_entity().
   */
  public function testPatternLoadByEntity() {
    $pattern = $this
      ->createPattern('node', '/article/[node:title]', -1);
    $this
      ->addBundleCondition($pattern, 'node', 'article');
    $pattern
      ->save();
    $pattern = $this
      ->createPattern('node', '/article/en/[node:title]', -2);
    $this
      ->addBundleCondition($pattern, 'node', 'article');
    $pattern
      ->addSelectionCondition([
      'id' => 'language',
      'langcodes' => [
        'en' => 'en',
      ],
      'negate' => FALSE,
      'context_mapping' => [
        'language' => 'node:langcode:language',
      ],
    ]);
    $pattern
      ->addRelationship('node:langcode:language');
    $pattern
      ->save();
    $pattern = $this
      ->createPattern('node', '/[node:title]', -1);
    $this
      ->addBundleCondition($pattern, 'node', 'page');
    $pattern
      ->save();
    $tests = [
      [
        'entity' => 'node',
        'values' => [
          'title' => 'Article fr',
          'type' => 'article',
          'langcode' => 'fr',
        ],
        'expected' => '/article/[node:title]',
      ],
      [
        'entity' => 'node',
        'values' => [
          'title' => 'Article en',
          'type' => 'article',
          'langcode' => 'en',
        ],
        'expected' => '/article/en/[node:title]',
      ],
      [
        'entity' => 'node',
        'values' => [
          'title' => 'Article und',
          'type' => 'article',
          'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
        ],
        'expected' => '/article/[node:title]',
      ],
      [
        'entity' => 'node',
        'values' => [
          'title' => 'Page',
          'type' => 'page',
        ],
        'expected' => '/[node:title]',
      ],
      [
        'entity' => 'user',
        'values' => [
          'name' => 'User',
        ],
        'expected' => '/users/[user:name]',
      ],
    ];
    foreach ($tests as $test) {
      $entity = \Drupal::entityTypeManager()
        ->getStorage($test['entity'])
        ->create($test['values']);
      $entity
        ->save();
      $actual = \Drupal::service('pathauto.generator')
        ->getPatternByEntity($entity);
      $this
        ->assertSame($actual
        ->getPattern(), $test['expected'], t("Correct pattern returned for @entity_type with @values", [
        '@entity' => $test['entity'],
        '@values' => print_r($test['values'], TRUE),
      ]));
    }
  }

  /**
   * Test potential conflicts with the same alias in different languages.
   */
  public function testSameTitleDifferentLanguages() {

    // Create two English articles with the same title.
    $edit = [
      'title' => 'Sample page',
      'type' => 'page',
      'langcode' => 'en',
    ];
    $node1 = $this
      ->drupalCreateNode($edit);
    $this
      ->assertEntityAlias($node1, '/content/sample-page', 'en');
    $node2 = $this
      ->drupalCreateNode($edit);
    $this
      ->assertEntityAlias($node2, '/content/sample-page-0', 'en');

    // Now, create a French article with the same title, and verify that it gets
    // the basic alias with the correct langcode.
    $edit['langcode'] = 'fr';
    $node3 = $this
      ->drupalCreateNode($edit);
    $this
      ->assertEntityAlias($node3, '/content/sample-page', 'fr');
  }

  /**
   * Test pathauto_cleanstring().
   */
  public function testCleanString() {

    // Test with default settings defined in pathauto.settings.yml.
    $this
      ->installConfig([
      'pathauto',
    ]);

    // Add a custom setting for the copyright symbol defined in
    // pathauto_custom_punctuation_test_pathauto_punctuation_chars_alter().
    $this
      ->config('pathauto.settings')
      ->set('punctuation.copyright', PathautoGeneratorInterface::PUNCTUATION_REMOVE);
    \Drupal::service('pathauto.generator')
      ->resetCaches();
    $tests = [];

    // Test the 'ignored words' removal.
    $tests['this'] = 'this';
    $tests['this with that'] = 'this-with-that';
    $tests['this thing with that thing'] = 'thing-thing';

    // Test 'ignored words' removal and duplicate separator removal.
    $tests[' - Pathauto is the greatest - module ever - '] = 'pathauto-greatest-module-ever';

    // Test length truncation and lowering of strings.
    $long_string = $this
      ->randomMachineName(120);
    $tests[$long_string] = strtolower(substr($long_string, 0, 100));

    // Test that HTML tags are removed.
    $tests['This <span class="text">text</span> has <br /><a href="http://example.com"><strong>HTML tags</strong></a>.'] = 'text-has-html-tags';
    $tests[Html::escape('This <span class="text">text</span> has <br /><a href="http://example.com"><strong>HTML tags</strong></a>.')] = 'text-has-html-tags';

    // Transliteration.
    $tests['ľščťžýáíéňô'] = 'lsctzyaieno';

    // Transliteration of special chars that are converted to punctuation.
    $tests['© “Drupal”'] = 'drupal';
    foreach ($tests as $input => $expected) {
      $output = \Drupal::service('pathauto.alias_cleaner')
        ->cleanString($input);
      $this
        ->assertEquals($expected, $output, t("Drupal::service('pathauto.alias_cleaner')->cleanString('@input') expected '@expected', actual '@output'", [
        '@input' => $input,
        '@expected' => $expected,
        '@output' => $output,
      ]));
    }
  }

  /**
   * Test pathauto_clean_alias().
   */
  public function testCleanAlias() {
    $tests = [];
    $tests['one/two/three'] = '/one/two/three';
    $tests['/one/two/three/'] = '/one/two/three';
    $tests['one//two///three'] = '/one/two/three';
    $tests['one/two--three/-/--/-/--/four---five'] = '/one/two-three/four-five';
    $tests['one/-//three--/four'] = '/one/three/four';
    foreach ($tests as $input => $expected) {
      $output = \Drupal::service('pathauto.alias_cleaner')
        ->cleanAlias($input);
      $this
        ->assertEquals($expected, $output, t("Drupal::service('pathauto.generator')->cleanAlias('@input') expected '@expected', actual '@output'", [
        '@input' => $input,
        '@expected' => $expected,
        '@output' => $output,
      ]));
    }
  }

  /**
   * Test pathauto_path_delete_multiple().
   */
  public function testPathDeleteMultiple() {
    $this
      ->createPathAlias('/node/1', '/node-1-alias');
    $this
      ->createPathAlias('/node/1/view', '/node-1-alias/view');
    $this
      ->createPathAlias('/node/1', '/node-1-alias-en', 'en');
    $this
      ->createPathAlias('/node/1', '/node-1-alias-fr', 'fr');
    $this
      ->createPathAlias('/node/2', '/node-2-alias');
    $this
      ->createPathAlias('/node/10', '/node-10-alias');
    \Drupal::service('pathauto.alias_storage_helper')
      ->deleteBySourcePrefix('/node/1');
    $this
      ->assertNoAliasExists([
      'path' => "/node/1",
    ]);
    $this
      ->assertNoAliasExists([
      'path' => "/node/1/view",
    ]);
    $this
      ->assertAliasExists([
      'path' => "/node/2",
    ]);
    $this
      ->assertAliasExists([
      'path' => "/node/10",
    ]);
  }

  /**
   * Test the different update actions in \Drupal::service('pathauto.generator')->createEntityAlias().
   */
  public function testUpdateActions() {
    $config = $this
      ->config('pathauto.settings');

    // Test PATHAUTO_UPDATE_ACTION_NO_NEW with unaliased node and 'insert'.
    $config
      ->set('update_action', PathautoGeneratorInterface::UPDATE_ACTION_NO_NEW);
    $config
      ->save();
    $node = $this
      ->drupalCreateNode([
      'title' => 'First title',
    ]);
    $this
      ->assertEntityAlias($node, '/content/first-title');
    $node->path->pathauto = PathautoState::CREATE;

    // Default action is PATHAUTO_UPDATE_ACTION_DELETE.
    $config
      ->set('update_action', PathautoGeneratorInterface::UPDATE_ACTION_DELETE);
    $config
      ->save();
    $node
      ->setTitle('Second title');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/second-title');
    $this
      ->assertNoAliasExists([
      'alias' => '/content/first-title',
    ]);

    // Test PATHAUTO_UPDATE_ACTION_LEAVE.
    $config
      ->set('update_action', PathautoGeneratorInterface::UPDATE_ACTION_LEAVE);
    $config
      ->save();
    $node
      ->setTitle('Third title');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/third-title');
    $this
      ->assertAliasExists([
      'path' => '/' . $node
        ->toUrl()
        ->getInternalPath(),
      'alias' => '/content/second-title',
    ]);
    $config
      ->set('update_action', PathautoGeneratorInterface::UPDATE_ACTION_DELETE);
    $config
      ->save();
    $node
      ->setTitle('Fourth title');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/fourth-title');
    $this
      ->assertNoAliasExists([
      'alias' => '/content/third-title',
    ]);

    // The older second alias is not deleted yet.
    $older_path = $this
      ->assertAliasExists([
      'path' => '/' . $node
        ->toUrl()
        ->getInternalPath(),
      'alias' => '/content/second-title',
    ]);
    \Drupal::service('entity_type.manager')
      ->getStorage('path_alias')
      ->delete([
      $older_path,
    ]);
    $config
      ->set('update_action', PathautoGeneratorInterface::UPDATE_ACTION_NO_NEW);
    $config
      ->save();
    $node
      ->setTitle('Fifth title');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/fourth-title');
    $this
      ->assertNoAliasExists([
      'alias' => '/content/fifth-title',
    ]);

    // Test PATHAUTO_UPDATE_ACTION_NO_NEW with unaliased node and 'update'.
    $this
      ->deleteAllAliases();
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/fifth-title');

    // Test PATHAUTO_UPDATE_ACTION_NO_NEW with unaliased node and 'bulkupdate'.
    $this
      ->deleteAllAliases();
    $node
      ->setTitle('Sixth title');
    \Drupal::service('pathauto.generator')
      ->updateEntityAlias($node, 'bulkupdate');
    $this
      ->assertEntityAlias($node, '/content/sixth-title');
  }

  /**
   * Test that \Drupal::service('pathauto.generator')->createEntityAlias() will
   * not create an alias for a pattern that does not get any tokens replaced.
   */
  public function testNoTokensNoAlias() {
    $this
      ->installConfig([
      'filter',
    ]);
    $this->nodePattern
      ->setPattern('/content/[node:body]')
      ->save();
    $node = $this
      ->drupalCreateNode();
    $this
      ->assertNoEntityAliasExists($node);
    $node->body->value = 'hello';
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/hello');
  }

  /**
   * Test the handling of path vs non-path tokens in pathauto_clean_token_values().
   */
  public function testPathTokens() {
    $this
      ->createPattern('taxonomy_term', '/[term:parent:url:path]/[term:name]');
    $vocab = $this
      ->addVocabulary();
    $term1 = $this
      ->addTerm($vocab, [
      'name' => 'Parent term',
    ]);
    $this
      ->assertEntityAlias($term1, '/parent-term');
    $term2 = $this
      ->addTerm($vocab, [
      'name' => 'Child term',
      'parent' => $term1
        ->id(),
    ]);
    $this
      ->assertEntityAlias($term2, '/parent-term/child-term');
    $this
      ->saveEntityAlias($term1, '/My Crazy/Alias/');
    $term2
      ->save();
    $this
      ->assertEntityAlias($term2, '/My Crazy/Alias/child-term');
  }

  /**
   * Test using fields for path structures.
   */
  public function testParentChildPathTokens() {

    // First create a field which will be used to create the path. It must
    // begin with a letter.
    $this
      ->installEntitySchema('taxonomy_term');
    Vocabulary::create([
      'vid' => 'tags',
    ])
      ->save();
    $fieldname = 'a' . mb_strtolower($this
      ->randomMachineName());
    $field_storage = FieldStorageConfig::create([
      'entity_type' => 'taxonomy_term',
      'field_name' => $fieldname,
      'type' => 'string',
    ]);
    $field_storage
      ->save();
    $field = FieldConfig::create([
      'field_storage' => $field_storage,
      'bundle' => 'tags',
    ]);
    $field
      ->save();
    $display = \Drupal::service('entity_display.repository')
      ->getViewDisplay('taxonomy_term', 'tags');
    $display
      ->setComponent($fieldname, [
      'type' => 'string',
    ]);
    $display
      ->save();

    // Make the path pattern of a field use the value of this field appended
    // to the parent taxonomy term's pattern if there is one.
    $this
      ->createPattern('taxonomy_term', '/[term:parents:join-path]/[term:' . $fieldname . ']');

    // Start by creating a parent term.
    $parent = Term::create([
      'vid' => 'tags',
      $fieldname => $this
        ->randomMachineName(),
      'name' => $this
        ->randomMachineName(),
    ]);
    $parent
      ->save();

    // Create the child term.
    $child = Term::create([
      'vid' => 'tags',
      $fieldname => $this
        ->randomMachineName(),
      'parent' => $parent,
      'name' => $this
        ->randomMachineName(),
    ]);
    $child
      ->save();
    $this
      ->assertEntityAlias($child, '/' . mb_strtolower($parent
      ->getName() . '/' . $child->{$fieldname}->value));

    // Re-saving the parent term should not modify the child term's alias.
    $parent
      ->save();
    $this
      ->assertEntityAlias($child, '/' . mb_strtolower($parent
      ->getName() . '/' . $child->{$fieldname}->value));
  }

  /**
   * Tests aliases on taxonomy terms.
   */
  public function testTaxonomyPattern() {

    // Create a vocabulary and test that it's pattern variable works.
    $this
      ->addVocabulary([
      'vid' => 'name',
    ]);
    $this
      ->createPattern('taxonomy_term', 'base');
    $pattern = $this
      ->createPattern('taxonomy_term', 'bundle', -1);
    $this
      ->addBundleCondition($pattern, 'taxonomy_term', 'name');
    $pattern
      ->save();
    $this
      ->assertEntityPattern('taxonomy_term', 'name', Language::LANGCODE_NOT_SPECIFIED, 'bundle');
  }
  public function testNoExistingPathAliases() {
    $this
      ->config('pathauto.settings')
      ->set('punctuation.period', PathautoGeneratorInterface::PUNCTUATION_DO_NOTHING)
      ->save();
    $this->nodePattern
      ->setPattern('[node:title]')
      ->save();

    // Check that Pathauto does not create an alias of '/admin'.
    $node = $this
      ->drupalCreateNode([
      'title' => 'Admin',
      'type' => 'page',
    ]);
    $this
      ->assertEntityAlias($node, '/admin-0');

    // Check that Pathauto does not create an alias of '/modules'.
    $node
      ->setTitle('Modules');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/modules-0');

    // Check that Pathauto does not create an alias of '/index.php'.
    $node
      ->setTitle('index.php');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/index.php-0');

    // Check that a safe value gets an automatic alias. This is also a control
    // to ensure the above tests work properly.
    $node
      ->setTitle('Safe value');
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/safe-value');
  }

  /**
   * Test programmatic entity creation for aliases.
   */
  public function testProgrammaticEntityCreation() {
    $node = $this
      ->drupalCreateNode([
      'title' => 'Test node',
      'path' => [
        'pathauto' => TRUE,
      ],
    ]);
    $this
      ->assertEntityAlias($node, '/content/test-node');

    // Check the case when the pathauto widget is hidden, so it can not populate
    // the 'pathauto' property, and
    // \Drupal\path\Plugin\Field\FieldType\PathFieldItemList::computeValue()
    // populates the 'path' field with a 'langcode' property, for example during
    // an AJAX call on the entity form.
    $node = $this
      ->drupalCreateNode([
      'title' => 'Test node 2',
      'path' => [
        'langcode' => 'en',
      ],
    ]);
    $this
      ->assertEntityAlias($node, '/content/test-node-2');
    $this
      ->createPattern('taxonomy_term', '/[term:vocabulary]/[term:name]');
    $vocabulary = $this
      ->addVocabulary([
      'name' => 'Tags',
    ]);
    $term = $this
      ->addTerm($vocabulary, [
      'name' => 'Test term',
      'path' => [
        'pathauto' => TRUE,
      ],
    ]);
    $this
      ->assertEntityAlias($term, '/tags/test-term');
    $edit['name'] = 'Test user';
    $edit['mail'] = 'test-user@example.com';
    $edit['pass'] = user_password();
    $edit['path'] = [
      'pathauto' => TRUE,
    ];
    $edit['status'] = 1;
    $account = User::create($edit);
    $account
      ->save();
    $this
      ->assertEntityAlias($account, '/users/test-user');
  }

  /**
   * Tests word safe alias truncating.
   */
  public function testPathAliasUniquifyWordsafe() {
    $this
      ->config('pathauto.settings')
      ->set('max_length', 26)
      ->save();
    $node_1 = $this
      ->drupalCreateNode([
      'title' => 'thequick brownfox jumpedover thelazydog',
      'type' => 'page',
    ]);
    $node_2 = $this
      ->drupalCreateNode([
      'title' => 'thequick brownfox jumpedover thelazydog',
      'type' => 'page',
    ]);

    // Check that alias uniquifying is truncating with $wordsafe param set to
    // TRUE.
    // If it doesn't path alias result would be content/thequick-brownf-0
    $this
      ->assertEntityAlias($node_1, '/content/thequick-brownfox');
    $this
      ->assertEntityAlias($node_2, '/content/thequick-0');
  }

  /**
   * Test if aliases are (not) generated with enabled/disabled patterns.
   */
  public function testPatternStatus() {

    // Create a node to get an alias for.
    $title = 'Pattern enabled';
    $alias = '/content/pattern-enabled';
    $node1 = $this
      ->drupalCreateNode([
      'title' => $title,
      'type' => 'page',
    ]);
    $this
      ->assertEntityAlias($node1, $alias);

    // Disable the pattern, save the node again and make sure the alias is still
    // working.
    $this->nodePattern
      ->setStatus(FALSE)
      ->save();
    $node1
      ->save();
    $this
      ->assertEntityAlias($node1, $alias);

    // Create a new node with disabled pattern and make sure there is no new
    // alias created.
    $title = 'Pattern disabled';
    $node2 = $this
      ->drupalCreateNode([
      'title' => $title,
      'type' => 'page',
    ]);
    $this
      ->assertNoEntityAlias($node2);
  }

  /**
   * Tests that enabled entity types generates the necessary fields and plugins.
   */
  public function testSettingChangeInvalidatesCache() {
    $this
      ->installConfig([
      'pathauto',
    ]);
    $this
      ->enableModules([
      'entity_test',
    ]);
    $definitions = \Drupal::service('plugin.manager.alias_type')
      ->getDefinitions();
    $this
      ->assertFalse(isset($definitions['canonical_entities:entity_test']));
    $fields = \Drupal::service('entity_field.manager')
      ->getBaseFieldDefinitions('entity_test');
    $this
      ->assertFalse(isset($fields['path']));
    $this
      ->config('pathauto.settings')
      ->set('enabled_entity_types', [
      'user',
      'entity_test',
    ])
      ->save();
    $definitions = \Drupal::service('plugin.manager.alias_type')
      ->getDefinitions();
    $this
      ->assertTrue(isset($definitions['canonical_entities:entity_test']));
    $fields = \Drupal::service('entity_field.manager')
      ->getBaseFieldDefinitions('entity_test');
    $this
      ->assertTrue(isset($fields['path']));
  }

  /**
   * Tests that aliases are only generated for default revisions.
   */
  public function testDefaultRevision() {
    $node1 = $this
      ->drupalCreateNode([
      'title' => 'Default revision',
      'type' => 'page',
    ]);
    $this
      ->assertEntityAlias($node1, '/content/default-revision');
    $node1
      ->setNewRevision(TRUE);
    $node1
      ->isDefaultRevision(FALSE);
    $node1
      ->setTitle('New non-default-revision');
    $node1
      ->save();
    $this
      ->assertEntityAlias($node1, '/content/default-revision');
  }

  /**
   * Tests that the pathauto state property gets set to CREATED for new nodes.
   *
   * In some cases, this can trigger $node->path to be set up with no default
   * value for the pathauto property.
   */
  public function testCreateNodeWhileAccessingPath() {
    $node = Node::create([
      'type' => 'article',
      'title' => 'TestAlias',
    ]);
    $node->path->langcode;
    $node
      ->save();
    $this
      ->assertEntityAlias($node, '/content/testalias');
  }

  /**
   * Creates a node programmatically.
   *
   * @param array $settings
   *   The array of values for the node.
   *
   * @return \Drupal\node\Entity\Node
   *   The created node.
   */
  protected function drupalCreateNode(array $settings = []) {

    // Populate defaults array.
    $settings += [
      'title' => $this
        ->randomMachineName(8),
      'type' => 'page',
    ];
    $node = Node::create($settings);
    $node
      ->save();
    return $node;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 1
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionByText protected function Asserts that a select option with the visible text exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertHelperTrait::castSafeStrings protected static function Casts MarkupInterface objects into strings.
AssertLegacyTrait::assert protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::assertEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead.
AssertLegacyTrait::assertIdenticalObject protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertNotEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead.
AssertLegacyTrait::assertNotIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead.
AssertLegacyTrait::pass protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::verbose protected function
ConfigTestTrait::configImporter protected function Returns a ConfigImporter object to import test configuration.
ConfigTestTrait::copyConfig protected function Copies configuration objects from source storage to target storage.
KernelTestBase::$backupGlobals protected property Back up and restore any global variables that may be changed by tests.
KernelTestBase::$backupStaticAttributes protected property Back up and restore static class properties that may be changed by tests.
KernelTestBase::$backupStaticAttributesBlacklist protected property Contains a few static class properties for performance.
KernelTestBase::$classLoader protected property
KernelTestBase::$configImporter protected property @todo Move into Config test base class. 7
KernelTestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
KernelTestBase::$container protected property
KernelTestBase::$databasePrefix protected property
KernelTestBase::$preserveGlobalState protected property Do not forward any global state from the parent process to the processes that run the actual tests.
KernelTestBase::$root protected property The app root.
KernelTestBase::$runTestInSeparateProcess protected property Kernel tests are run in separate processes because they allow autoloading of code from extensions. Running the test in a separate process isolates this behavior from other tests. Subclasses should not override this property.
KernelTestBase::$siteDirectory protected property
KernelTestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 6
KernelTestBase::$vfsRoot protected property The virtual filesystem root directory.
KernelTestBase::assertPostConditions protected function 1
KernelTestBase::bootEnvironment protected function Bootstraps a basic test environment.
KernelTestBase::bootKernel private function Bootstraps a kernel for a test.
KernelTestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
KernelTestBase::disableModules protected function Disables modules for this test.
KernelTestBase::enableModules protected function Enables modules for this test.
KernelTestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
KernelTestBase::getDatabaseConnectionInfo protected function Returns the Database connection info to be used for this test. 1
KernelTestBase::getDatabasePrefix public function
KernelTestBase::getExtensionsForModules private function Returns Extension objects for $modules to enable.
KernelTestBase::getModulesToEnable private static function Returns the modules to enable for this test.
KernelTestBase::initFileCache protected function Initializes the FileCache component.
KernelTestBase::installConfig protected function Installs default configuration for a given list of modules.
KernelTestBase::installEntitySchema protected function Installs the storage schema for a specific entity type.
KernelTestBase::installSchema protected function Installs database tables from a module schema definition.
KernelTestBase::isTestInIsolation Deprecated protected function Returns whether the current test method is running in a separate process.
KernelTestBase::prepareTemplate protected function
KernelTestBase::register public function Registers test-specific services. Overrides ServiceProviderInterface::register 26
KernelTestBase::render protected function Renders a render array. 1
KernelTestBase::setInstallProfile protected function Sets the install profile and rebuilds the container to update it.
KernelTestBase::setSetting protected function Sets an in-memory Settings variable.
KernelTestBase::setUpBeforeClass public static function 1
KernelTestBase::setUpFilesystem protected function Sets up the filesystem, so things like the file directory. 2
KernelTestBase::stop protected function Stops test execution.
KernelTestBase::tearDown protected function 6
KernelTestBase::tearDownCloseDatabaseConnection public function @after
KernelTestBase::vfsDump protected function Dumps the current state of the virtual filesystem to STDOUT.
KernelTestBase::__get Deprecated public function BC: Automatically resolve former KernelTestBase class properties.
KernelTestBase::__sleep public function Prevents serializing any properties.
PathAliasTestTrait::assertPathAliasExists protected function Asserts that a path alias exists in the storage.
PathAliasTestTrait::assertPathAliasNotExists protected function Asserts that a path alias does not exist in the storage.
PathAliasTestTrait::createPathAlias protected function Creates a new path alias.
PathAliasTestTrait::loadPathAliasByConditions protected function Gets the first result from a 'load by properties' storage call.
PathautoKernelTest::$currentUser protected property
PathautoKernelTest::$modules public static property Modules to enable. Overrides KernelTestBase::$modules
PathautoKernelTest::$nodePattern protected property
PathautoKernelTest::$userPattern protected property
PathautoKernelTest::drupalCreateNode protected function Creates a node programmatically.
PathautoKernelTest::setUp public function Overrides KernelTestBase::setUp
PathautoKernelTest::testCleanAlias public function Test pathauto_clean_alias().
PathautoKernelTest::testCleanString public function Test pathauto_cleanstring().
PathautoKernelTest::testCreateNodeWhileAccessingPath public function Tests that the pathauto state property gets set to CREATED for new nodes.
PathautoKernelTest::testDefaultRevision public function Tests that aliases are only generated for default revisions.
PathautoKernelTest::testGetSchemaAliasMaxLength public function Test _pathauto_get_schema_alias_maxlength().
PathautoKernelTest::testNoExistingPathAliases public function
PathautoKernelTest::testNoTokensNoAlias public function Test that \Drupal::service('pathauto.generator')->createEntityAlias() will not create an alias for a pattern that does not get any tokens replaced.
PathautoKernelTest::testParentChildPathTokens public function Test using fields for path structures.
PathautoKernelTest::testPathAliasUniquifyWordsafe public function Tests word safe alias truncating.
PathautoKernelTest::testPathDeleteMultiple public function Test pathauto_path_delete_multiple().
PathautoKernelTest::testPathTokens public function Test the handling of path vs non-path tokens in pathauto_clean_token_values().
PathautoKernelTest::testPatternLoadByEntity public function Test pathauto_pattern_load_by_entity().
PathautoKernelTest::testPatternStatus public function Test if aliases are (not) generated with enabled/disabled patterns.
PathautoKernelTest::testProgrammaticEntityCreation public function Test programmatic entity creation for aliases.
PathautoKernelTest::testSameTitleDifferentLanguages public function Test potential conflicts with the same alias in different languages.
PathautoKernelTest::testSettingChangeInvalidatesCache public function Tests that enabled entity types generates the necessary fields and plugins.
PathautoKernelTest::testTaxonomyPattern public function Tests aliases on taxonomy terms.
PathautoKernelTest::testUpdateActions public function Test the different update actions in \Drupal::service('pathauto.generator')->createEntityAlias().
PathautoTestHelperTrait::addBundleCondition protected function Add a bundle condition to a pathauto pattern.
PathautoTestHelperTrait::addTerm public function
PathautoTestHelperTrait::addVocabulary public function
PathautoTestHelperTrait::assertAlias public function
PathautoTestHelperTrait::assertAliasExists public function
PathautoTestHelperTrait::assertEntityAlias public function
PathautoTestHelperTrait::assertEntityAliasExists public function
PathautoTestHelperTrait::assertEntityPattern public function
PathautoTestHelperTrait::assertNoAliasExists public function
PathautoTestHelperTrait::assertNoEntityAlias public function
PathautoTestHelperTrait::assertNoEntityAliasExists public function
PathautoTestHelperTrait::assertToken public function
PathautoTestHelperTrait::createPattern protected function Creates a pathauto pattern.
PathautoTestHelperTrait::deleteAllAliases public function
PathautoTestHelperTrait::drupalGetTermByName public function
PathautoTestHelperTrait::saveEntityAlias public function
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers. 1
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
StorageCopyTrait::replaceStorageContents protected static function Copy the configuration from one storage to another and remove stale items.
TestRequirementsTrait::checkModuleRequirements private function Checks missing module requirements.
TestRequirementsTrait::checkRequirements protected function Check module requirements for the Drupal use case. 1
TestRequirementsTrait::getDrupalRoot protected static function Returns the Drupal root directory.