1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/SwitchTypeTest.php

163 lines
3.5 KiB
PHP
Raw Normal View History

2016-12-06 19:49:57 +01:00
<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Checker\TypeChecker;
use Psalm\Config;
use Psalm\Context;
use Psalm\Type;
class SwitchTypeTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
2016-12-06 19:49:57 +01:00
protected static $parser;
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
2016-12-14 18:28:38 +01:00
$config = new TestConfig();
2016-12-06 19:49:57 +01:00
}
public function setUp()
{
FileChecker::clearCache();
}
public function testGetClassArg()
{
$stmts = self::$parser->parse('<?php
class A {
2016-12-07 20:13:39 +01:00
/**
* @return void
*/
2016-12-30 19:09:00 +01:00
public function fooFoo() {
2016-12-06 19:49:57 +01:00
}
}
class B {
2016-12-07 20:13:39 +01:00
/**
* @return void
*/
2016-12-30 19:09:00 +01:00
public function barBar() {
2016-12-06 19:49:57 +01:00
}
}
$a = rand(0, 10) ? new A() : new B();
switch (get_class($a)) {
case "A":
2016-12-30 19:09:00 +01:00
$a->fooFoo();
2016-12-06 19:49:57 +01:00
break;
case "B":
2016-12-30 19:09:00 +01:00
$a->barBar();
2016-12-06 19:49:57 +01:00
break;
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$context = new Context('somefile.php');
$file_checker->check(true, true, $context);
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage UndefinedMethod
*/
public function testGetClassArgWrongClass()
{
$stmts = self::$parser->parse('<?php
class A {
2016-12-07 20:13:39 +01:00
/** @return void */
2016-12-30 19:09:00 +01:00
public function fooFoo() {
2016-12-06 19:49:57 +01:00
}
}
class B {
2016-12-07 20:13:39 +01:00
/** @return void */
2016-12-30 19:09:00 +01:00
public function barBar() {
2016-12-06 19:49:57 +01:00
}
}
$a = rand(0, 10) ? new A() : new B();
switch (get_class($a)) {
case "A":
2016-12-30 19:09:00 +01:00
$a->barBar();
2016-12-06 19:49:57 +01:00
break;
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$context = new Context('somefile.php');
$file_checker->check(true, true, $context);
}
public function testGetTypeArg()
{
$stmts = self::$parser->parse('<?php
function testInt(int $var) : void {
}
function testString(string $var) : void {
}
$a = rand(0, 10) ? 1 : "two";
switch (gettype($a)) {
case "string":
testString($a);
break;
case "int":
testInt($a);
break;
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$context = new Context('somefile.php');
$file_checker->check(true, true, $context);
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidScalarArgument
*/
public function testGetTypeArgWrongArgs()
{
$stmts = self::$parser->parse('<?php
function testInt(int $var) : void {
}
function testString(string $var) : void {
}
$a = rand(0, 10) ? 1 : "two";
switch (gettype($a)) {
case "string":
testInt($a);
case "int":
testString($a);
}
');
$file_checker = new FileChecker('somefile.php', $stmts);
$context = new Context('somefile.php');
$file_checker->check(true, true, $context);
}
}