function CommentSourceWithHighWaterTest::providerSource

Same name and namespace in other branches
  1. 9 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6\CommentSourceWithHighWaterTest::providerSource()
  2. 8.9.x core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6\CommentSourceWithHighWaterTest::providerSource()
  3. 11.x core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6\CommentSourceWithHighWaterTest::providerSource()

File

core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php, line 26

Class

CommentSourceWithHighWaterTest
Tests the Drupal 6 comment source w/ high water handling.

Namespace

Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6

Code

public static function providerSource() {
  $tests = [];
  // The source data.
  $tests[0]['source_data']['comments'] = [
    [
      'cid' => 1,
      'pid' => 0,
      'nid' => 2,
      'uid' => 3,
      'subject' => 'subject value 1',
      'comment' => 'comment value 1',
      'hostname' => 'hostname value 1',
      'timestamp' => 1382255613,
      'status' => 0,
      'thread' => '',
      'name' => '',
      'mail' => '',
      'homepage' => '',
      'format' => 'test_format1',
      'type' => 'story',
    ],
    [
      'cid' => 2,
      'pid' => 1,
      'nid' => 3,
      'uid' => 4,
      'subject' => 'subject value 2',
      'comment' => 'comment value 2',
      'hostname' => 'hostname value 2',
      'timestamp' => 1382255662,
      'status' => 0,
      'thread' => '',
      'name' => '',
      'mail' => '',
      'homepage' => '',
      'format' => 'test_format2',
      'type' => 'page',
    ],
  ];
  $tests[0]['source_data']['node'] = [
    [
      'nid' => 2,
      'type' => 'story',
      'language' => 'en',
    ],
    [
      'nid' => 3,
      'type' => 'page',
      'language' => 'fr',
    ],
  ];
  // The expected results.
  $tests[0]['expected_data'] = [
    [
      'cid' => 2,
      'pid' => 1,
      'nid' => 3,
      'uid' => 4,
      'subject' => 'subject value 2',
      'comment' => 'comment value 2',
      'hostname' => 'hostname value 2',
      'timestamp' => 1382255662,
      'status' => 1,
      'thread' => '',
      'name' => '',
      'mail' => '',
      'homepage' => '',
      'format' => 'test_format2',
      'type' => 'page',
      'language' => 'fr',
    ],
  ];
  // The expected count is the count returned by the query before the query
  // is modified by SqlBase::initializeIterator().
  $tests[0]['expected_count'] = 2;
  $tests[0]['configuration']['high_water_property']['name'] = 'timestamp';
  $tests[0]['high_water'] = $tests[0]['source_data']['comments'][0]['timestamp'];
  return $tests;
}

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