2017-04-09 20:14:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Typo3Update\Tests\CodeSniffer\Tokenizers;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-05-30 15:27:25 +02:00
|
|
|
use PHP_CodeSniffer\Files\File as PhpCsFile;
|
|
|
|
use PHP_CodeSniffer\Util\Common as PhpCs;
|
2017-04-09 20:14:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test TypoScript tokenizer.
|
|
|
|
*/
|
|
|
|
class TypoScriptTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function callingTokenizerWorksAsExpected()
|
|
|
|
{
|
|
|
|
$resultFile = implode(DIRECTORY_SEPARATOR, [
|
|
|
|
__DIR__,
|
|
|
|
'..',
|
|
|
|
'..',
|
|
|
|
'Fixtures',
|
|
|
|
'CodeSniffer',
|
|
|
|
'Tokenizers',
|
|
|
|
'TypoScript',
|
|
|
|
'expected.php',
|
|
|
|
]);
|
|
|
|
$testFile = implode(DIRECTORY_SEPARATOR, [
|
|
|
|
__DIR__,
|
|
|
|
'..',
|
|
|
|
'..',
|
|
|
|
'Fixtures',
|
|
|
|
'CodeSniffer',
|
|
|
|
'Tokenizers',
|
|
|
|
'TypoScript',
|
|
|
|
'example.ts',
|
|
|
|
]);
|
|
|
|
|
2017-06-01 09:07:25 +02:00
|
|
|
// Prepare environment:
|
|
|
|
define('PHP_CODESNIFFER_VERBOSITY', 0);
|
|
|
|
define('PHP_CODESNIFFER_CBF', false);
|
|
|
|
$config = new \PHP_CodeSniffer\Config([], false);
|
|
|
|
class_exists(\PHP_CodeSniffer\Util\Tokens::class);
|
2017-05-02 09:04:19 +02:00
|
|
|
|
2017-06-01 09:07:25 +02:00
|
|
|
$subject = new \PHP_CodeSniffer\Tokenizers\TYPOSCRIPT(file_get_contents($testFile), $config, "\n");
|
|
|
|
$this->assertEquals(require $resultFile, $subject->getTokens(), 'Did not get expected tokens.');
|
2017-04-09 20:14:16 +02:00
|
|
|
}
|
|
|
|
}
|