class ExecutableFinderTest

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

Hierarchy

Expanded class hierarchy of ExecutableFinderTest

File

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

Namespace

Drupal\Tests\package_manager\Unit
View source
class ExecutableFinderTest extends UnitTestCase {
    
    /**
     * Tests that the executable finder looks for paths in configuration.
     */
    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.