MultipleDistributionsProfileTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php
  2. 8.9.x core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php
  3. 10 core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php

Namespace

Drupal\FunctionalTests\Installer

File

core/tests/Drupal/FunctionalTests/Installer/MultipleDistributionsProfileTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\FunctionalTests\Installer;

use Drupal\Component\Serialization\Yaml;

/**
 * Tests multiple distribution profile support.
 *
 * @group Installer
 */
class MultipleDistributionsProfileTest extends InstallerTestBase {
    
    /**
     * The distribution profile info.
     *
     * @var array
     */
    protected $info;
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected function prepareEnvironment() {
        parent::prepareEnvironment();
        // Create two distributions.
        foreach ([
            'distribution_one',
            'distribution_two',
        ] as $name) {
            $info = [
                'type' => 'profile',
                'core_version_requirement' => '*',
                'name' => $name . ' profile',
                'distribution' => [
                    'name' => $name,
                    'install' => [
                        'theme' => 'claro',
                    ],
                ],
            ];
            // File API functions are not available yet.
            $path = $this->root . DIRECTORY_SEPARATOR . $this->siteDirectory . '/profiles/' . $name;
            mkdir($path, 0777, TRUE);
            file_put_contents("{$path}/{$name}.info.yml", Yaml::encode($info));
        }
        // Install the first distribution.
        $this->profile = 'distribution_one';
    }
    
    /**
     * {@inheritdoc}
     */
    protected function setUpLanguage() {
        // Verify that the distribution name appears.
        $this->assertSession()
            ->pageTextContains('distribution_one');
        // Verify that the requested theme is used.
        $this->assertSession()
            ->responseContains('claro');
        // Verify that the "Choose profile" step does not appear.
        $this->assertSession()
            ->pageTextNotContains('profile');
        parent::setUpLanguage();
    }
    
    /**
     * {@inheritdoc}
     */
    protected function setUpProfile() {
        // This step is skipped, because there is a distribution profile.
    }
    
    /**
     * Confirms that the installation succeeded.
     */
    public function testInstalled() : void {
        $this->assertSession()
            ->addressEquals('user/1');
        $this->assertSession()
            ->statusCodeEquals(200);
        // Confirm that we are logged-in after installation.
        $this->assertSession()
            ->pageTextContains($this->rootUser
            ->getAccountName());
        // Confirm that Drupal recognizes this distribution as the current profile.
        $this->assertEquals('distribution_one', \Drupal::installProfile());
        $this->assertEquals('distribution_one', $this->config('core.extension')
            ->get('profile'), 'The install profile has been written to core.extension configuration.');
        $this->rebuildContainer();
        $this->assertEquals('distribution_one', \Drupal::installProfile());
    }

}

Classes

Title Deprecated Summary
MultipleDistributionsProfileTest Tests multiple distribution profile support.

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