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

98 lines
2.1 KiB
PHP
Raw Normal View History

2017-01-13 19:48:58 +01:00
<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class NamespaceTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
protected static $parser;
/** @var TestConfig */
protected static $config;
2017-01-13 19:48:58 +01:00
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
2017-01-13 20:07:23 +01:00
/**
* @return void
*/
2017-01-13 19:48:58 +01:00
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
self::$config = new TestConfig();
2017-01-13 19:48:58 +01:00
}
2017-01-13 20:07:23 +01:00
/**
* @return void
*/
2017-01-13 19:48:58 +01:00
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
$this->project_checker->setConfig(self::$config);
2017-01-13 19:48:58 +01:00
}
2017-01-13 20:07:23 +01:00
/**
* @return void
*/
2017-01-13 19:48:58 +01:00
public function testEmptyNamespace()
{
$stmts = self::$parser->parse('<?php
namespace A {
/** @return void */
function foo() {
2017-01-13 19:48:58 +01:00
}
class Bar {
}
}
namespace {
A\foo();
\A\foo();
(new A\Bar);
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
2017-01-13 19:48:58 +01:00
$file_checker->visitAndAnalyzeMethods($context);
}
/**
* @return void
*/
public function testConstantReference()
{
$stmts = self::$parser->parse('<?php
namespace Aye\Bee {
const HELLO = "hello";
}
namespace Aye\Bee {
/** @return void */
function foo() {
echo \Aye\Bee\HELLO;
}
class Bar {
/** @return void */
public function foo() {
echo \Aye\Bee\HELLO;
}
}
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
}
2017-01-13 19:48:58 +01:00
}