1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00
psalm/tests/ClassTest.php

207 lines
5.8 KiB
PHP
Raw Normal View History

2016-12-12 05:41:11 +01:00
<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class ClassTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
2016-12-12 05:41:11 +01:00
protected static $parser;
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
2016-12-12 05:41:11 +01:00
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-12 05:41:11 +01:00
}
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
2016-12-12 05:41:11 +01:00
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage UndefinedClass
*/
public function testUndefinedClass()
{
$stmts = self::$parser->parse('<?php
(new Foo());
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
2016-12-12 05:41:11 +01:00
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
2016-12-12 05:41:11 +01:00
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidClass
*/
public function testWrongCaseClass()
{
$stmts = self::$parser->parse('<?php
class Foo {}
2016-12-30 19:14:17 +01:00
(new foo());
2016-12-12 05:41:11 +01:00
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
2016-12-12 05:41:11 +01:00
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
2016-12-12 05:41:11 +01:00
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidScope
*/
public function testInvalidThisFetch()
{
$stmts = self::$parser->parse('<?php
echo $this;
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
2016-12-12 05:41:11 +01:00
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
2016-12-12 05:41:11 +01:00
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidScope
*/
public function testInvalidThisAssignment()
{
$stmts = self::$parser->parse('<?php
$this = "hello";
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
2016-12-12 05:41:11 +01:00
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
2016-12-12 05:41:11 +01:00
}
2016-12-17 04:16:29 +01:00
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage UndefinedConstant
*/
public function testUndefinedConstant()
{
$stmts = self::$parser->parse('<?php
echo HELLO;
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
2016-12-17 04:16:29 +01:00
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
2016-12-17 04:16:29 +01:00
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage UndefinedConstant
*/
public function testUndefinedClassConstant()
{
$stmts = self::$parser->parse('<?php
class A {}
echo A::HELLO;
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
2016-12-17 04:16:29 +01:00
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
2016-12-17 04:16:29 +01:00
}
public function testSingleFileInheritance()
{
$stmts = self::$parser->parse('<?php
class A extends B {}
class B {
2016-12-30 19:09:00 +01:00
public function fooFoo() : void {
$a = new A();
$a->barBar();
}
2016-12-30 19:09:00 +01:00
protected function barBar() : void {
echo "hello";
}
}');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidParent
*/
public function testInheritanceLoopOne()
{
$this->markTestSkipped('A bug');
$stmts = self::$parser->parse('<?php
class C extends C {}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidParent
*/
public function testInheritanceLoopTwo()
{
$this->markTestSkipped('A bug');
$stmts = self::$parser->parse('<?php
class E extends F {}
class F extends E {}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
}
/**
* @expectedException \Psalm\Exception\CodeException
* @expectedExceptionMessage InvalidParent
*/
public function testInheritanceLoopThree()
{
$this->markTestSkipped('A bug');
$stmts = self::$parser->parse('<?php
class G extends H {}
class H extends I {}
class I extends G {}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
}
public function testConstSandwich()
{
$stmts = self::$parser->parse('<?php
class A { const B = 42;}
$a = A::B;
class C {}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
}
2016-12-12 05:41:11 +01:00
}