Skip to content
TelephoneFieldTest.php 2.6 KiB
Newer Older
namespace Drupal\Tests\telephone\Functional;
use Drupal\field\Entity\FieldConfig;
use Drupal\Tests\BrowserTestBase;
use Drupal\field\Entity\FieldStorageConfig;

/**
 * Tests the creation of telephone fields.
class TelephoneFieldTest extends BrowserTestBase {
  /**
   * A user with permission to create articles.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $webUser;
    $this->drupalCreateContentType(['type' => 'article']);
    $this->webUser = $this->drupalCreateUser(['create article content', 'edit own article content']);
  }

  // Test fields.

  /**
   * Helper function for testTelephoneField().
   */
  public function testTelephoneField() {
    // Add the telephone field to the article content type.
      'field_name' => 'field_telephone',
      'label' => 'Telephone Number',
      'entity_type' => 'node',
      'bundle' => 'article',

    entity_get_form_display('node', 'article', 'default')
      ->setComponent('field_telephone', [

    entity_get_display('node', 'article', 'default')
      ->setComponent('field_telephone', [
        'type' => 'telephone_link',
        'weight' => 1,
    // Display creation form.
    $this->drupalGet('node/add/article');
    $this->assertFieldByName("field_telephone[0][value]", '', 'Widget found.');
    $this->assertRaw('placeholder="123-456-7890"');

      'field_telephone[0][value]' => "123456789",
    $this->drupalPostForm(NULL, $edit, t('Save'));
    $this->assertRaw('<a href="tel:123456789">', 'A telephone link is provided on the article node page.');

    // Add number with a space in it. Need to ensure it is stripped on output.
      'field_telephone[0][value]' => "1234 56789",
    $this->drupalPostForm('node/add/article', $edit, t('Save'));
    $this->assertRaw('<a href="tel:123456789">', 'Telephone link is output with whitespace removed.');
  }