AllowedScaffoldPackagesValidatorTest.php

Namespace

Drupal\Tests\package_manager\Kernel

File

core/modules/package_manager/tests/src/Kernel/AllowedScaffoldPackagesValidatorTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\package_manager\Kernel;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\fixture_manipulator\ActiveFixtureManipulator;
use Drupal\package_manager\Event\PreApplyEvent;
use Drupal\package_manager\Event\PreCreateEvent;
use Drupal\package_manager\ValidationResult;

/**
 * @covers \Drupal\package_manager\Validator\AllowedScaffoldPackagesValidator
 * @group package_manager
 * @internal
 */
class AllowedScaffoldPackagesValidatorTest extends PackageManagerKernelTestBase {
  use StringTranslationTrait;
  
  /**
   * Tests that the allowed-packages setting is validated during pre-create.
   */
  public function testPreCreate() : void {
    (new ActiveFixtureManipulator())->addConfig([
      'extra.drupal-scaffold.allowed-packages' => [
        "drupal/dummy_scaffolding",
        "drupal/dummy_scaffolding_2",
      ],
    ])
      ->commitChanges()
      ->updateLock();
    $result = ValidationResult::createError([
      $this->t("drupal/dummy_scaffolding"),
      $this->t("drupal/dummy_scaffolding_2"),
    ], $this->t('Any packages other than the implicitly allowed packages are not allowed to scaffold files. See <a href="https://www.drupal.org/docs/develop/using-composer/using-drupals-composer-scaffold">the scaffold documentation</a> for more information.'));
    $this->assertStatusCheckResults([
      $result,
    ]);
    $this->assertResults([
      $result,
    ], PreCreateEvent::class);
  }
  
  /**
   * Tests that the allowed-packages setting is validated during pre-apply.
   */
  public function testPreApply() : void {
    $this->getStageFixtureManipulator()
      ->addConfig([
      'extra.drupal-scaffold.allowed-packages' => [
        "drupal/dummy_scaffolding",
      ],
    ], TRUE);
    $result = ValidationResult::createError([
      $this->t("drupal/dummy_scaffolding"),
    ], $this->t('Any packages other than the implicitly allowed packages are not allowed to scaffold files. See <a href="https://www.drupal.org/docs/develop/using-composer/using-drupals-composer-scaffold">the scaffold documentation</a> for more information.'));
    $this->assertResults([
      $result,
    ], PreApplyEvent::class);
  }

}

Classes

Title Deprecated Summary
AllowedScaffoldPackagesValidatorTest @covers \Drupal\package_manager\Validator\AllowedScaffoldPackagesValidator[[api-linebreak]] @group package_manager @internal

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