View source
<?php
namespace Drupal\Tests\field\Functional;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\Traits\Core\CronRunTrait;
class ReEnableModuleFieldTest extends BrowserTestBase {
use CronRunTrait;
protected static $modules = [
'field',
'node',
'telephone',
];
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
$this
->drupalCreateContentType([
'type' => 'article',
]);
$this
->drupalLogin($this
->drupalCreateUser([
'create article content',
'edit own article content',
]));
}
public function testReEnabledField() {
$field_storage = FieldStorageConfig::create([
'field_name' => 'field_telephone',
'entity_type' => 'node',
'type' => 'telephone',
]);
$field_storage
->save();
FieldConfig::create([
'field_storage' => $field_storage,
'bundle' => 'article',
'label' => 'Telephone Number',
])
->save();
$display_repository = \Drupal::service('entity_display.repository');
$display_repository
->getFormDisplay('node', 'article')
->setComponent('field_telephone', [
'type' => 'telephone_default',
'settings' => [
'placeholder' => '123-456-7890',
],
])
->save();
$display_repository
->getViewDisplay('node', 'article')
->setComponent('field_telephone', [
'type' => 'telephone_link',
'weight' => 1,
])
->save();
$this
->drupalGet('node/add/article');
$this
->assertSession()
->fieldValueEquals("field_telephone[0][value]", '');
$edit = [
'title[0][value]' => $this
->randomMachineName(),
'field_telephone[0][value]' => "123456789",
];
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->responseContains('<a href="tel:123456789">');
$admin_user = $this
->drupalCreateUser([
'access administration pages',
'administer modules',
]);
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/modules/uninstall');
$this
->assertSession()
->pageTextContains("The Telephone number field type is used in the following field: node.field_telephone");
$field_storage2 = FieldStorageConfig::create([
'field_name' => 'field_telephone_2',
'entity_type' => 'user',
'type' => 'telephone',
]);
$field_storage2
->save();
FieldConfig::create([
'field_storage' => $field_storage2,
'bundle' => 'user',
'label' => 'User Telephone Number',
])
->save();
$this
->drupalGet('admin/modules/uninstall');
$this
->assertSession()
->pageTextContains("The Telephone number field type is used in the following fields: node.field_telephone, user.field_telephone_2");
$field_storage
->delete();
$field_storage2
->delete();
$this
->drupalGet('admin/modules/uninstall');
$this
->assertSession()
->pageTextContains('Uninstall');
$this
->assertSession()
->pageTextContains('Fields pending deletion');
$this
->cronRun();
$this
->drupalGet('admin/modules/uninstall');
$this
->assertSession()
->pageTextContains('Uninstall');
$this
->assertSession()
->pageTextNotContains("The Telephone number field type is used in the following field: node.field_telephone");
$this
->assertSession()
->pageTextNotContains('Fields pending deletion');
}
}