class PathNoCanonicalLinkTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php \Drupal\Tests\path\Kernel\PathNoCanonicalLinkTest
- 9 core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php \Drupal\Tests\path\Kernel\PathNoCanonicalLinkTest
Tests path alias deletion when there is no canonical link template.
@group path
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, AssertContentTrait, ConfigTestTrait, ExtensionListTestTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings
- class \Drupal\Tests\path\Kernel\PathNoCanonicalLinkTest
Expanded class hierarchy of PathNoCanonicalLinkTest
File
- core/
modules/ path/ tests/ src/ Kernel/ PathNoCanonicalLinkTest.php, line 14
Namespace
Drupal\Tests\path\KernelView source
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());
}
}