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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
<?php
declare(strict_types=1);
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tests\PHPStan;
use Tests\AbstractTestCase;
class FeaturesTest extends AbstractTestCase
{
protected $phpStanPreviousDirectory = '.';
protected function setUp(): void
{
parent::setUp();
$this->phpStanPreviousDirectory = getcwd();
chdir(__DIR__.'/../..');
}
protected function tearDown(): void
{
chdir($this->phpStanPreviousDirectory);
parent::tearDown();
}
public function testAnalysesWithoutErrors(): void
{
$this->assertStringContainsString(
'[OK] No errors',
$this->analyze(__DIR__.'/project.neon')
);
}
public function testAnalysesWithAnError(): void
{
$this->assertStringContainsString(
'22 Static call to instance method Carbon\Carbon::foo().',
$this->analyze(__DIR__.'/bad-project.neon')
);
}
private function analyze(string $file)
{
return shell_exec(implode(' ', [
implode(DIRECTORY_SEPARATOR, ['.', 'vendor', 'bin', 'phpstan']),
'analyse',
'--configuration='.escapeshellarg(realpath($file)),
'--no-progress',
'--no-interaction',
'--level=0',
escapeshellarg(realpath(__DIR__.'/Fixture.php')),
]));
}
}
|