Version 1
[yaffs-website] / web / core / modules / language / tests / src / Unit / process / LanguageNegotiationTest.php
diff --git a/web/core/modules/language/tests/src/Unit/process/LanguageNegotiationTest.php b/web/core/modules/language/tests/src/Unit/process/LanguageNegotiationTest.php
new file mode 100644 (file)
index 0000000..695c91f
--- /dev/null
@@ -0,0 +1,86 @@
+<?php
+
+namespace Drupal\Tests\language\Unit\process;
+
+use Drupal\language\Plugin\migrate\process\LanguageNegotiation;
+use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
+use Drupal\migrate\MigrateException;
+
+/**
+ * @coversDefaultClass \Drupal\language\Plugin\migrate\process\LanguageNegotiation
+ * @group language
+ */
+class LanguageNegotiationTest extends MigrateProcessTestCase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    $this->plugin = new LanguageNegotiation([], 'map', []);
+    parent::setUp();
+  }
+
+  /**
+   * Tests successful transformation without weights.
+   */
+  public function testTransformWithWeights() {
+    $source = [
+      [
+        'locale-url' => [],
+        'language-default' => [],
+      ],
+      [
+        'locale-url' => -10,
+        'locale-session' => -9,
+        'locale-user' => -8,
+        'locale-browser' => -7,
+        'language-default' => -6,
+      ],
+    ];
+    $expected = [
+      'enabled' => [
+        'language-url' => -10,
+        'language-selected' => -6,
+      ],
+      'method_weights' => [
+        'language-url' => -10,
+        'language-session' => -9,
+        'language-user' => -8,
+        'language-browser' => -7,
+        'language-selected' => -6,
+      ],
+    ];
+    $value = $this->plugin->transform($source, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertSame($value, $expected);
+  }
+
+  /**
+   * Tests successful transformation without weights.
+   */
+  public function testTransformWithoutWeights() {
+    $source = [
+      [
+        'locale-url' => [],
+        'locale-url-fallback' => [],
+      ],
+    ];
+    $expected = [
+      'enabled' => [
+        'language-url' => 0,
+        'language-url-fallback' => 1,
+      ],
+    ];
+    $value = $this->plugin->transform($source, $this->migrateExecutable, $this->row, 'destinationproperty');
+    $this->assertSame($value, $expected);
+  }
+
+  /**
+   * Tests string input.
+   */
+  public function testStringInput() {
+    $this->plugin = new LanguageNegotiation([], 'map', []);
+    $this->setExpectedException(MigrateException::class, 'The input should be an array');
+    $this->plugin->transform('foo', $this->migrateExecutable, $this->row, 'destinationproperty');
+  }
+
+}