mirror of
https://github.com/laravel/valet.git
synced 2026-02-04 08:10:07 +01:00
531 lines
22 KiB
PHP
531 lines
22 KiB
PHP
<?php
|
|
|
|
use Valet\Brew;
|
|
use Valet\Filesystem;
|
|
use Valet\CommandLine;
|
|
use function Valet\user;
|
|
use function Valet\resolve;
|
|
use function Valet\swap;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Container\Container;
|
|
|
|
class BrewTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
$_SERVER['SUDO_USER'] = user();
|
|
|
|
Container::setInstance(new Container);
|
|
}
|
|
|
|
|
|
public function tearDown()
|
|
{
|
|
Mockery::close();
|
|
}
|
|
|
|
|
|
public function test_brew_can_be_resolved_from_container()
|
|
{
|
|
$this->assertInstanceOf(Brew::class, resolve(Brew::class));
|
|
}
|
|
|
|
|
|
public function test_installed_returns_true_when_given_formula_is_installed()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep php@7.4')->andReturn('php@7.4');
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertTrue(resolve(Brew::class)->installed('php@7.4'));
|
|
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep php')->andReturn('php
|
|
php@7.4');
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertTrue(resolve(Brew::class)->installed('php'));
|
|
}
|
|
|
|
|
|
public function test_installed_returns_false_when_given_formula_is_not_installed()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep php@7.4')->andReturn('');
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertFalse(resolve(Brew::class)->installed('php@7.4'));
|
|
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep php@7.4')->andReturn('php');
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertFalse(resolve(Brew::class)->installed('php@7.4'));
|
|
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep php@7.4')->andReturn('php
|
|
something-else-php@7.4
|
|
php7');
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertFalse(resolve(Brew::class)->installed('php@7.4'));
|
|
}
|
|
|
|
|
|
public function test_has_installed_php_indicates_if_php_is_installed_via_brew()
|
|
{
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(false);
|
|
$this->assertTrue($brew->hasInstalledPhp());
|
|
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(false);
|
|
$this->assertTrue($brew->hasInstalledPhp());
|
|
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(false);
|
|
$this->assertTrue($brew->hasInstalledPhp());
|
|
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(false);
|
|
$this->assertTrue($brew->hasInstalledPhp());
|
|
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(false);
|
|
$this->assertTrue($brew->hasInstalledPhp());
|
|
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(true);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(true);
|
|
$this->assertTrue($brew->hasInstalledPhp());
|
|
|
|
$brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]);
|
|
$brew->shouldReceive('installed')->with('php')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.4')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.3')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.2')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.1')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@7.0')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php@5.6')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php74')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php73')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php72')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php71')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php70')->andReturn(false);
|
|
$brew->shouldReceive('installed')->with('php56')->andReturn(false);
|
|
$this->assertFalse($brew->hasInstalledPhp());
|
|
}
|
|
|
|
|
|
public function test_tap_taps_the_given_homebrew_repository()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('passthru')->once()->with('sudo -u "'.user().'" brew tap php@7.1');
|
|
$cli->shouldReceive('passthru')->once()->with('sudo -u "'.user().'" brew tap php@7.0');
|
|
$cli->shouldReceive('passthru')->once()->with('sudo -u "'.user().'" brew tap php@5.6');
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->tap('php@7.1', 'php@7.0', 'php@5.6');
|
|
}
|
|
|
|
|
|
public function test_restart_restarts_the_service_using_homebrew_services()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep dnsmasq')->andReturn('dnsmasq');
|
|
$cli->shouldReceive('quietly')->once()->with('sudo brew services stop dnsmasq');
|
|
$cli->shouldReceive('quietly')->once()->with('sudo brew services start dnsmasq');
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->restartService('dnsmasq');
|
|
}
|
|
|
|
|
|
public function test_stop_stops_the_service_using_homebrew_services()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew list | grep dnsmasq')->andReturn('dnsmasq');
|
|
$cli->shouldReceive('quietly')->once()->with('sudo brew services stop dnsmasq');
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->stopService('dnsmasq');
|
|
}
|
|
|
|
|
|
public function test_linked_php_returns_linked_php_formula_name()
|
|
{
|
|
$getBrewMock = function ($filesystem) {
|
|
$brewMock = Mockery::mock(Brew::class, [new CommandLine, $filesystem])->makePartial();
|
|
$brewMock->shouldReceive('hasLinkedPhp')->once()->andReturn(true);
|
|
return $brewMock;
|
|
};
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php/7.4.0/test');
|
|
$this->assertSame('php@7.4', $getBrewMock($files)->linkedPhp());
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php/7.3.0/test');
|
|
$this->assertSame('php@7.3', $getBrewMock($files)->linkedPhp());
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php@7.2/7.2.13/test');
|
|
$this->assertSame('php@7.2', $getBrewMock($files)->linkedPhp());
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php/7.2.9_2/test');
|
|
$this->assertSame('php@7.2', $getBrewMock($files)->linkedPhp());
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php72/7.2.9_2/test');
|
|
$this->assertSame('php@7.2', $getBrewMock($files)->linkedPhp());
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php56/test');
|
|
$this->assertSame('php@5.6', $getBrewMock($files)->linkedPhp());
|
|
}
|
|
|
|
|
|
/**
|
|
* @expectedException DomainException
|
|
*/
|
|
public function test_linked_php_throws_exception_if_no_php_link()
|
|
{
|
|
$brewMock = Mockery::mock(Brew::class)->makePartial();
|
|
$brewMock->shouldReceive('hasLinkedPhp')->once()->andReturn(false);
|
|
$brewMock->linkedPhp();
|
|
}
|
|
|
|
|
|
public function test_has_linked_php_returns_true_if_php_link_exists()
|
|
{
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('isLink')->twice()->with('/usr/local/bin/php')->andReturn(false, true);
|
|
swap(Filesystem::class, $files);
|
|
$brew = resolve(Brew::class);
|
|
|
|
$this->assertFalse($brew->hasLinkedPhp());
|
|
$this->assertTrue($brew->hasLinkedPhp());
|
|
}
|
|
|
|
|
|
/**
|
|
* @expectedException DomainException
|
|
*/
|
|
public function test_linked_php_throws_exception_if_unsupported_php_version_is_linked()
|
|
{
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('isLink')->once()->with('/usr/local/bin/php')->andReturn(true);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn('/test/path/php/5.4.14/test');
|
|
swap(Filesystem::class, $files);
|
|
resolve(Brew::class)->linkedPhp();
|
|
}
|
|
|
|
|
|
public function test_install_or_fail_will_install_brew_formulas()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew install dnsmasq', Mockery::type('Closure'));
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->installOrFail('dnsmasq');
|
|
}
|
|
|
|
|
|
public function test_install_or_fail_can_install_taps()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->with('brew install dnsmasq', Mockery::type('Closure'));
|
|
swap(CommandLine::class, $cli);
|
|
$brew = Mockery::mock(Brew::class.'[tap]', [$cli, new Filesystem]);
|
|
$brew->shouldReceive('tap')->once()->with(['test/tap']);
|
|
$brew->installOrFail('dnsmasq', [], ['test/tap']);
|
|
}
|
|
|
|
|
|
/**
|
|
* @expectedException DomainException
|
|
*/
|
|
public function test_install_or_fail_throws_exception_on_failure()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->andReturnUsing(function ($command, $onError) {
|
|
$onError(1, 'test error ouput');
|
|
});
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->installOrFail('dnsmasq');
|
|
}
|
|
|
|
/**
|
|
* @expectedException DomainException
|
|
*/
|
|
public function test_link_will_throw_exception_on_failure()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew link aformula',
|
|
Mockery::type('callable'),
|
|
])->andReturnUsing(function ($command, $onError) {
|
|
$onError(1, 'test error output');
|
|
});
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->link('aformula');
|
|
}
|
|
|
|
public function test_link_will_pass_formula_to_run_as_user()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew link aformula',
|
|
Mockery::type('callable'),
|
|
])->andReturn('Some output');
|
|
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertSame('Some output', resolve(Brew::class)->link('aformula'));
|
|
}
|
|
|
|
public function test_link_will_pass_formula_and_force_to_run_as_user_if_set()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew link aformula --force',
|
|
Mockery::type('callable'),
|
|
])->andReturn('Some output forced');
|
|
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertSame('Some output forced', resolve(Brew::class)->link('aformula', true));
|
|
}
|
|
|
|
/**
|
|
* @expectedException DomainException
|
|
*/
|
|
public function test_unlink_will_throw_exception_on_failure()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew unlink aformula',
|
|
Mockery::type('callable'),
|
|
])->andReturnUsing(function ($command, $onError) {
|
|
$onError(1, 'test error output');
|
|
});
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->unlink('aformula');
|
|
}
|
|
|
|
public function test_unlink_will_pass_formula_to_run_as_user()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew unlink aformula',
|
|
Mockery::type('callable'),
|
|
])->andReturn('Some output');
|
|
|
|
swap(CommandLine::class, $cli);
|
|
$this->assertSame('Some output', resolve(Brew::class)->unlink('aformula'));
|
|
}
|
|
|
|
/**
|
|
* @expectedException DomainException
|
|
*/
|
|
public function test_getRunningServices_will_throw_exception_on_failure()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew services list | grep started | awk \'{ print $1; }\'',
|
|
Mockery::type('callable'),
|
|
])->andReturnUsing(function ($command, $onError) {
|
|
$onError(1, 'test error output');
|
|
});
|
|
swap(CommandLine::class, $cli);
|
|
resolve(Brew::class)->getRunningServices();
|
|
}
|
|
|
|
public function test_getRunningServices_will_pass_to_brew_services_list_and_return_array()
|
|
{
|
|
$cli = Mockery::mock(CommandLine::class);
|
|
$cli->shouldReceive('runAsUser')->once()->withArgs([
|
|
'brew services list | grep started | awk \'{ print $1; }\'',
|
|
Mockery::type('callable')
|
|
])->andReturn('service1' . PHP_EOL . 'service2' . PHP_EOL . PHP_EOL . 'service3' . PHP_EOL);
|
|
|
|
swap(CommandLine::class, $cli);
|
|
$result = resolve(Brew::class)->getRunningServices('term');
|
|
$this->assertInstanceOf(Collection::class, $result);
|
|
$this->assertSame([
|
|
'service1',
|
|
'service2',
|
|
'service3',
|
|
], array_values($result->all()));
|
|
}
|
|
|
|
/**
|
|
* @dataProvider supportedPhpLinkPathProvider
|
|
*
|
|
* @param $path
|
|
* @param $matches
|
|
*/
|
|
public function test_get_parsed_linked_php_will_return_matches_for_linked_php($path, $matches)
|
|
{
|
|
$getBrewMock = function ($filesystem) {
|
|
$brewMock = Mockery::mock(Brew::class, [new CommandLine, $filesystem])->makePartial();
|
|
$brewMock->shouldReceive('hasLinkedPhp')->once()->andReturn(true);
|
|
return $brewMock;
|
|
};
|
|
|
|
$files = Mockery::mock(Filesystem::class);
|
|
$files->shouldReceive('readLink')->once()->with('/usr/local/bin/php')->andReturn($path);
|
|
$this->assertSame($matches, $getBrewMock($files)->getParsedLinkedPhp());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider supportedPhpLinkPathProvider
|
|
*
|
|
* @param $path
|
|
* @param $matches
|
|
* @param $expectedLinkFormula
|
|
*/
|
|
public function test_get_linked_php_formula_will_return_linked_php_directory($path, $matches, $expectedLinkFormula)
|
|
{
|
|
$brewMock = Mockery::mock(Brew::class)->makePartial();
|
|
$brewMock->shouldReceive('getParsedLinkedPhp')->andReturn($matches);
|
|
|
|
$this->assertSame($expectedLinkFormula, $brewMock->getLinkedPhpFormula());
|
|
}
|
|
|
|
public function test_restart_linked_php_will_pass_through_linked_php_formula_to_restart_service()
|
|
{
|
|
$brewMock = Mockery::mock(Brew::class)->makePartial();
|
|
$brewMock->shouldReceive('getLinkedPhpFormula')->once()->andReturn('php@7.2-test');
|
|
$brewMock->shouldReceive('restartService')->once()->with('php@7.2-test');
|
|
$brewMock->restartLinkedPhp();
|
|
}
|
|
|
|
/**
|
|
* Provider of php links and their expected split matches
|
|
*
|
|
* @return array
|
|
*/
|
|
public function supportedPhpLinkPathProvider()
|
|
{
|
|
return [
|
|
[
|
|
'/test/path/php/7.3.0/test', // linked path
|
|
[ // matches
|
|
'path/php/7.3.0/test',
|
|
'php',
|
|
'',
|
|
'7.3',
|
|
'.0',
|
|
],
|
|
'php', // expected link formula
|
|
],
|
|
[
|
|
'/test/path/php@7.2/7.2.13/test',
|
|
[
|
|
'path/php@7.2/7.2.13/test',
|
|
'php',
|
|
'@7.2',
|
|
'7.2',
|
|
'.13',
|
|
],
|
|
'php@7.2'
|
|
],
|
|
[
|
|
'/test/path/php/7.2.9_2/test',
|
|
[
|
|
'path/php/7.2.9_2/test',
|
|
'php',
|
|
'',
|
|
'7.2',
|
|
'.9_2',
|
|
],
|
|
'php',
|
|
],
|
|
[
|
|
'/test/path/php72/7.2.9_2/test',
|
|
[
|
|
'path/php72/7.2.9_2/test',
|
|
'php',
|
|
'72',
|
|
'7.2',
|
|
'.9_2',
|
|
],
|
|
'php72',
|
|
],
|
|
[
|
|
'/test/path/php56/test',
|
|
[
|
|
'path/php56/test',
|
|
'php',
|
|
'56',
|
|
'',
|
|
'',
|
|
],
|
|
'php56',
|
|
],
|
|
];
|
|
}
|
|
}
|