public function FormatDateTest::testMigrateExceptionBadFormat in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/tests/src/Unit/process/FormatDateTest.php \Drupal\Tests\migrate\Unit\process\FormatDateTest::testMigrateExceptionBadFormat()
Tests that date format mismatches will throw an exception.
File
- core/
modules/ migrate/ tests/ src/ Unit/ process/ FormatDateTest.php, line 50
Class
- FormatDateTest
- Tests the format date process plugin.
Namespace
Drupal\Tests\migrate\Unit\processCode
public function testMigrateExceptionBadFormat() {
$configuration = [
'from_format' => 'm/d/Y',
'to_format' => 'Y-m-d',
];
$this
->expectException(MigrateException::class);
$this
->expectExceptionMessage("Format date plugin could not transform 'January 5, 1955' using the format 'm/d/Y' for destination 'field_date'. Error: The date cannot be created from a format.");
$this->plugin = new FormatDate($configuration, 'test_format_date', []);
$this->plugin
->transform('January 5, 1955', $this->migrateExecutable, $this->row, 'field_date');
}