MigrateSyslogConfigsTest.php

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

Namespace

Drupal\Tests\syslog\Kernel\Migrate\d7

File

core/modules/syslog/tests/src/Kernel/Migrate/d7/MigrateSyslogConfigsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\syslog\Kernel\Migrate\d7;

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

/**
 * Upgrade variables to syslog.settings.yml.
 *
 * @group syslog
 */
class MigrateSyslogConfigsTest extends MigrateDrupal7TestBase {
    use SchemaCheckTestTrait;
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'syslog',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installConfig(static::$modules);
        $this->executeMigration('d7_syslog_settings');
    }
    
    /**
     * Tests migration of syslog variables to syslog.settings.yml.
     */
    public function testSyslogSettings() : void {
        $config = $this->config('syslog.settings');
        // 8 == LOG_USER
        $this->assertSame(8, $config->get('facility'));
        $this->assertSame('!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message', $config->get('format'));
        $this->assertSame('drupal', $config->get('identity'));
    }

}

Classes

Title Deprecated Summary
MigrateSyslogConfigsTest Upgrade variables to syslog.settings.yml.

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