function DateTimeItemTest::testDatetimeValidation

Same name in other branches
  1. 8.9.x core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php \Drupal\Tests\datetime\Kernel\DateTimeItemTest::testDatetimeValidation()
  2. 10 core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php \Drupal\Tests\datetime\Kernel\DateTimeItemTest::testDatetimeValidation()
  3. 11.x core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php \Drupal\Tests\datetime\Kernel\DateTimeItemTest::testDatetimeValidation()

Tests the constraint validations for fields with date and time.

@dataProvider datetimeValidationProvider

File

core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php, line 261

Class

DateTimeItemTest
Tests the new entity API for the date field type.

Namespace

Drupal\Tests\datetime\Kernel

Code

public function testDatetimeValidation($value) {
    $this->expectException(AssertionFailedError::class);
    $this->fieldStorage
        ->setSetting('datetime_type', DateTimeItem::DATETIME_TYPE_DATETIME);
    $this->fieldStorage
        ->save();
    $entity = EntityTest::create();
    $entity->set('field_datetime', $value);
    $this->entityValidateAndSave($entity);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.