Skip to content
Snippets Groups Projects
Verified Commit 6acd4fdd authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3202665 by danflanagan8, Ratan Priya, rupertj, longwave, smustgrave,...

Issue #3202665 by danflanagan8, Ratan Priya, rupertj, longwave, smustgrave, thursday_bw: "A(n) object was thrown while attempting to stub." Hard to debug migration message

(cherry picked from commit 2e76fda4)
parent 5d0e6445
No related branches found
No related tags found
9 merge requests!4488Issue #3376281: Random machine names no longer need to be wrapped in strtolower(),!3149Issue #3282285: Email "" does not comply with addr-spec of RFC 2822,!3000Issue #793660: Check for failure of hook_install,!2940Issue #3320240: Entity count query returns a string instead of int,!2937Issue #3315245: Order of languages overrides default language fallback,!2877Issue #3056652 by yogeshmpawar, mashermike, aalin, ranjith_kumar_k_u: Link...,!1627Issue #3082958: Add gitignore(s) to composer-ready project templates,!1014Issue #3226806: Move filter implementations from filter.module to plugin classes,!939Issue #2971209: Allow the MediaLibraryUiBuilder service to use an alternative view display
...@@ -263,7 +263,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable ...@@ -263,7 +263,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
throw $e; throw $e;
} }
catch (\Exception $e) { catch (\Exception $e) {
throw new MigrateException(sprintf('A(n) %s was thrown while attempting to stub.', gettype($e)), $e->getCode(), $e); throw new MigrateException(sprintf('%s was thrown while attempting to stub: %s', get_class($e), $e->getMessage()), $e->getCode(), $e);
} }
} }
if ($destination_ids) { if ($destination_ids) {
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
namespace Drupal\Tests\migrate\Unit\process; namespace Drupal\Tests\migrate\Unit\process;
use Drupal\migrate\MigrateException;
use Drupal\migrate\MigrateSkipProcessException; use Drupal\migrate\MigrateSkipProcessException;
use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Plugin\migrate\process\MigrationLookup; use Drupal\migrate\Plugin\migrate\process\MigrationLookup;
...@@ -60,6 +61,12 @@ public function testTransformWithStubbing() { ...@@ -60,6 +61,12 @@ public function testTransformWithStubbing() {
$migration = MigrationLookup::create($this->prepareContainer(), $configuration, '', [], $migration_plugin->reveal()); $migration = MigrationLookup::create($this->prepareContainer(), $configuration, '', [], $migration_plugin->reveal());
$result = $migration->transform(1, $this->migrateExecutable, $this->row, ''); $result = $migration->transform(1, $this->migrateExecutable, $this->row, '');
$this->assertEquals(2, $result); $this->assertEquals(2, $result);
$this->migrateStub->createStub('destination_migration', [1], [], FALSE)->willThrow(new \Exception('Oh noes!'));
$migration = MigrationLookup::create($this->prepareContainer(), $configuration, '', [], $migration_plugin->reveal());
$this->expectException(MigrateException::class);
$this->expectExceptionMessage('Exception was thrown while attempting to stub: Oh noes!');
$migration->transform(1, $this->migrateExecutable, $this->row, '');
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment