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

198 lines
4.9 KiB
PHP
Raw Normal View History

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-11-02 07:29:00 +01:00
protected static $parser;
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);
2016-06-16 02:16:40 +02:00
}
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
}
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
])
);
}
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
])
);
}
public function testArrayOfIntOrAlsoString()
{
$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
])
);
}
public function testEmptyArrays()
{
$this->assertEquals(
2016-11-13 17:24:25 +01:00
'array<empty, empty>',
2016-06-16 02:16:40 +02:00
(string) Type::combineTypes([
self::getAtomic('array<empty,empty>'),
self::getAtomic('array<empty,empty>')
2016-06-16 02:16:40 +02:00
])
);
}
public function testArrayStringOrEmptyArray()
{
$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
])
);
}
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
])
);
}
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>')
])
);
}
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
])
);
}
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
])
);
}
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
])
);
}
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
])
);
}
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
])
);
}
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>')
])
);
}
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([
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([
self::getAtomic('array{a:int}'),
self::getAtomic('array{a:string,b:string}')
2016-10-03 00:59:58 +02:00
])
);
}
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();
');
2016-11-02 07:29:00 +01:00
$file_checker = new FileChecker('somefile.php', $stmts);
2016-06-16 02:16:40 +02:00
$file_checker->check();
}
}