You are here

MigrateBlockedIPsTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/ban/src/Tests/Migrate/d7/MigrateBlockedIPsTest.php

File

core/modules/ban/src/Tests/Migrate/d7/MigrateBlockedIPsTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\ban\Tests\Migrate\d7\MigrateBlockedIPsTest.
 */
namespace Drupal\ban\Tests\Migrate\d7;

use Drupal\config\Tests\SchemaCheckTestTrait;
use Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase;

/**
 * Migrate blocked IPs.
 *
 * @group ban
 */
class MigrateBlockedIPsTest extends MigrateDrupal7TestBase {
  use SchemaCheckTestTrait;

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'ban',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->installSchema('ban', [
      'ban_ip',
    ]);
    $this
      ->executeMigration('d7_blocked_ips');
  }

  /**
   * Tests migration of blocked IPs.
   */
  public function testBlockedIPs() {
    $this
      ->assertTrue(\Drupal::service('ban.ip_manager')
      ->isBanned('111.111.111.111'));
  }

}

Classes

Namesort descending Description
MigrateBlockedIPsTest Migrate blocked IPs.