function AllowedScaffoldPackagesValidatorTest::testPreCreate

Tests that the allowed-packages setting is validated during pre-create.

File

core/modules/package_manager/tests/src/Kernel/AllowedScaffoldPackagesValidatorTest.php, line 25

Class

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

Namespace

Drupal\Tests\package_manager\Kernel

Code

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);
}

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