VariableMultiRowTest.php

Same filename and directory in other branches
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php
  2. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php
  3. 10 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php

Namespace

Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source

File

core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source;

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;
// cspell:ignore multirow

/**
 * Tests the variable multirow source plugin.
 *
 * @covers \Drupal\migrate_drupal\Plugin\migrate\source\VariableMultiRow
 *
 * @group migrate_drupal
 */
class VariableMultiRowTest extends MigrateSqlSourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'migrate_drupal',
    ];
    
    /**
     * {@inheritdoc}
     */
    public static function providerSource() {
        $tests = [];
        // The source data.
        $tests[0]['source_data']['variable'] = [
            [
                'name' => 'foo',
                'value' => 'i:1;',
            ],
            [
                'name' => 'bar',
                'value' => 'b:0;',
            ],
        ];
        // The expected results.
        $tests[0]['expected_data'] = [
            [
                'name' => 'foo',
                'value' => 1,
            ],
            [
                'name' => 'bar',
                'value' => FALSE,
            ],
        ];
        // The expected count.
        $tests[0]['expected_count'] = NULL;
        // The source plugin configuration.
        $tests[0]['configuration']['variables'] = [
            'foo',
            'bar',
        ];
        return $tests;
    }

}

Classes

Title Deprecated Summary
VariableMultiRowTest Tests the variable multirow source plugin.

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