2016-06-15 20:16:40 -04:00
|
|
|
<?php
|
|
|
|
|
2016-07-25 18:37:44 -04:00
|
|
|
namespace Psalm\Tests;
|
2016-06-15 20:16:40 -04:00
|
|
|
|
2016-07-25 18:37:44 -04:00
|
|
|
use Psalm\Type;
|
2016-06-15 20:16:40 -04:00
|
|
|
use PhpParser;
|
|
|
|
use PhpParser\ParserFactory;
|
|
|
|
use PHPUnit_Framework_TestCase;
|
|
|
|
|
|
|
|
class TypeCombinationTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
protected static $_parser;
|
|
|
|
|
|
|
|
public static function setUpBeforeClass()
|
|
|
|
{
|
|
|
|
self::$_parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
|
|
|
|
}
|
|
|
|
|
2016-06-28 14:28:45 -04:00
|
|
|
private static function getAtomic($string)
|
|
|
|
{
|
2016-06-28 15:25:28 -04:00
|
|
|
return array_values(Type::parseString($string)->types)[0];
|
2016-06-28 14:28:45 -04:00
|
|
|
}
|
|
|
|
|
2016-06-15 20:16:40 -04:00
|
|
|
public function testIntOrString()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'int|string',
|
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('int'),
|
|
|
|
self::getAtomic('string')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArrayOfIntOrString()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-09-21 19:15:09 -04:00
|
|
|
'array<mixed,int|string>',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('array<int>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArrayOfIntOrAlsoString()
|
|
|
|
{
|
2016-06-26 22:40:57 -04:00
|
|
|
$this->assertEquals(
|
2016-09-21 19:15:09 -04:00
|
|
|
'array<mixed,int>|string',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('array<int>'),
|
|
|
|
self::getAtomic('string')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEmptyArrays()
|
|
|
|
{
|
2016-06-26 22:40:57 -04:00
|
|
|
$this->assertEquals(
|
2016-09-09 16:38:32 -04:00
|
|
|
'array<empty,empty>',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-09-09 16:38:32 -04:00
|
|
|
self::getAtomic('array<empty,empty>'),
|
|
|
|
self::getAtomic('array<empty,empty>')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArrayStringOrEmptyArray()
|
|
|
|
{
|
2016-06-26 22:40:57 -04:00
|
|
|
$this->assertEquals(
|
2016-09-21 19:15:09 -04:00
|
|
|
'array<mixed,string>',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('array<empty>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArrayMixedOrString()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-09-21 19:15:09 -04:00
|
|
|
'array<mixed,mixed>',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('array<mixed>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-09 18:36:35 -04:00
|
|
|
public function testArrayMixedOrStringKeys()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'array<mixed,string>',
|
|
|
|
(string) Type::combineTypes([
|
|
|
|
self::getAtomic('array<int|string,string>'),
|
|
|
|
self::getAtomic('array<mixed,string>')
|
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-06-15 20:16:40 -04:00
|
|
|
public function testArrayMixedOrEmpty()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-09-21 19:15:09 -04:00
|
|
|
'array<mixed,mixed>',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('array<empty>'),
|
|
|
|
self::getAtomic('array<mixed>')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArrayBigCombination()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-09-21 19:15:09 -04:00
|
|
|
'array<mixed,int|float|string>',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('array<int|float>'),
|
|
|
|
self::getAtomic('array<string>')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-06-16 01:19:52 -04:00
|
|
|
public function testFalseDestruction()
|
2016-06-15 20:16:40 -04:00
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2016-06-16 01:19:52 -04:00
|
|
|
'bool',
|
2016-06-15 20:16:40 -04:00
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('false'),
|
|
|
|
self::getAtomic('bool')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-06-16 01:19:52 -04:00
|
|
|
public function testOnlyFalse()
|
2016-06-15 20:16:40 -04:00
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'bool',
|
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('false')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-06-16 01:19:52 -04:00
|
|
|
public function testFalseFalseDestruction()
|
2016-06-15 20:16:40 -04:00
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'bool',
|
|
|
|
(string) Type::combineTypes([
|
2016-06-28 14:28:45 -04:00
|
|
|
self::getAtomic('false'),
|
|
|
|
self::getAtomic('false')
|
2016-06-15 20:16:40 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-12 00:03:37 -04:00
|
|
|
public function testAAndAOfB()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'A<mixed>',
|
|
|
|
(string) Type::combineTypes([
|
|
|
|
self::getAtomic('A'),
|
|
|
|
self::getAtomic('A<B>')
|
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:59:58 -04:00
|
|
|
public function testCombineObjectType()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
|
|
|
'object-like{a:int,b:string}',
|
|
|
|
(string) Type::combineTypes([
|
|
|
|
self::getAtomic('object-like{a:int}'),
|
|
|
|
self::getAtomic('object-like{b:string}')
|
|
|
|
])
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
'object-like{a:int|string,b:string}',
|
|
|
|
(string) Type::combineTypes([
|
|
|
|
self::getAtomic('object-like{a:int}'),
|
|
|
|
self::getAtomic('object-like{a:string,b:string}')
|
|
|
|
])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-06-15 20:16:40 -04:00
|
|
|
public function testMultipleValuedArray()
|
|
|
|
{
|
|
|
|
$stmts = self::$_parser->parse('<?php
|
|
|
|
class A {}
|
|
|
|
class B {}
|
|
|
|
$var = [];
|
|
|
|
$var[] = new A();
|
|
|
|
$var[] = new B();
|
|
|
|
');
|
|
|
|
|
2016-08-13 14:20:46 -04:00
|
|
|
$file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts);
|
2016-06-15 20:16:40 -04:00
|
|
|
$file_checker->check();
|
|
|
|
}
|
|
|
|
}
|