BlockTest.php

Same filename in this branch
  1. 10 core/modules/jsonapi/tests/src/Functional/BlockTest.php
  2. 10 core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php
  3. 10 core/modules/block/tests/src/Functional/BlockTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/BlockTest.php
  2. 9 core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php
  3. 9 core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php
  4. 9 core/modules/block/tests/src/Functional/BlockTest.php
  5. 8.9.x core/modules/jsonapi/tests/src/Functional/BlockTest.php
  6. 8.9.x core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php
  7. 8.9.x core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php
  8. 8.9.x core/modules/block/tests/src/Functional/BlockTest.php
  9. 11.x core/modules/jsonapi/tests/src/Functional/BlockTest.php
  10. 11.x core/modules/views/tests/src/Unit/Plugin/views/display/BlockTest.php
  11. 11.x core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php
  12. 11.x core/modules/block/tests/src/Functional/BlockTest.php

Namespace

Drupal\Tests\block\Kernel\Plugin\migrate\source

File

core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php

View source
<?php

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

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;

/**
 * Tests block source plugin.
 *
 * @covers \Drupal\block\Plugin\migrate\source\Block
 * @group block
 */
class BlockTest extends MigrateSqlSourceTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'block',
    'migrate_drupal',
  ];
  
  /**
   * {@inheritdoc}
   */
  public static function providerSource() {
    $tests = [];
    // The source data.
    $tests[0]['source_data']['blocks'] = [
      [
        'bid' => 1,
        'module' => 'block',
        'delta' => '1',
        'theme' => 'garland',
        'status' => 1,
        'weight' => 0,
        'region' => 'left',
        'visibility' => 0,
        'pages' => '',
        'title' => 'Test Title 01',
        'cache' => -1,
      ],
      [
        'bid' => 2,
        'module' => 'block',
        'delta' => '2',
        'theme' => 'garland',
        'status' => 1,
        'weight' => 5,
        'region' => 'right',
        'visibility' => 0,
        'pages' => '<front>',
        'title' => 'Test Title 02',
        'cache' => -1,
      ],
    ];
    $tests[0]['source_data']['blocks_roles'] = [
      [
        'module' => 'block',
        'delta' => 1,
        'rid' => 2,
      ],
      [
        'module' => 'block',
        'delta' => 2,
        'rid' => 2,
      ],
      [
        'module' => 'block',
        'delta' => 2,
        'rid' => 100,
      ],
    ];
    $tests[0]['source_data']['role'] = [
      [
        'rid' => 2,
        'name' => 'authenticated user',
      ],
    ];
    $tests[0]['source_data']['system'] = [
      [
        'filename' => 'modules/system/system.module',
        'name' => 'system',
        'type' => 'module',
        'owner' => '',
        'status' => '1',
        'throttle' => '0',
        'bootstrap' => '0',
        'schema_version' => '6055',
        'weight' => '0',
        'info' => 'a:0:{}',
      ],
    ];
    // The expected results.
    $tests[0]['expected_data'] = [
      [
        'bid' => 1,
        'module' => 'block',
        'delta' => '1',
        'theme' => 'garland',
        'status' => 1,
        'weight' => 0,
        'region' => 'left',
        'visibility' => 0,
        'pages' => '',
        'title' => 'Test Title 01',
        'cache' => -1,
        'roles' => [
          2,
        ],
      ],
      [
        'bid' => 2,
        'module' => 'block',
        'delta' => '2',
        'theme' => 'garland',
        'status' => 1,
        'weight' => 5,
        'region' => 'right',
        'visibility' => 0,
        'pages' => '<front>',
        'title' => 'Test Title 02',
        'cache' => -1,
        'roles' => [
          2,
        ],
      ],
    ];
    return $tests;
  }

}

Classes

Title Deprecated Summary
BlockTest Tests block source plugin.

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