Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / migrate_plus / tests / src / Unit / process / StrReplaceTest.php
diff --git a/web/modules/contrib/migrate_plus/tests/src/Unit/process/StrReplaceTest.php b/web/modules/contrib/migrate_plus/tests/src/Unit/process/StrReplaceTest.php
new file mode 100644 (file)
index 0000000..7194c71
--- /dev/null
@@ -0,0 +1,100 @@
+<?php
+
+namespace Drupal\Tests\migrate_plus\Unit\process;
+
+use Drupal\migrate_plus\Plugin\migrate\process\StrReplace;
+use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
+
+/**
+ * Tests the str replace process plugin.
+ *
+ * @group migrate
+ * @coversDefaultClass \Drupal\migrate_plus\Plugin\migrate\process\StrReplace
+ */
+class StrReplaceTest extends MigrateProcessTestCase {
+
+  /**
+   * Test for a simple str_replace string.
+   */
+  public function testStrReplace() {
+    $value = 'vero eos et accusam et justo vero';
+    $configuration['search'] = 'et';
+    $configuration['replace'] = 'that';
+    $plugin = new StrReplace($configuration, 'str_replace', []);
+    $actual = $plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertSame('vero eos that accusam that justo vero', $actual);
+
+  }
+
+  /**
+   * Test for case insensitive searches.
+   */
+  public function testStrIreplace() {
+    $value = 'VERO eos et accusam et justo vero';
+    $configuration['search'] = 'vero';
+    $configuration['replace'] = 'that';
+    $configuration['case_insensitive'] = TRUE;
+    $plugin = new StrReplace($configuration, 'str_replace', []);
+    $actual = $plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertSame('that eos et accusam et justo that', $actual);
+
+  }
+
+  /**
+   * Test for regular expressions.
+   */
+  public function testPregReplace() {
+    $value = 'vero eos et 123 accusam et justo 123 duo';
+    $configuration['search'] = '/[0-9]{3}/';
+    $configuration['replace'] = 'the';
+    $configuration['regex'] = TRUE;
+    $plugin = new StrReplace($configuration, 'str_replace', []);
+    $actual = $plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertSame('vero eos et the accusam et justo the duo', $actual);
+  }
+
+  /**
+   * Test for MigrateException for "search" configuration.
+   */
+  public function testSearchMigrateException() {
+    $value = 'vero eos et accusam et justo vero';
+    $configuration['replace'] = 'that';
+    $plugin = new StrReplace($configuration, 'str_replace', []);
+    $this->setExpectedException('\Drupal\migrate\MigrateException', '"search" must be configured.');
+    $plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
+  }
+
+  /**
+   * Test for MigrateException for "replace" configuration.
+   */
+  public function testReplaceMigrateException() {
+    $value = 'vero eos et accusam et justo vero';
+    $configuration['search'] = 'et';
+    $plugin = new StrReplace($configuration, 'str_replace', []);
+    $this->setExpectedException('\Drupal\migrate\MigrateException', '"replace" must be configured.');
+    $plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
+  }
+
+  /**
+   * Test for multiple.
+   */
+  public function testIsMultiple() {
+    $value = [
+      'vero eos et accusam et justo vero',
+      'et eos vero accusam vero justo et',
+    ];
+
+    $expected = [
+      'vero eos that accusam that justo vero',
+      'that eos vero accusam vero justo that',
+    ];
+    $configuration['search'] = 'et';
+    $configuration['replace'] = 'that';
+    $plugin = new StrReplace($configuration, 'str_replace', []);
+    $actual = $plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertArrayEquals($expected, $actual);
+
+    $this->assertTrue($plugin->multiple());
+  }
+
+}