mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
138 lines
3.9 KiB
PHP
138 lines
3.9 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
use PhpParser\ParserFactory;
|
|
use PHPUnit_Framework_TestCase;
|
|
use Psalm\Checker\FileChecker;
|
|
use Psalm\Config;
|
|
use Psalm\Context;
|
|
|
|
class BinaryOperationTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/** @var \PhpParser\Parser */
|
|
protected static $parser;
|
|
|
|
/** @var \Psalm\Checker\ProjectChecker */
|
|
protected $project_checker;
|
|
|
|
public static function setUpBeforeClass()
|
|
{
|
|
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
|
|
}
|
|
|
|
public function setUp()
|
|
{
|
|
FileChecker::clearCache();
|
|
$this->project_checker = new \Psalm\Checker\ProjectChecker();
|
|
$config = new TestConfig();
|
|
}
|
|
|
|
public function testRegularAddition()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
echo 5 + 4;
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Psalm\Exception\CodeException
|
|
* @expectedExceptionMessage InvalidOperand
|
|
*/
|
|
public function testBadAddition()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
$a = "b" + 5;
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
public function testDifferingNumericTypesAdditionInWeakMode()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
echo 5 + 4.1;
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Psalm\Exception\CodeException
|
|
* @expectedExceptionMessage InvalidOperand
|
|
*/
|
|
public function testDifferingNumericTypesAdditionInStrictMode()
|
|
{
|
|
Config::getInstance()->strict_binary_operands = true;
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
echo 5 + 4.1;
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
public function testNumericAddition()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
$a = "5";
|
|
|
|
if (is_numeric($a)) {
|
|
echo $a + 4;
|
|
}
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
public function testConcatenation()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
echo "Hey " + "Jude,";
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
public function testConcatenationWithNumberInWeakMode()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
echo "hi" . 5;
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Psalm\Exception\CodeException
|
|
* @expectedExceptionMessage InvalidOperand
|
|
*/
|
|
public function testConcatenationWithNumberInStrictMode()
|
|
{
|
|
Config::getInstance()->strict_binary_operands = true;
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
echo "hi" . 5;
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
}
|
|
}
|