function ExecutableFinderTest::testCheckConfigurationForExecutablePath

Tests that the executable finder looks for paths in configuration.

File

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

Class

ExecutableFinderTest
@covers \Drupal\package_manager\ExecutableFinder @group package_manager @internal

Namespace

Drupal\Tests\package_manager\Unit

Code

public function testCheckConfigurationForExecutablePath() : void {
    $config_factory = $this->getConfigFactoryStub([
        'package_manager.settings' => [
            'executables' => [
                'composer' => '/path/to/composer',
            ],
        ],
    ]);
    $decorated = $this->prophesize(ExecutableFinderInterface::class);
    $decorated->find('composer')
        ->shouldNotBeCalled();
    $decorated->find('rsync')
        ->shouldBeCalled();
    $finder = new ExecutableFinder($decorated->reveal(), $config_factory);
    $this->assertSame('/path/to/composer', $finder->find('composer'));
    $finder->find('rsync');
}

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