123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Linter;
- use PhpCsFixer\Linter\LinterInterface;
- use PhpCsFixer\Tokenizer\Token;
- use PhpCsFixer\Tokenizer\Tokens;
- use PHPUnit\Framework\TestCase;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- */
- abstract class AbstractLinterTestCase extends TestCase
- {
- abstract public function testIsAsync();
- public function testLintingAfterTokenManipulation()
- {
- $linter = $this->createLinter();
- $tokens = Tokens::fromCode("<?php \n#EOF\n");
- $tokens->insertAt(1, new Token(array(T_NS_SEPARATOR, '\\')));
- $this->setExpectedException('\PhpCsFixer\Linter\LintingException');
- $linter->lintSource($tokens->generateCode())->check();
- }
- /**
- * @param string $file
- * @param null|string $errorRegExp
- *
- * @dataProvider provideLintFileCases
- */
- public function testLintFile($file, $errorRegExp = null)
- {
- if (null !== $errorRegExp) {
- $this->setExpectedExceptionRegExp('\PhpCsFixer\Linter\LintingException', $errorRegExp);
- }
- $linter = $this->createLinter();
- $this->assertNull($linter->lintFile($file)->check());
- }
- /**
- * @return array
- */
- public function provideLintFileCases()
- {
- return array(
- array(
- __DIR__.'/../Fixtures/Linter/valid.php',
- ),
- array(
- __DIR__.'/../Fixtures/Linter/invalid.php',
- '/syntax error, unexpected.*T_ECHO.*line 5/',
- ),
- );
- }
- /**
- * @param string $source
- * @param null|string $errorRegExp
- *
- * @dataProvider provideLintSourceCases
- */
- public function testLintSource($source, $errorRegExp = null)
- {
- if (null !== $errorRegExp) {
- $this->setExpectedExceptionRegExp('\PhpCsFixer\Linter\LintingException', $errorRegExp);
- }
- $linter = $this->createLinter();
- $this->assertNull($linter->lintSource($source)->check());
- }
- /**
- * @return array
- */
- public function provideLintSourceCases()
- {
- return array(
- array(
- '<?php echo 123;',
- ),
- array(
- '<?php
- print "line 2";
- print "line 3";
- print "line 4";
- echo echo;
- ',
- '/syntax error, unexpected.*T_ECHO.*line 5/',
- ),
- );
- }
- /**
- * @return LinterInterface
- */
- abstract protected function createLinter();
- }
|