class MigrateSearchPageTest

Same name in this branch
  1. 9 core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchPageTest.php \Drupal\Tests\search\Kernel\Migrate\d7\MigrateSearchPageTest
Same name and namespace in other branches
  1. 11.x core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchPageTest.php \Drupal\Tests\search\Kernel\Migrate\d6\MigrateSearchPageTest
  2. 11.x core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchPageTest.php \Drupal\Tests\search\Kernel\Migrate\d7\MigrateSearchPageTest

Upgrade search page variables.

@group migrate_drupal_6

Hierarchy

Expanded class hierarchy of MigrateSearchPageTest

File

core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchPageTest.php, line 14

Namespace

Drupal\Tests\search\Kernel\Migrate\d6
View source
class MigrateSearchPageTest extends MigrateDrupal6TestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'search',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->executeMigration('search_page');
  }
  
  /**
   * Tests Drupal 6 search settings to Drupal 8 search page entity migration.
   */
  public function testSearchPage() {
    $id = 'node_search';
    /** @var \Drupal\search\Entity\SearchPage $search_page */
    $search_page = SearchPage::load($id);
    $this->assertSame($id, $search_page->id());
    $configuration = $search_page->getPlugin()
      ->getConfiguration();
    $this->assertSame([
      'comments' => 5,
      'promote' => 0,
      'recent' => 0,
      'relevance' => 2,
      'sticky' => 8,
      'views' => 1,
    ], $configuration['rankings']);
    $this->assertSame('node', $search_page->getPath());
    // Test that we can re-import using the EntitySearchPage destination.
    Database::getConnection('default', 'migrate')->update('variable')
      ->fields([
      'value' => serialize(4),
    ])
      ->condition('name', 'node_rank_comments')
      ->execute();
    /** @var \Drupal\migrate\Plugin\MigrationInterface $migration */
    $migration = $this->getMigration('search_page');
    // Indicate we're rerunning a migration that's already run.
    $migration->getIdMap()
      ->prepareUpdate();
    $this->executeMigration($migration);
    $configuration = SearchPage::load($id)->getPlugin()
      ->getConfiguration();
    $this->assertSame(4, $configuration['rankings']['comments']);
    // Test that a configurable search without a configuration imports. Do this
    // by removing the node rankings from the source database.
    Database::getConnection('default', 'migrate')->delete('variable')
      ->condition('name', 'node_rank_%', 'LIKE')
      ->execute();
    $migration = $this->getMigration('search_page');
    $migration->getIdMap()
      ->prepareUpdate();
    $this->executeMigration($migration);
    $configuration = SearchPage::load($id)->getPlugin()
      ->getConfiguration();
    $this->assertSame([], $configuration['rankings']);
  }

}

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