SingleVisibleProfileTest.php

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

Namespace

Drupal\FunctionalTests\Installer

File

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

View source
<?php

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

use Drupal\Core\Serialization\Yaml;

/**
 * Tests distribution profile support.
 *
 * @group Installer
 */
class SingleVisibleProfileTest extends InstallerTestBase {
    
    /**
     * The installation profile to install.
     *
     * Not needed when only one is visible.
     *
     * @var string
     */
    protected $profile = NULL;
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected function prepareEnvironment() {
        parent::prepareEnvironment();
        $profiles = [
            'standard',
            'demo_umami',
        ];
        foreach ($profiles as $profile) {
            $info = [
                'type' => 'profile',
                'core_version_requirement' => '^8 || ^9 || ^10',
                'name' => 'Override ' . $profile,
                'hidden' => TRUE,
            ];
            // File API functions are not available yet.
            $path = $this->siteDirectory . '/profiles/' . $profile;
            mkdir($path, 0777, TRUE);
            file_put_contents("{$path}/{$profile}.info.yml", Yaml::encode($info));
        }
    }
    
    /**
     * {@inheritdoc}
     */
    protected function setUpProfile() {
        // This step is skipped, because there is only one visible 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 the minimal profile was installed.
        $this->assertEquals('minimal', \Drupal::installProfile());
    }

}

Classes

Title Deprecated Summary
SingleVisibleProfileTest Tests distribution profile support.

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