1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 13:51:54 +01:00
psalm/tests/ToStringTest.php

161 lines
4.1 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class ToStringTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
protected static $parser;
/** @var TestConfig */
protected static $config;
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
self::$config = new TestConfig();
}
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
$this->project_checker->setConfig(self::$config);
}
/**
2017-01-13 14:07:23 -05:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidArgument
2017-01-13 14:07:23 -05:00
* @return void
*/
public function testEchoClass()
{
$stmts = self::$parser->parse('<?php
class A {}
echo (new A);
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
/**
2017-01-13 14:07:23 -05:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidToString
2017-01-13 14:07:23 -05:00
* @return void
*/
public function testInvalidToStringReturnType()
{
$stmts = self::$parser->parse('<?php
class A {
function __toString() : void { }
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
/**
2017-01-13 14:07:23 -05:00
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidToString
2017-01-13 14:07:23 -05:00
* @return void
*/
public function testInvalidInferredToStringReturnType()
{
$stmts = self::$parser->parse('<?php
class A {
/**
* @psalm-suppress MissingReturnType
*/
function __toString() { }
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
public function testValidToString()
{
$stmts = self::$parser->parse('<?php
class A {
function __toString() : string {
return "hello";
}
}
echo (new A);
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
public function testValidInferredToStringType()
{
$stmts = self::$parser->parse('<?php
class A {
/**
* @psalm-suppress MissingReturnType
*/
function __toString() {
return "hello";
}
}
echo (new A);
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
2016-12-29 00:14:06 -05:00
/**
2017-01-13 14:07:23 -05:00
* @expectedException \Psalm\Exception\CodeException
2016-12-29 00:14:06 -05:00
* @expectedExceptionMessage ImplicitToStringCast
2017-01-13 14:07:23 -05:00
* @return void
2016-12-29 00:14:06 -05:00
*/
public function testImplicitCast()
{
$stmts = self::$parser->parse('<?php
class A {
public function __toString() : string
{
return "hello";
}
}
2016-12-30 13:09:00 -05:00
function fooFoo(string $b) : void {}
fooFoo(new A());
2016-12-29 00:14:06 -05:00
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
2016-12-29 00:14:06 -05:00
}
}