1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/ToStringTest.php
2018-01-11 15:50:58 -05:00

107 lines
3.0 KiB
PHP

<?php
namespace Psalm\Tests;
class ToStringTest extends TestCase
{
use Traits\FileCheckerInvalidCodeParseTestTrait;
use Traits\FileCheckerValidCodeParseTestTrait;
/**
* @return array
*/
public function providerFileCheckerValidCodeParse()
{
return [
'validToString' => [
'<?php
class A {
function __toString() {
return "hello";
}
}
echo (new A);',
],
'goodCast' => [
'<?php
class A {
public function __toString(): string
{
return "hello";
}
}
/** @param string|A $b */
function fooFoo($b): void {}
/** @param A|string $b */
function barBar($b): void {}
fooFoo(new A());
barBar(new A());',
],
];
}
/**
* @return array
*/
public function providerFileCheckerInvalidCodeParse()
{
return [
'echoClass' => [
'<?php
class A {}
echo (new A);',
'error_message' => 'InvalidArgument',
],
'echoCastClass' => [
'<?php
class A {}
echo (string)(new A);',
'error_message' => 'InvalidCast',
],
'invalidToStringReturnType' => [
'<?php
class A {
function __toString(): void { }
}',
'error_message' => 'InvalidToString',
],
'invalidInferredToStringReturnType' => [
'<?php
class A {
function __toString() { }
}',
'error_message' => 'InvalidToString',
],
'implicitCost' => [
'<?php
class A {
public function __toString(): string
{
return "hello";
}
}
function fooFoo(string $b): void {}
fooFoo(new A());',
'error_message' => 'ImplicitToStringCast',
],
'implicitCastFromInterface' => [
'<?php
interface I {
public function __toString();
}
function takesString(string $str): void { }
function takesI(I $i): void
{
takesString($i);
}',
'error_message' => 'ImplicitToStringCast',
],
];
}
}