-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #585 from PHPCSStandards/feature/tokenizer-bugfix-…
…replace-tabs-in-heredoc-nowdoc-opener Tokenizer: apply tab replacement to heredoc/nowdoc opener
- Loading branch information
Showing
3 changed files
with
154 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
tests/Core/Tokenizer/Tokenizer/HeredocNowdocOpenerTest.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
/* testHeredocOpenerNoSpace */ | ||
$heredoc = <<<EOD | ||
some text | ||
EOD; | ||
|
||
/* testNowdocOpenerNoSpace */ | ||
$nowdoc = <<<'EOD' | ||
some text | ||
EOD; | ||
|
||
/* testHeredocOpenerHasSpace */ | ||
$heredoc = <<< END | ||
some text | ||
END; | ||
|
||
/* testNowdocOpenerHasSpace */ | ||
$nowdoc = <<< 'END' | ||
some text | ||
END; | ||
|
||
/* testHeredocOpenerHasTab */ | ||
$heredoc = <<< "END" | ||
some text | ||
END; | ||
|
||
/* testNowdocOpenerHasTab */ | ||
$nowdoc = <<< 'END' | ||
some text | ||
END; |
121 changes: 121 additions & 0 deletions
121
tests/Core/Tokenizer/Tokenizer/HeredocNowdocOpenerTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<?php | ||
/** | ||
* Tests the tokenization of heredoc/nowdoc opener tokens. | ||
* | ||
* @author Juliette Reinders Folmer <[email protected]> | ||
* @copyright 2024 PHPCSStandards and contributors | ||
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence | ||
*/ | ||
|
||
namespace PHP_CodeSniffer\Tests\Core\Tokenizer\Tokenizer; | ||
|
||
use PHP_CodeSniffer\Tests\Core\Tokenizer\AbstractTokenizerTestCase; | ||
|
||
/** | ||
* Heredoc/nowdoc opener token test. | ||
*/ | ||
final class HeredocNowdocOpenerTest extends AbstractTokenizerTestCase | ||
{ | ||
|
||
|
||
/** | ||
* Verify that spaces/tabs in a heredoc/nowdoc opener token get the tab replacement treatment. | ||
* | ||
* @param string $testMarker The comment prefacing the target token. | ||
* @param array<string, int|string|null> $expected Expectations for the token array. | ||
* | ||
* @dataProvider dataHeredocNowdocOpenerTabReplacement | ||
* @covers PHP_CodeSniffer\Tokenizers\Tokenizer::createPositionMap | ||
* | ||
* @return void | ||
*/ | ||
public function testHeredocNowdocOpenerTabReplacement($testMarker, $expected) | ||
{ | ||
$tokens = $this->phpcsFile->getTokens(); | ||
$opener = $this->getTargetToken($testMarker, [T_START_HEREDOC, T_START_NOWDOC]); | ||
|
||
foreach ($expected as $key => $value) { | ||
if ($key === 'orig_content' && $value === null) { | ||
$this->assertArrayNotHasKey($key, $tokens[$opener], "Unexpected 'orig_content' key found in the token array."); | ||
continue; | ||
} | ||
|
||
$this->assertArrayHasKey($key, $tokens[$opener], "Key $key not found in the token array."); | ||
$this->assertSame($value, $tokens[$opener][$key], "Value for key $key does not match expectation."); | ||
} | ||
|
||
}//end testHeredocNowdocOpenerTabReplacement() | ||
|
||
|
||
/** | ||
* Data provider. | ||
* | ||
* @see testHeredocNowdocOpenerTabReplacement() | ||
* | ||
* @return array<string, array<string, string|array<string, int|string|null>>> | ||
*/ | ||
public static function dataHeredocNowdocOpenerTabReplacement() | ||
{ | ||
return [ | ||
'Heredoc opener without space' => [ | ||
'testMarker' => '/* testHeredocOpenerNoSpace */', | ||
'expected' => [ | ||
'length' => 6, | ||
'content' => '<<<EOD | ||
', | ||
'orig_content' => null, | ||
], | ||
], | ||
'Nowdoc opener without space' => [ | ||
'testMarker' => '/* testNowdocOpenerNoSpace */', | ||
'expected' => [ | ||
'length' => 8, | ||
'content' => "<<<'EOD' | ||
", | ||
'orig_content' => null, | ||
], | ||
], | ||
'Heredoc opener with space(s)' => [ | ||
'testMarker' => '/* testHeredocOpenerHasSpace */', | ||
'expected' => [ | ||
'length' => 7, | ||
'content' => '<<< END | ||
', | ||
'orig_content' => null, | ||
], | ||
], | ||
'Nowdoc opener with space(s)' => [ | ||
'testMarker' => '/* testNowdocOpenerHasSpace */', | ||
'expected' => [ | ||
'length' => 21, | ||
'content' => "<<< 'END' | ||
", | ||
'orig_content' => null, | ||
], | ||
], | ||
'Heredoc opener with tab(s)' => [ | ||
'testMarker' => '/* testHeredocOpenerHasTab */', | ||
'expected' => [ | ||
'length' => 18, | ||
'content' => '<<< "END" | ||
', | ||
'orig_content' => '<<< "END" | ||
', | ||
], | ||
], | ||
'Nowdoc opener with tab(s)' => [ | ||
'testMarker' => '/* testNowdocOpenerHasTab */', | ||
'expected' => [ | ||
'length' => 11, | ||
'content' => "<<< 'END' | ||
", | ||
'orig_content' => "<<< 'END' | ||
", | ||
], | ||
], | ||
]; | ||
|
||
}//end dataHeredocNowdocOpenerTabReplacement() | ||
|
||
|
||
}//end class |