CreateHalSettingsForLinkDomainUpdateTest.php

Namespace

Drupal\Tests\hal\Functional\Update

File

core/modules/hal/tests/src/Functional/Update/CreateHalSettingsForLinkDomainUpdateTest.php

View source
<?php

namespace Drupal\Tests\hal\Functional\Update;

use Drupal\FunctionalTests\Update\UpdatePathTestBase;

/**
 * Tests that 'hal.settings' is created, to store 'link_domain'.
 *
 * @see https://www.drupal.org/node/2758897
 *
 * @group hal
 * @group legacy
 */
class CreateHalSettingsForLinkDomainUpdateTest extends UpdatePathTestBase {
    
    /**
     * {@inheritdoc}
     */
    public function setDatabaseDumpFiles() {
        $this->databaseDumpFiles = [
            __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.bare.standard.php.gz',
            __DIR__ . '/../../../fixtures/update/drupal-8.hal-hal_update_8301.php',
        ];
    }
    
    /**
     * Tests hal_update_8301().
     */
    public function testHalSettingsCreated() {
        // Make sure we have the expected values before the update.
        $hal_settings = $this->config('hal.settings');
        $this->assertIdentical([], $hal_settings->getRawData());
        $this->runUpdates();
        // Make sure we have the expected values after the update.
        $hal_settings = \Drupal::configFactory()->get('hal.settings');
        $this->assertTrue(array_key_exists('link_domain', $hal_settings->getRawData()));
        $this->assertIdentical(NULL, $hal_settings->getRawData()['link_domain']);
    }

}

Classes

Title Deprecated Summary
CreateHalSettingsForLinkDomainUpdateTest Tests that 'hal.settings' is created, to store 'link_domain'.

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