2016-10-19 04:23:09 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class Php56Test extends TestCase
|
2016-10-19 04:23:09 +02:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
use Traits\FileCheckerValidCodeParseTestTrait;
|
2018-04-20 23:14:38 +02:00
|
|
|
use Traits\FileCheckerInvalidCodeParseTestTrait;
|
2016-10-19 04:23:09 +02:00
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
2017-04-25 05:45:02 +02:00
|
|
|
* @return array
|
2017-01-13 20:07:23 +01:00
|
|
|
*/
|
2017-04-25 05:45:02 +02:00
|
|
|
public function providerFileCheckerValidCodeParse()
|
2016-10-19 04:23:09 +02:00
|
|
|
{
|
2017-04-25 05:45:02 +02:00
|
|
|
return [
|
|
|
|
'constArray' => [
|
|
|
|
'<?php
|
|
|
|
const ARR = ["a", "b"];
|
|
|
|
$a = ARR[0];',
|
|
|
|
'assertions' => [
|
2017-06-29 16:22:49 +02:00
|
|
|
'$a' => 'string',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
2017-07-25 22:11:02 +02:00
|
|
|
'classConstFeatures' => [
|
2017-04-25 05:45:02 +02:00
|
|
|
'<?php
|
|
|
|
class C {
|
2017-07-25 22:11:02 +02:00
|
|
|
const ONE = 1;
|
|
|
|
const TWO = self::ONE * 2;
|
|
|
|
const THREE = self::TWO + 1;
|
|
|
|
const ONE_THIRD = self::ONE / self::THREE;
|
2017-04-25 05:45:02 +02:00
|
|
|
const SENTENCE = "The value of THREE is " . self::THREE;
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2018-01-21 18:44:46 +01:00
|
|
|
/** @var int */
|
|
|
|
public $four = self::ONE + self::THREE;
|
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
/**
|
|
|
|
* @param int $a
|
|
|
|
* @return int
|
|
|
|
*/
|
2018-02-16 02:27:42 +01:00
|
|
|
public function f($a = self::ONE + self::THREE) {
|
2017-04-25 05:45:02 +02:00
|
|
|
return $a;
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-07-25 22:11:02 +02:00
|
|
|
$c1 = C::ONE;
|
|
|
|
$c2 = C::TWO;
|
|
|
|
$c3 = C::THREE;
|
|
|
|
$c1_3rd = C::ONE_THIRD;
|
|
|
|
$c_sentence = C::SENTENCE;
|
2018-01-21 18:44:46 +01:00
|
|
|
$cf = (new C)->f();
|
2018-09-17 18:15:45 +02:00
|
|
|
$c4 = (new C)->four;',
|
2017-07-25 22:11:02 +02:00
|
|
|
'assertions' => [
|
|
|
|
'$c1' => 'int',
|
|
|
|
'$c2' => 'int',
|
|
|
|
'$c3' => 'int',
|
|
|
|
'$c1_3rd' => 'float|int',
|
|
|
|
'$c_sentence' => 'string',
|
|
|
|
'$cf' => 'int',
|
2018-01-21 18:44:46 +01:00
|
|
|
'$c4' => 'int',
|
2017-07-25 22:11:02 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'constFeatures' => [
|
|
|
|
'<?php
|
|
|
|
const ONE = 1;
|
|
|
|
const TWO = ONE * 2;
|
|
|
|
|
|
|
|
$one = ONE;
|
|
|
|
$two = TWO;',
|
2017-04-25 05:45:02 +02:00
|
|
|
'assertions' => [
|
2017-07-25 22:11:02 +02:00
|
|
|
'$one' => 'int',
|
|
|
|
'$two' => 'int',
|
2017-05-27 02:05:57 +02:00
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'argumentUnpacking' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
* @param int $a
|
|
|
|
* @param int $b
|
|
|
|
* @param int $c
|
|
|
|
*/
|
|
|
|
function add($a, $b, $c) {
|
|
|
|
return $a + $b + $c;
|
|
|
|
}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
$operators = [2, 3];
|
2017-05-27 02:05:57 +02:00
|
|
|
echo add(1, ...$operators);',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
2018-04-20 23:14:38 +02:00
|
|
|
'arrayPushArgumentUnpacking' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
function a(): array {
|
|
|
|
$a = [];
|
|
|
|
$b = ["foo", "bar"];
|
|
|
|
|
|
|
|
$a[] = "foo";
|
|
|
|
|
|
|
|
array_push($a, ...$b);
|
|
|
|
|
|
|
|
return $a;
|
|
|
|
}',
|
|
|
|
],
|
2017-12-23 02:09:58 +01:00
|
|
|
'arrayMergeArgumentUnpacking' => [
|
|
|
|
'<?php
|
|
|
|
$a = [[1, 2]];
|
|
|
|
$b = array_merge([], ...$a);',
|
|
|
|
'assertions' => [
|
|
|
|
'$b' => 'array{0:int, 1:int}',
|
|
|
|
],
|
|
|
|
],
|
2018-03-13 18:50:41 +01:00
|
|
|
'preserveTypesWhenUnpacking' => [
|
|
|
|
'<?php
|
|
|
|
/**
|
|
|
|
* @return array<int,array<int,string>>
|
|
|
|
*/
|
|
|
|
function getData(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
["a", "b"],
|
|
|
|
["c", "d"]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array<int,string>
|
|
|
|
*/
|
|
|
|
function f1(): array
|
|
|
|
{
|
|
|
|
$data = getData();
|
|
|
|
return array_merge($data[0], $data[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array<int,string>
|
|
|
|
*/
|
|
|
|
function f2(): array
|
|
|
|
{
|
|
|
|
$data = getData();
|
|
|
|
return array_merge(...$data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array<int,string>
|
|
|
|
*/
|
|
|
|
function f3(): array
|
|
|
|
{
|
|
|
|
$data = getData();
|
|
|
|
return array_merge([], ...$data);
|
|
|
|
}',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
'exponentiation' => [
|
|
|
|
'<?php
|
|
|
|
$a = 2;
|
2017-05-27 02:05:57 +02:00
|
|
|
$a **= 3;',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'constantAliasInNamespace' => [
|
|
|
|
'<?php
|
|
|
|
namespace Name\Space {
|
|
|
|
const FOO = 42;
|
|
|
|
}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
namespace Noom\Spice {
|
|
|
|
use const Name\Space\FOO;
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
echo FOO . "\n";
|
|
|
|
echo \Name\Space\FOO;
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'constantAliasInClass' => [
|
|
|
|
'<?php
|
|
|
|
namespace Name\Space {
|
|
|
|
const FOO = 42;
|
|
|
|
}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
namespace Noom\Spice {
|
|
|
|
use const Name\Space\FOO;
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class A {
|
|
|
|
/** @return void */
|
|
|
|
public function fooFoo() {
|
|
|
|
echo FOO . "\n";
|
|
|
|
echo \Name\Space\FOO;
|
|
|
|
}
|
|
|
|
}
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'functionAliasInNamespace' => [
|
|
|
|
'<?php
|
|
|
|
namespace Name\Space {
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function f() { echo __FUNCTION__."\n"; }
|
|
|
|
}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
namespace Noom\Spice {
|
|
|
|
use function Name\Space\f;
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
f();
|
|
|
|
\Name\Space\f();
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
2017-04-25 05:45:02 +02:00
|
|
|
],
|
|
|
|
'functionAliasInClass' => [
|
|
|
|
'<?php
|
|
|
|
namespace Name\Space {
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function f() { echo __FUNCTION__."\n"; }
|
|
|
|
}
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
namespace Noom\Spice {
|
|
|
|
use function Name\Space\f;
|
2017-06-29 16:22:49 +02:00
|
|
|
|
2017-04-25 05:45:02 +02:00
|
|
|
class A {
|
|
|
|
/** @return void */
|
|
|
|
public function fooFoo() {
|
|
|
|
f();
|
|
|
|
\Name\Space\f();
|
|
|
|
}
|
|
|
|
}
|
2017-05-27 02:05:57 +02:00
|
|
|
}',
|
|
|
|
],
|
2018-06-28 23:05:50 +02:00
|
|
|
'argumentUnpackingWithoutChangingRef' => [
|
|
|
|
'<?php
|
|
|
|
function foo(int ...$is) : void {}
|
|
|
|
|
|
|
|
$arr = [1, 2, 3, 4];
|
|
|
|
foo(...$arr);
|
|
|
|
foo(...$arr);',
|
|
|
|
],
|
2018-07-09 15:59:51 +02:00
|
|
|
'iterableSplat' => [
|
|
|
|
'<?php
|
|
|
|
function foo(iterable $args): int {
|
|
|
|
return intval(...$args);
|
|
|
|
}
|
|
|
|
|
|
|
|
function foo(ArrayIterator $args): int {
|
|
|
|
return intval(...$args);
|
|
|
|
}',
|
|
|
|
],
|
2017-04-25 05:45:02 +02:00
|
|
|
];
|
2016-10-19 04:23:09 +02:00
|
|
|
}
|
2018-04-20 23:14:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function providerFileCheckerInvalidCodeParse()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'arrayPushArgumentUnpackingWithBadArg' => [
|
|
|
|
'<?php
|
|
|
|
$a = [];
|
|
|
|
$b = "hello";
|
|
|
|
|
|
|
|
$a[] = "foo";
|
|
|
|
|
|
|
|
array_push($a, ...$b);',
|
|
|
|
'error_message' => 'InvalidArgument',
|
|
|
|
],
|
2018-07-15 23:47:58 +02:00
|
|
|
'shouldWarnAboutNoGeneratorReturn' => [
|
|
|
|
'<?php
|
|
|
|
function generator2() : Generator {
|
|
|
|
if (rand(0,1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
yield 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @psalm-suppress InvalidNullableReturnType
|
|
|
|
*/
|
|
|
|
function notagenerator() : Generator {
|
|
|
|
if (rand(0, 1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return generator2();
|
|
|
|
}',
|
|
|
|
'error_message' => 'InvalidReturnStatement',
|
|
|
|
],
|
2018-04-20 23:14:38 +02:00
|
|
|
];
|
|
|
|
}
|
2016-10-19 04:23:09 +02:00
|
|
|
}
|