You are here

DistributionProfileTest.php in Zircon Profile 8

File

core/modules/system/src/Tests/Installer/DistributionProfileTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Installer\DistributionProfileTest.
 */
namespace Drupal\system\Tests\Installer;

use Drupal\Component\Serialization\Yaml;
use Drupal\simpletest\InstallerTestBase;

/**
 * Tests distribution profile support.
 *
 * @group Installer
 */
class DistributionProfileTest extends InstallerTestBase {

  /**
   * The distribution profile info.
   *
   * @var array
   */
  protected $info;
  protected function setUp() {
    $this->info = array(
      'type' => 'profile',
      'core' => \Drupal::CORE_COMPATIBILITY,
      'name' => 'Distribution profile',
      'distribution' => array(
        'name' => 'My Distribution',
        'install' => array(
          'theme' => 'bartik',
        ),
      ),
    );

    // File API functions are not available yet.
    $path = $this->siteDirectory . '/profiles/mydistro';
    mkdir($path, 0777, TRUE);
    file_put_contents("{$path}/mydistro.info.yml", Yaml::encode($this->info));
    parent::setUp();
  }

  /**
   * {@inheritdoc}
   */
  protected function setUpLanguage() {

    // Verify that the distribution name appears.
    $this
      ->assertRaw($this->info['distribution']['name']);

    // Verify that the requested theme is used.
    $this
      ->assertRaw($this->info['distribution']['install']['theme']);

    // Verify that the "Choose profile" step does not appear.
    $this
      ->assertNoText('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() {
    $this
      ->assertUrl('user/1');
    $this
      ->assertResponse(200);

    // Confirm that we are logged-in after installation.
    $this
      ->assertText($this->rootUser
      ->getUsername());
  }

}

Classes

Namesort descending Description
DistributionProfileTest Tests distribution profile support.