function reEnableModuleFieldTest::testReEnabledField in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/field/src/Tests/reEnableModuleFieldTest.php \Drupal\field\Tests\reEnableModuleFieldTest::testReEnabledField()
Test the behavior of a field module after being disabled and re-enabled.
See also
field_system_info_alter()
File
- core/
modules/ field/ src/ Tests/ reEnableModuleFieldTest.php, line 47 - Contains \Drupal\field\Tests\reEnableModuleFieldTest.
Class
- reEnableModuleFieldTest
- Tests the behavior of a field module after being disabled and re-enabled.
Namespace
Drupal\field\TestsCode
function testReEnabledField() {
// Add a telephone field to the article content type.
$field_storage = entity_create('field_storage_config', array(
'field_name' => 'field_telephone',
'entity_type' => 'node',
'type' => 'telephone',
));
$field_storage
->save();
entity_create('field_config', array(
'field_storage' => $field_storage,
'bundle' => 'article',
'label' => 'Telephone Number',
))
->save();
entity_get_form_display('node', 'article', 'default')
->setComponent('field_telephone', array(
'type' => 'telephone_default',
'settings' => array(
'placeholder' => '123-456-7890',
),
))
->save();
entity_get_display('node', 'article', 'default')
->setComponent('field_telephone', array(
'type' => 'telephone_link',
'weight' => 1,
))
->save();
// Display the article node form and verify the telephone widget is present.
$this
->drupalGet('node/add/article');
$this
->assertFieldByName("field_telephone[0][value]", '', 'Widget found.');
// Submit an article node with a telephone field so data exist for the
// field.
$edit = array(
'title[0][value]' => $this
->randomMachineName(),
'field_telephone[0][value]' => "123456789",
);
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->assertRaw('<a href="tel:123456789">');
// Test that the module can't be uninstalled from the UI while there is data
// for it's fields.
$admin_user = $this
->drupalCreateUser(array(
'access administration pages',
'administer modules',
));
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/modules/uninstall');
$this
->assertText('Fields type(s) in use');
$field_storage
->delete();
$this
->drupalGet('admin/modules/uninstall');
$this
->assertText('Fields pending deletion');
$this
->cronRun();
$this
->assertNoText('Fields type(s) in use');
$this
->assertNoText('Fields pending deletion');
}