View source
<?php
namespace Drupal\Tests\sms\Functional;
use Drupal\entity_test\Entity\EntityTest;
use Drupal\field\FieldStorageConfigInterface;
use Drupal\sms\Entity\PhoneNumberVerification;
class SmsFrameworkPhoneNumberAdminTest extends SmsFrameworkBrowserTestBase {
public static $modules = [
'block',
'entity_test',
];
protected $entityTypeManager;
protected function setUp() {
parent::setUp();
$this->entityTypeManager = $this->container
->get('entity_type.manager');
$this
->drupalPlaceBlock('page_title_block');
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('local_actions_block');
$account = $this
->drupalCreateUser([
'administer smsframework',
]);
$this
->drupalLogin($account);
}
public function testPhoneNumberList() {
$this
->drupalGet('admin/config/smsframework/phone_number');
$this
->assertRaw(t('No phone number settings found.'));
$this
->assertLinkByHref('admin/config/smsframework/phone_number/add');
$this
->createPhoneNumberSettings('entity_test', 'entity_test');
$entity = EntityTest::create();
$quantity = [
6,
2,
4,
];
for ($j = 0; $j < $quantity[0]; $j++) {
$verification = PhoneNumberVerification::create();
$verification
->setStatus(FALSE)
->set('created', 0)
->setEntity($entity)
->save();
}
for ($j = 0; $j < $quantity[1]; $j++) {
$verification = PhoneNumberVerification::create();
$verification
->setStatus(TRUE)
->setEntity($entity)
->save();
}
for ($j = 0; $j < $quantity[2]; $j++) {
$verification = PhoneNumberVerification::create();
$verification
->setStatus(FALSE)
->setEntity($entity)
->save();
}
$this
->drupalGet('admin/config/smsframework/phone_number');
$this
->assertRaw('<td>entity_test</td>
<td>' . $quantity[0] . '</td>
<td>' . $quantity[1] . '</td>
<td>' . ($quantity[0] + $quantity[2]) . '</td>
<td>' . array_sum($quantity) . '</td>');
}
public function testPhoneNumberCrud() {
$this
->drupalGet('admin/config/smsframework/phone_number/add');
$this
->assertResponse(200);
$edit = [
'entity_bundle' => 'entity_test|entity_test',
'field_mapping[phone_number]' => '!create',
];
$this
->drupalPostForm('admin/config/smsframework/phone_number/add', $edit, t('Save'));
$this
->assertUrl('admin/config/smsframework/phone_number');
$t_args = [
'%id' => 'entity_test.entity_test',
];
$this
->assertRaw(t('Phone number settings %id created.', $t_args));
$this
->assertRaw('<td>entity_test</td>
<td>entity_test</td>', 'Phone number settings displayed as row.');
$this
->assertLinkByHref('admin/config/smsframework/phone_number/entity_test.entity_test');
$this
->assertLinkByHref('admin/config/smsframework/phone_number/entity_test.entity_test/delete');
$this
->drupalGet('admin/config/smsframework/phone_number/add');
$this
->assertNoOption('edit-entity-bundle', 'entity_test|entity_test');
$this
->drupalGet('admin/config/smsframework/phone_number/entity_test.entity_test');
$this
->assertField('field_mapping[phone_number]', 'Phone number field exists.');
$this
->assertNoField('entity_bundle', 'Bundle field does not exist.');
$this
->assertOptionSelected('edit-field-mapping-phone-number', 'phone_number');
$edit = [
'code_lifetime' => '7777',
];
$this
->drupalPostForm('admin/config/smsframework/phone_number/entity_test.entity_test', $edit, t('Save'));
$this
->assertEqual(7777, $this
->config('sms.phone.entity_test.entity_test')
->get('verification_code_lifetime'));
$this
->drupalGet('admin/config/smsframework/phone_number/entity_test.entity_test/delete');
$this
->assertRaw(t('Are you sure you want to delete SMS phone number settings %label?', [
'%label' => 'entity_test.entity_test',
]));
$this
->drupalPostForm('admin/config/smsframework/phone_number/entity_test.entity_test/delete', [], t('Delete'));
$this
->assertUrl('admin/config/smsframework/phone_number');
$this
->assertRaw(t('Phone number settings %label was deleted.', [
'%label' => 'entity_test.entity_test',
]));
$this
->assertRaw('No phone number settings found.');
}
public function testPhoneNumberFieldCreate() {
$field_name_telephone = 'phone_number';
$field_storage = $this->entityTypeManager
->getStorage('field_storage_config');
$field_storage
->create([
'entity_type' => 'entity_test',
'field_name' => $field_name_telephone,
'type' => 'telephone',
])
->save();
$edit = [
'entity_bundle' => 'entity_test|entity_test',
'field_mapping[phone_number]' => '!create',
];
$this
->drupalPostForm('admin/config/smsframework/phone_number/add', $edit, t('Save'));
$field_name_telephone .= '_2';
$field_config = $field_storage
->load('entity_test.' . $field_name_telephone);
$this
->assertTrue($field_config instanceof FieldStorageConfigInterface, 'Field config created.');
$this
->drupalGet('admin/config/smsframework/phone_number/entity_test.entity_test');
$this
->assertResponse(200);
$this
->assertOptionSelected('edit-field-mapping-phone-number', $field_name_telephone);
}
}