1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Add test for PHP 7.1 nullable types

This commit is contained in:
Matthew Brown 2016-12-03 23:03:51 -05:00
parent ffee37a23a
commit d7c6e84a0d

61
tests/Php71Test.php Normal file
View File

@ -0,0 +1,61 @@
<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class Php71Test extends PHPUnit_Framework_TestCase
{
protected static $parser;
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
$config = Config::getInstance();
$config->throw_exception = true;
$config->use_docblock_types = true;
}
public function setUp()
{
FileChecker::clearCache();
}
public function testNullableReturnType()
{
$stmts = self::$parser->parse('<?php
function a(): ?string
{
return rand(0, 10) ? "elePHPant" : null;
}
$a = a();
');
$file_checker = new FileChecker('somefile.php', $stmts);
$context = new Context('somefile.php');
$file_checker->check(true, true, $context);
$this->assertEquals('string|null', (string) $context->vars_in_scope['$a']);
}
public function testNullableArgument()
{
$stmts = self::$parser->parse('<?php
function test(?string $name) : ?string
{
return $name;
}
test("elePHPant");
test(null);
');
$file_checker = new FileChecker('somefile.php', $stmts);
$context = new Context('somefile.php');
$file_checker->check(true, true, $context);
}
}