
| Current Path : /var/www/html/rocksensor3/web/modules/contrib/metatag/tests/src/Functional/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/modules/contrib/metatag/tests/src/Functional/MetatagFieldTermTest.php |
<?php
namespace Drupal\Tests\metatag\Functional;
/**
* Ensures that the Metatag field works correctly on taxonomy terms.
*
* @group metatag
*/
class MetatagFieldTermTest extends MetatagFieldTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
// Needed for token handling.
'token',
// Needed for the field UI testing.
'field_ui',
// Needed to verify that nothing is broken for unsupported entities.
'contact',
// The base module.
'metatag',
// Some extra custom logic for testing Metatag.
'metatag_test_tag',
// Manages the entity type that is being tested.
'taxonomy',
];
/**
* {@inheritdoc}
*/
protected $entityPerms = [
// From Field UI.
'administer taxonomy_term fields',
// From Taxonomy.
'administer taxonomy',
'edit terms in tags',
'delete terms in tags',
];
/**
* {@inheritdoc}
*/
protected $entityType = 'taxonomy_term';
/**
* {@inheritdoc}
*/
protected $entityLabel = 'Taxonomy term';
/**
* {@inheritdoc}
*/
protected $entityBundle = 'entity_test';
/**
* {@inheritdoc}
*/
protected $entityAddPath = 'admin/structure/taxonomy/manage/tags/add';
/**
* {@inheritdoc}
*/
protected $entityFieldAdminPath = 'admin/structure/taxonomy/manage/tags/overview';
/**
* {@inheritdoc}
*/
protected $entityTitleField = 'name';
/**
* {@inheritdoc}
*/
protected function setUpEntityType(): void {
$new_perms = [
// From Taxonomy.
'administer taxonomy',
];
$all_perms = array_merge($this->basePerms, $new_perms);
$this->adminUser = $this->drupalCreateUser($all_perms);
$this->drupalLogin($this->adminUser);
$this->drupalGet('admin/structure/taxonomy/add');
$this->assertSession()->statusCodeEquals(200);
$edit = [
'name' => 'Tags',
'vid' => 'tags',
];
$this->submitForm($edit, 'Save');
$this->drupalLogout();
}
}