forked from lorisleiva/laravel-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestCase.php
41 lines (33 loc) · 1.08 KB
/
TestCase.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
namespace Lorisleiva\LaravelDeployer\Test;
use Illuminate\Support\Facades\Artisan;
use Symfony\Component\Process\Process;
class TestCase extends \Orchestra\Testbench\TestCase
{
const BASE_REPOSITORY = __DIR__ . '/fixtures/repository';
const CONFIGS = __DIR__ . '/fixtures/configs';
const GENERATED_DEPLOY_PATH = 'vendor/lorisleiva/laravel-deployer/.build/deploy.php';
protected function getPackageProviders($app)
{
return ['Lorisleiva\LaravelDeployer\LaravelDeployerServiceProvider'];
}
protected function getEnvironmentSetUp($app)
{
$app->setBasePath(static::BASE_REPOSITORY);
}
public function artisan($command, $parameters = [])
{
Artisan::call($command, $parameters + ['--no-ansi' => true]);
return Artisan::output();
}
public function exec($command)
{
$process = new Process($command);
$process->mustRun();
return trim($process->getOutput());
}
public function generatedDeployPath()
{
return self::BASE_REPOSITORY . '/' . self::GENERATED_DEPLOY_PATH;
}
}