1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/JsonOutputTest.php

299 lines
9.7 KiB
PHP

<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Checker\ProjectChecker;
use Psalm\Config;
use Psalm\Context;
use Psalm\IssueBuffer;
class JsonOutputTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
protected static $parser;
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
/**
* @return void
*/
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
}
/**
* @return void
*/
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
$config = new TestConfig();
$config->throw_exception = false;
$config->stop_on_first_error = false;
$this->project_checker->setConfig($config);
}
/**
* @return void
*/
public function testJsonOutputForReturnTypeError()
{
$file_contents = '<?php
function fooFoo(int $a) : string {
return $a + 1;
}';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData()[0];
$this->assertSame('somefile.php', $issue_data['file_path']);
$this->assertSame('error', $issue_data['type']);
$this->assertSame("The given return type 'string' for fooFoo is incorrect, got 'int'", $issue_data['message']);
$this->assertSame(2, $issue_data['line_number']);
$this->assertSame(
'string',
substr($file_contents, $issue_data['from'], $issue_data['to'] - $issue_data['from'])
);
}
/**
* @return void
*/
public function testJsonOutputForUndefinedVar()
{
$file_contents = '<?php
function fooFoo(int $a) : int {
return $b + 1;
}';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData()[0];
$this->assertSame('somefile.php', $issue_data['file_path']);
$this->assertSame('error', $issue_data['type']);
$this->assertSame('Cannot find referenced variable $b', $issue_data['message']);
$this->assertSame(3, $issue_data['line_number']);
$this->assertSame(
'$b',
substr($file_contents, $issue_data['from'], $issue_data['to'] - $issue_data['from'])
);
}
/**
* @return void
*/
public function testJsonOutputForUnknownParamClass()
{
$file_contents = '<?php
function fooFoo(Badger\Bodger $a) : Badger\Bodger {
return $a;
}';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData()[0];
$this->assertSame('somefile.php', $issue_data['file_path']);
$this->assertSame('error', $issue_data['type']);
$this->assertSame('Class or interface Badger\\Bodger does not exist', $issue_data['message']);
$this->assertSame(2, $issue_data['line_number']);
$this->assertSame(
'Badger\\Bodger',
substr($file_contents, $issue_data['from'], $issue_data['to'] - $issue_data['from'])
);
}
/**
* @return void
*/
public function testJsonOutputForMissingReturnType()
{
$file_contents = '<?php
function fooFoo() {
return "hello";
}';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData()[0];
$this->assertSame('somefile.php', $issue_data['file_path']);
$this->assertSame('error', $issue_data['type']);
$this->assertSame('Method fooFoo does not have a return type, expecting string', $issue_data['message']);
$this->assertSame(2, $issue_data['line_number']);
$this->assertSame(
'function fooFoo() {',
substr($file_contents, $issue_data['from'], $issue_data['to'] - $issue_data['from'])
);
}
/**
* @return void
*/
public function testJsonOutputForWrongMultilineReturnType()
{
$file_contents = '<?php
/**
* @return int
*/
function fooFoo() {
return "hello";
}';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData()[0];
$this->assertSame('somefile.php', $issue_data['file_path']);
$this->assertSame('error', $issue_data['type']);
$this->assertSame('The given return type \'int\' for fooFoo is incorrect, got \'string\'', $issue_data['message']);
$this->assertSame(3, $issue_data['line_number']);
$this->assertSame(
'@return int',
substr($file_contents, $issue_data['from'], $issue_data['to'] - $issue_data['from'])
);
}
/**
* @return void
*/
public function testJsonOutputForWrongSingleLineReturnType()
{
$file_contents = '<?php
/** @return int */
function fooFoo() {
return "hello";
}';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData()[0];
$this->assertSame('somefile.php', $issue_data['file_path']);
$this->assertSame('error', $issue_data['type']);
$this->assertSame('The given return type \'int\' for fooFoo is incorrect, got \'string\'', $issue_data['message']);
$this->assertSame(2, $issue_data['line_number']);
$this->assertSame(
'@return int',
substr($file_contents, $issue_data['from'], $issue_data['to'] - $issue_data['from'])
);
}
/**
* @return void
*/
public function testJsonOutputForGetPsalmDotOrg()
{
$file_contents = '<?php
function psalmCanVerify(int $your_code) : ?string {
return $as_you . "type";
}
// and it supports PHP 5.4 - 7.1
echo CHANGE_ME;
if (rand(0, 100) > 10) {
$a = 5;
} else {
//$a = 2;
}
echo $a;';
$project_checker = new ProjectChecker(false, true, ProjectChecker::TYPE_JSON);
$project_checker->registerFile(
'somefile.php',
$file_contents
);
$file_checker = new FileChecker('somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods();
$issue_data = IssueBuffer::getIssueData();
$this->assertEquals(
[
[
'type' => 'error',
'line_number' => 7,
'message' => 'Const CHANGE_ME is not defined',
'file_name' => 'somefile.php',
'file_path' => 'somefile.php',
'snippet' => 'echo CHANGE_ME;',
'from' => 126,
'to' => 135,
],
[
'type' => 'error',
'line_number' => 15,
'message' => 'Possibly undefined variable $a, first seen on line 10',
'file_name' => 'somefile.php',
'file_path' => 'somefile.php',
'snippet' => 'echo $a',
'from' => 202,
'to' => 204,
],
[
'type' => 'error',
'line_number' => 3,
'message' => 'Cannot find referenced variable $as_you',
'file_name' => 'somefile.php',
'file_path' => 'somefile.php',
'snippet' => ' return $as_you . "type";',
'from' => 67,
'to' => 74,
],
[
'type' => 'error',
'line_number' => 2,
'message' => 'Could not verify return type \'string|null\' for psalmCanVerify',
'file_name' => 'somefile.php',
'file_path' => 'somefile.php',
'snippet' => 'function psalmCanVerify(int $your_code) : ?string {
return $as_you . "type";
}',
'from' => 48,
'to' => 55,
],
],
$issue_data
);
}
}