1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/TypeCombinationTest.php
2016-10-02 18:59:58 -04:00

199 lines
4.9 KiB
PHP

<?php
namespace Psalm\Tests;
use Psalm\Type;
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);
}
private static function getAtomic($string)
{
return array_values(Type::parseString($string)->types)[0];
}
public function testIntOrString()
{
$this->assertEquals(
'int|string',
(string) Type::combineTypes([
self::getAtomic('int'),
self::getAtomic('string')
])
);
}
public function testArrayOfIntOrString()
{
$this->assertEquals(
'array<mixed,int|string>',
(string) Type::combineTypes([
self::getAtomic('array<int>'),
self::getAtomic('array<string>')
])
);
}
public function testArrayOfIntOrAlsoString()
{
$this->assertEquals(
'array<mixed,int>|string',
(string) Type::combineTypes([
self::getAtomic('array<int>'),
self::getAtomic('string')
])
);
}
public function testEmptyArrays()
{
$this->assertEquals(
'array<empty,empty>',
(string) Type::combineTypes([
self::getAtomic('array<empty,empty>'),
self::getAtomic('array<empty,empty>')
])
);
}
public function testArrayStringOrEmptyArray()
{
$this->assertEquals(
'array<mixed,string>',
(string) Type::combineTypes([
self::getAtomic('array<empty>'),
self::getAtomic('array<string>')
])
);
}
public function testArrayMixedOrString()
{
$this->assertEquals(
'array<mixed,mixed>',
(string) Type::combineTypes([
self::getAtomic('array<mixed>'),
self::getAtomic('array<string>')
])
);
}
public function testArrayMixedOrStringKeys()
{
$this->assertEquals(
'array<mixed,string>',
(string) Type::combineTypes([
self::getAtomic('array<int|string,string>'),
self::getAtomic('array<mixed,string>')
])
);
}
public function testArrayMixedOrEmpty()
{
$this->assertEquals(
'array<mixed,mixed>',
(string) Type::combineTypes([
self::getAtomic('array<empty>'),
self::getAtomic('array<mixed>')
])
);
}
public function testArrayBigCombination()
{
$this->assertEquals(
'array<mixed,int|float|string>',
(string) Type::combineTypes([
self::getAtomic('array<int|float>'),
self::getAtomic('array<string>')
])
);
}
public function testFalseDestruction()
{
$this->assertEquals(
'bool',
(string) Type::combineTypes([
self::getAtomic('false'),
self::getAtomic('bool')
])
);
}
public function testOnlyFalse()
{
$this->assertEquals(
'bool',
(string) Type::combineTypes([
self::getAtomic('false')
])
);
}
public function testFalseFalseDestruction()
{
$this->assertEquals(
'bool',
(string) Type::combineTypes([
self::getAtomic('false'),
self::getAtomic('false')
])
);
}
public function testAAndAOfB()
{
$this->assertEquals(
'A<mixed>',
(string) Type::combineTypes([
self::getAtomic('A'),
self::getAtomic('A<B>')
])
);
}
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}')
])
);
}
public function testMultipleValuedArray()
{
$stmts = self::$_parser->parse('<?php
class A {}
class B {}
$var = [];
$var[] = new A();
$var[] = new B();
');
$file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts);
$file_checker->check();
}
}