View source
<?php
namespace Drupal\telephone\Tests;
use Drupal\simpletest\WebTestBase;
class TelephoneFieldTest extends WebTestBase {
public static $modules = array(
'field',
'node',
'telephone',
);
protected $webUser;
protected function setUp() {
parent::setUp();
$this
->drupalCreateContentType(array(
'type' => 'article',
));
$this->webUser = $this
->drupalCreateUser(array(
'create article content',
'edit own article content',
));
$this
->drupalLogin($this->webUser);
}
function testTelephoneField() {
entity_create('field_storage_config', array(
'field_name' => 'field_telephone',
'entity_type' => 'node',
'type' => 'telephone',
))
->save();
entity_create('field_config', array(
'field_name' => 'field_telephone',
'label' => 'Telephone Number',
'entity_type' => 'node',
'bundle' => 'article',
))
->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();
$this
->drupalGet('node/add/article');
$this
->assertFieldByName("field_telephone[0][value]", '', 'Widget found.');
$this
->assertRaw('placeholder="123-456-7890"');
$edit = array(
'title[0][value]' => $this
->randomMachineName(),
'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.');
$edit = array(
'title[0][value]' => $this
->randomMachineName(),
'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.');
}
}