You are here

PathNoCanonicalLinkTest.php in Drupal 10

File

core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php
View source
<?php

namespace Drupal\Tests\path\Kernel;

use Drupal\content_translation_test\Entity\EntityTestTranslatableUISkip;
use Drupal\KernelTests\KernelTestBase;
use Drupal\language\Entity\ConfigurableLanguage;

/**
 * Tests path alias deletion when there is no canonical link template.
 *
 * @group path
 */
class PathNoCanonicalLinkTest extends KernelTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'path',
    'content_translation_test',
    'language',
    'entity_test',
    'user',
    'system',
  ];
  protected function setUp() : void {
    parent::setUp();
    $this
      ->installEntitySchema('entity_test');
    $this
      ->installEntitySchema('entity_test_mul');

    // Adding german language.
    ConfigurableLanguage::create([
      'id' => 'de',
    ])
      ->save();
    $this
      ->config('language.types')
      ->setData([
      'configurable' => [
        'language_interface',
      ],
      'negotiation' => [
        'language_interface' => [
          'enabled' => [
            'language-url' => 0,
          ],
        ],
      ],
    ])
      ->save();
  }

  /**
   * Tests for no canonical link templates.
   */
  public function testNoCanonicalLinkTemplate() {
    $entity_type = EntityTestTranslatableUISkip::create([
      'name' => 'name english',
      'language' => 'en',
    ]);
    $entity_type
      ->save();
    $entity_type
      ->addTranslation('de', [
      'name' => 'name german',
    ]);
    $entity_type
      ->save();
    $this
      ->assertCount(2, $entity_type
      ->getTranslationLanguages());
    $entity_type
      ->removeTranslation('de');
    $entity_type
      ->save();
    $this
      ->assertCount(1, $entity_type
      ->getTranslationLanguages());
  }

}

Classes

Namesort descending Description
PathNoCanonicalLinkTest Tests path alias deletion when there is no canonical link template.