function ExecutableFinderTest::testComposerInstalledInProject

Tests that the executable finder tries to use a local copy of Composer.

File

core/modules/package_manager/tests/src/Unit/ExecutableFinderTest.php, line 43

Class

ExecutableFinderTest
@covers \Drupal\package_manager\ExecutableFinder[[api-linebreak]] @group package_manager @internal

Namespace

Drupal\Tests\package_manager\Unit

Code

public function testComposerInstalledInProject() : void {
  vfsStream::setup('root', NULL, [
    'composer-path' => [
      'bin' => [],
    ],
  ]);
  $composer_path = 'vfs://root/composer-path/bin/composer';
  touch($composer_path);
  $this->assertFileExists($composer_path);
  $decorated = $this->prophesize(ExecutableFinderInterface::class);
  $decorated->find('composer')
    ->willReturn('the real Composer');
  $finder = new ExecutableFinder($decorated->reveal(), $this->getConfigFactoryStub([
    'package_manager.settings' => [
      'executables' => [],
    ],
  ]));
  $reflector = new \ReflectionProperty($finder, 'composerPath');
  $reflector->setValue($finder, $composer_path);
  $this->assertSame($composer_path, $finder->find('composer'));
  // If the executable disappears, or Composer isn't locally installed, the
  // decorated executable finder should be called.
  unlink($composer_path);
  $this->assertSame('the real Composer', $finder->find('composer'));
  $reflector->setValue($finder, FALSE);
  $this->assertSame('the real Composer', $finder->find('composer'));
}

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