1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/Php70Test.php

304 lines
9.2 KiB
PHP
Raw Normal View History

2016-10-19 04:02:38 +02:00
<?php
namespace Psalm\Tests;
class Php70Test extends TestCase
2016-10-19 04:02:38 +02:00
{
use Traits\FileCheckerInvalidCodeParseTestTrait;
use Traits\FileCheckerValidCodeParseTestTrait;
2016-10-20 06:47:10 +02:00
2017-01-13 20:07:23 +01:00
/**
* @return array
2017-01-13 20:07:23 +01:00
*/
public function providerFileCheckerValidCodeParse()
2016-10-20 06:47:10 +02:00
{
return [
'functionTypeHints' => [
'<?php
function indexof(string $haystack, string $needle) : int
{
$pos = strpos($haystack, $needle);
if ($pos === false) {
return -1;
}
return $pos;
}
$a = indexof("arr", "a");',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'int',
2017-05-27 02:05:57 +02:00
],
],
'methodTypeHints' => [
'<?php
class Foo {
public static function indexof(string $haystack, string $needle) : int
{
$pos = strpos($haystack, $needle);
if ($pos === false) {
return -1;
}
return $pos;
}
}
$a = Foo::indexof("arr", "a");',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'int',
2017-05-27 02:05:57 +02:00
],
],
'nullCoalesce' => [
'<?php
$arr = ["hello", "goodbye"];
$a = $arr[rand(0, 10)] ?? null;',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'string|null',
],
],
2017-09-13 20:35:42 +02:00
'nullCoalesceWithNullableOnLeft' => [
'<?php
/** @return ?string */
function foo() {
return rand(0, 10) > 5 ? "hello" : null;
}
$a = foo() ?? "goodbye";',
'assertions' => [
'$a' => 'string',
],
],
2017-06-20 20:38:58 +02:00
'nullCoalesceWithReference' => [
'<?php
$var = 0;
($a =& $var) ?? "hello";',
2017-06-20 20:38:58 +02:00
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'int',
2017-06-20 20:38:58 +02:00
],
],
'spaceship' => [
'<?php
$a = 1 <=> 1;',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'int',
2017-05-27 02:05:57 +02:00
],
],
'defineArray' => [
'<?php
define("ANIMALS", [
"dog",
"cat",
"bird"
]);
$a = ANIMALS[1];',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$a' => 'string',
2017-05-27 02:05:57 +02:00
],
],
'anonymousClassLogger' => [
'<?php
interface Logger {
/** @return void */
public function log(string $msg);
}
class Application {
/** @var Logger|null */
private $logger;
/** @return void */
public function setLogger(Logger $logger) {
$this->logger = $logger;
}
}
$app = new Application;
$app->setLogger(new class implements Logger {
/** @return void */
public function log(string $msg) {
echo $msg;
}
2017-05-27 02:05:57 +02:00
});',
],
'anonymousClassFunctionReturnType' => [
'<?php
$class = new class {
public function f() : int {
return 42;
}
};
function g(int $i) : int {
return $i;
}
2017-05-27 02:05:57 +02:00
$x = g($class->f());',
],
'anonymousClassStatement' => [
'<?php
new class {};',
],
2017-10-19 20:40:38 +02:00
'anonymousClassTwoFunctions' => [
'<?php
interface I {}
class A
{
/** @var ?I */
protected $i;
public function foo(): void
{
$this->i = new class implements I {};
}
public function foo2() : void {} // commenting this line out fixes
}',
],
'returnAnonymousClass' => [
'<?php
/** @return object */
function getNewAnonymousClass() {
return new class {};
}',
],
'returnAnonymousClassInClass' => [
'<?php
class A {
/** @return object */
public function getNewAnonymousClass() {
return new class {};
}
}',
],
'generatorWithReturn' => [
'<?php
/**
* @return Generator<int,int>
* @psalm-generator-return string
*/
function fooFoo(int $i) : Generator {
if ($i === 1) {
return "bash";
}
yield 1;
2017-05-27 02:05:57 +02:00
}',
],
'generatorDelegation' => [
'<?php
/**
* @return Generator<int,int>
* @psalm-generator-return int
*/
function count_to_ten() : Generator {
yield 1;
yield 2;
yield from [3, 4];
yield from new ArrayIterator([5, 6]);
yield from seven_eight();
return yield from nine_ten();
}
/**
* @return Generator<int,int>
*/
function seven_eight() : Generator {
yield 7;
yield from eight();
}
/**
* @return Generator<int,int>
*/
function eight() : Generator {
yield 8;
}
/**
* @return Generator<int,int>
* @psalm-generator-return int
*/
function nine_ten() : Generator {
yield 9;
return 10;
}
$gen = count_to_ten();
foreach ($gen as $num) {
echo "$num ";
}
$gen2 = $gen->getReturn();',
'assertions' => [
2017-06-29 16:22:49 +02:00
'$gen' => 'Generator<int, int>',
'$gen2' => 'mixed',
],
2017-05-27 02:05:57 +02:00
'error_levels' => ['MixedAssignment'],
],
'generatorWithNestedYield' => [
'<?php
function other_generator() : Generator {
yield "traffic";
return 1;
}
function foo() : Generator {
/** @var int */
$value = yield from other_generator();
var_export($value);
}',
],
'multipleUse' => [
'<?php
namespace Name\Space {
class A {
}
class B {
}
}
namespace Noom\Spice {
use Name\Space\{
A,
B
};
new A();
new B();
2017-05-27 02:05:57 +02:00
}',
],
];
}
2017-01-13 20:07:23 +01:00
/**
* @return array
2017-01-13 20:07:23 +01:00
*/
public function providerFileCheckerInvalidCodeParse()
2016-10-20 20:26:03 +02:00
{
return [
'anonymousClassWithBadStatement' => [
'<?php
$foo = new class {
public function a() {
new B();
}
};',
2017-05-27 02:05:57 +02:00
'error_message' => 'UndefinedClass',
],
'anonymousClassWithInvalidFunctionReturnType' => [
'<?php
$foo = new class {
public function a() : string {
return 5;
}
};',
2017-05-27 02:05:57 +02:00
'error_message' => 'InvalidReturnType',
],
];
2016-11-21 04:40:19 +01:00
}
2016-10-19 04:02:38 +02:00
}