MigrateViewModesTest.php

Same filename in this branch
  1. 11.x core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php
Same filename and directory in other branches
  1. 9 core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php
  2. 9 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateViewModesTest.php
  3. 8.9.x core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php
  4. 8.9.x core/modules/node/tests/src/Kernel/Migrate/d6/MigrateViewModesTest.php
  5. 10 core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php
  6. 10 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateViewModesTest.php

Namespace

Drupal\Tests\node\Kernel\Migrate\d6

File

core/modules/node/tests/src/Kernel/Migrate/d6/MigrateViewModesTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\node\Kernel\Migrate\d6;

use Drupal\Core\Entity\Entity\EntityViewMode;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Migrate view modes.
 *
 * @group migrate_drupal_6
 */
class MigrateViewModesTest extends MigrateDrupal6TestBase {
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->executeMigration('d6_view_modes');
    }
    
    /**
     * Tests Drupal 6 view modes to Drupal 8 migration.
     */
    public function testViewModes() : void {
        // Test a new view mode.
        $view_mode = EntityViewMode::load('node.preview');
        $this->assertNotNull($view_mode);
        $this->assertSame('Preview', $view_mode->label(), 'View mode has correct label.');
        // Test the ID map.
        $this->assertSame([
            [
                'node',
                'preview',
            ],
        ], $this->getMigration('d6_view_modes')
            ->getIdMap()
            ->lookupDestinationIds([
            1,
        ]));
    }

}

Classes

Title Deprecated Summary
MigrateViewModesTest Migrate view modes.

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