2016-06-16 02:16:40 +02:00
|
|
|
<?php
|
2016-07-26 00:37:44 +02:00
|
|
|
namespace Psalm\Tests;
|
2016-06-16 02:16:40 +02:00
|
|
|
|
|
|
|
use PhpParser\ParserFactory;
|
|
|
|
use PHPUnit_Framework_TestCase;
|
2016-11-02 07:29:00 +01:00
|
|
|
use Psalm\Checker\FileChecker;
|
|
|
|
use Psalm\Type;
|
2016-06-16 02:16:40 +02:00
|
|
|
|
|
|
|
class TypeCombinationTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
2016-12-14 18:55:23 +01:00
|
|
|
/** @var \PhpParser\Parser */
|
2016-11-02 07:29:00 +01:00
|
|
|
protected static $parser;
|
2016-06-16 02:16:40 +02:00
|
|
|
|
2017-02-01 01:22:05 +01:00
|
|
|
/** @var TestConfig */
|
|
|
|
protected static $config;
|
|
|
|
|
2017-01-02 21:31:18 +01:00
|
|
|
/** @var \Psalm\Checker\ProjectChecker */
|
|
|
|
protected $project_checker;
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public static function setUpBeforeClass()
|
|
|
|
{
|
2016-11-02 07:29:00 +01:00
|
|
|
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
|
2017-02-01 01:22:05 +01:00
|
|
|
self::$config = new TestConfig();
|
2016-06-16 02:16:40 +02:00
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-02 21:31:18 +01:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
FileChecker::clearCache();
|
|
|
|
$this->project_checker = new \Psalm\Checker\ProjectChecker();
|
2017-02-01 01:22:05 +01:00
|
|
|
$this->project_checker->setConfig(self::$config);
|
2017-01-02 21:31:18 +01:00
|
|
|
}
|
|
|
|
|
2016-12-24 19:23:22 +01:00
|
|
|
/**
|
|
|
|
* @param string $string
|
|
|
|
* @return Type\Atomic
|
|
|
|
*/
|
2016-06-28 20:28:45 +02:00
|
|
|
private static function getAtomic($string)
|
|
|
|
{
|
2016-06-28 21:25:28 +02:00
|
|
|
return array_values(Type::parseString($string)->types)[0];
|
2016-06-28 20:28:45 +02:00
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testIntOrString()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'int|string',
|
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('int'),
|
|
|
|
self::getAtomic('string')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testArrayOfIntOrString()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, int|string>',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('array<int>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testArrayOfIntOrAlsoString()
|
|
|
|
{
|
2016-06-27 04:40:57 +02:00
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, int>|string',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('array<int>'),
|
|
|
|
self::getAtomic('string')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testEmptyArrays()
|
|
|
|
{
|
2016-06-27 04:40:57 +02:00
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<empty, empty>',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-09-09 22:38:32 +02:00
|
|
|
self::getAtomic('array<empty,empty>'),
|
|
|
|
self::getAtomic('array<empty,empty>')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testArrayStringOrEmptyArray()
|
|
|
|
{
|
2016-06-27 04:40:57 +02:00
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, string>',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('array<empty>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testArrayMixedOrString()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, mixed>',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('array<mixed>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-10 00:36:35 +02:00
|
|
|
public function testArrayMixedOrStringKeys()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, string>',
|
2016-09-10 00:36:35 +02:00
|
|
|
(string) Type::combineTypes([
|
|
|
|
self::getAtomic('array<int|string,string>'),
|
|
|
|
self::getAtomic('array<mixed,string>')
|
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testArrayMixedOrEmpty()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, mixed>',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('array<empty>'),
|
|
|
|
self::getAtomic('array<mixed>')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testArrayBigCombination()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array<mixed, int|float|string>',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('array<int|float>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 07:19:52 +02:00
|
|
|
public function testFalseDestruction()
|
2016-06-16 02:16:40 +02:00
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-06-16 07:19:52 +02:00
|
|
|
'bool',
|
2016-06-16 02:16:40 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('false'),
|
|
|
|
self::getAtomic('bool')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 07:19:52 +02:00
|
|
|
public function testOnlyFalse()
|
2016-06-16 02:16:40 +02:00
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'bool',
|
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('false')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 07:19:52 +02:00
|
|
|
public function testFalseFalseDestruction()
|
2016-06-16 02:16:40 +02:00
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'bool',
|
|
|
|
(string) Type::combineTypes([
|
2016-06-28 20:28:45 +02:00
|
|
|
self::getAtomic('false'),
|
|
|
|
self::getAtomic('false')
|
2016-06-16 02:16:40 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-12 06:03:37 +02:00
|
|
|
public function testAAndAOfB()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'A<mixed>',
|
|
|
|
(string) Type::combineTypes([
|
|
|
|
self::getAtomic('A'),
|
|
|
|
self::getAtomic('A<B>')
|
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-10-03 00:59:58 +02:00
|
|
|
public function testCombineObjectType()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array{a:int, b:string}',
|
2016-10-03 00:59:58 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-10-28 19:24:06 +02:00
|
|
|
self::getAtomic('array{a:int}'),
|
|
|
|
self::getAtomic('array{b:string}')
|
2016-10-03 00:59:58 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2016-11-13 17:24:25 +01:00
|
|
|
'array{a:int|string, b:string}',
|
2016-10-03 00:59:58 +02:00
|
|
|
(string) Type::combineTypes([
|
2016-10-28 19:24:06 +02:00
|
|
|
self::getAtomic('array{a:int}'),
|
|
|
|
self::getAtomic('array{a:string,b:string}')
|
2016-10-03 00:59:58 +02:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-13 20:07:23 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-16 02:16:40 +02:00
|
|
|
public function testMultipleValuedArray()
|
|
|
|
{
|
2016-11-02 07:29:00 +01:00
|
|
|
$stmts = self::$parser->parse('<?php
|
2016-06-16 02:16:40 +02:00
|
|
|
class A {}
|
|
|
|
class B {}
|
|
|
|
$var = [];
|
|
|
|
$var[] = new A();
|
|
|
|
$var[] = new B();
|
|
|
|
');
|
|
|
|
|
2017-01-02 21:31:18 +01:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2017-01-07 21:09:47 +01:00
|
|
|
$file_checker->visitAndAnalyzeMethods();
|
2016-06-16 02:16:40 +02:00
|
|
|
}
|
|
|
|
}
|