PathNoCanonicalLinkTest.php
Same filename in other branches
Namespace
Drupal\Tests\path\KernelFile
-
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',
];
/**
* {@inheritdoc}
*/
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
Title | Deprecated | Summary |
---|---|---|
PathNoCanonicalLinkTest | Tests path alias deletion when there is no canonical link template. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.