1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
<?php
/**
* Tests the tokenization of the finally keyword.
*
* @author Juliette Reinders Folmer <phpcs_nospam@adviesenzo.nl>
* @copyright 2021 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Tests\Core\Tokenizers\PHP;
use PHP_CodeSniffer\Tests\Core\Tokenizers\AbstractTokenizerTestCase;
final class FinallyTest extends AbstractTokenizerTestCase
{
/**
* Test that the finally keyword is tokenized as such.
*
* @param string $testMarker The comment which prefaces the target token in the test file.
*
* @dataProvider dataFinallyKeyword
* @covers PHP_CodeSniffer\Tokenizers\PHP::tokenize
*
* @return void
*/
public function testFinallyKeyword($testMarker)
{
$tokens = $this->phpcsFile->getTokens();
$target = $this->getTargetToken($testMarker, [T_FINALLY, T_STRING]);
$tokenArray = $tokens[$target];
$this->assertSame(T_FINALLY, $tokenArray['code'], 'Token tokenized as '.$tokenArray['type'].', not T_FINALLY (code)');
$this->assertSame('T_FINALLY', $tokenArray['type'], 'Token tokenized as '.$tokenArray['type'].', not T_FINALLY (type)');
}//end testFinallyKeyword()
/**
* Data provider.
*
* @see testFinallyKeyword()
*
* @return array<string, array<string>>
*/
public static function dataFinallyKeyword()
{
return [
'finally after try and catch' => ['/* testTryCatchFinally */'],
'finally between try and catch' => ['/* testTryFinallyCatch */'],
'finally after try, no catch' => ['/* testTryFinally */'],
];
}//end dataFinallyKeyword()
/**
* Test that 'finally' when not used as the reserved keyword is tokenized as `T_STRING`.
*
* @param string $testMarker The comment which prefaces the target token in the test file.
*
* @dataProvider dataFinallyNonKeyword
* @covers PHP_CodeSniffer\Tokenizers\PHP::tokenize
*
* @return void
*/
public function testFinallyNonKeyword($testMarker)
{
$tokens = $this->phpcsFile->getTokens();
$target = $this->getTargetToken($testMarker, [T_FINALLY, T_STRING]);
$tokenArray = $tokens[$target];
$this->assertSame(T_STRING, $tokenArray['code'], 'Token tokenized as '.$tokenArray['type'].', not T_STRING (code)');
$this->assertSame('T_STRING', $tokenArray['type'], 'Token tokenized as '.$tokenArray['type'].', not T_STRING (type)');
}//end testFinallyNonKeyword()
/**
* Data provider.
*
* @see testFinallyNonKeyword()
*
* @return array<string, array<string>>
*/
public static function dataFinallyNonKeyword()
{
return [
'finally used as class constant name' => ['/* testFinallyUsedAsClassConstantName */'],
'finally used as method name' => ['/* testFinallyUsedAsMethodName */'],
'finally used as property name' => ['/* testFinallyUsedAsPropertyName */'],
];
}//end dataFinallyNonKeyword()
}//end class
|