|
| 1 | +<?php |
| 2 | +/** |
| 3 | + * PHPCSUtils, utility functions and classes for PHP_CodeSniffer sniff developers. |
| 4 | + * |
| 5 | + * @package PHPCSUtils |
| 6 | + * @copyright 2019-2021 PHPCSUtils Contributors |
| 7 | + * @license https://opensource.org/licenses/LGPL-3.0 LGPL3 |
| 8 | + * @link https://github.com/PHPCSStandards/PHPCSUtils |
| 9 | + */ |
| 10 | + |
| 11 | +namespace PHPCSUtils\Tests\Utils\MessageHelper; |
| 12 | + |
| 13 | +use PHPCSUtils\TestUtils\UtilityMethodTestCase; |
| 14 | +use PHPCSUtils\Utils\MessageHelper; |
| 15 | + |
| 16 | +/** |
| 17 | + * Tests for the \PHPCSUtils\Utils\MessageHelper::addMessage() and the |
| 18 | + * \PHPCSUtils\Utils\MessageHelper::addFixableMessage() methods. |
| 19 | + * |
| 20 | + * {@internal Note: this is largely testing PHPCS native functionality, but as PHPCS doesn't |
| 21 | + * have any unit tests in place for this functionality, that's not a bad thing.} |
| 22 | + * |
| 23 | + * @group messagehelper |
| 24 | + * |
| 25 | + * @since 1.0.0 |
| 26 | + */ |
| 27 | +class AddMessageTest extends UtilityMethodTestCase |
| 28 | +{ |
| 29 | + |
| 30 | + /** |
| 31 | + * Dummy error code to use for the test. |
| 32 | + * |
| 33 | + * Using the dummy full error code to force it to record. |
| 34 | + * |
| 35 | + * @var string |
| 36 | + */ |
| 37 | + const CODE = 'PHPCSUtils.MessageHelper.AddMessageTest.Found'; |
| 38 | + |
| 39 | + /** |
| 40 | + * Set the name of a sniff to pass to PHPCS to limit the run (and force it to record errors). |
| 41 | + * |
| 42 | + * @var array |
| 43 | + */ |
| 44 | + protected static $selectedSniff = ['PHPCSUtils.MessageHelper.AddMessageTest']; |
| 45 | + |
| 46 | + /** |
| 47 | + * Test the addMessage wrapper. |
| 48 | + * |
| 49 | + * @dataProvider dataAddMessage |
| 50 | + * @covers \PHPCSUtils\Utils\MessageHelper::addMessage |
| 51 | + * |
| 52 | + * @param string $testMarker The comment which prefaces the target token in the test file. |
| 53 | + * @param bool $isError Whether to test adding an error or a warning. |
| 54 | + * @param array $expected Expected error details. |
| 55 | + * |
| 56 | + * @return void |
| 57 | + */ |
| 58 | + public function testAddMessage($testMarker, $isError, $expected) |
| 59 | + { |
| 60 | + $tokens = self::$phpcsFile->getTokens(); |
| 61 | + $stackPtr = $this->getTargetToken($testMarker, \T_CONSTANT_ENCAPSED_STRING); |
| 62 | + $severity = \mt_rand(5, 10); |
| 63 | + $expected['severity'] = $severity; |
| 64 | + |
| 65 | + $return = MessageHelper::addMessage( |
| 66 | + self::$phpcsFile, |
| 67 | + 'Message added. Text: %s', |
| 68 | + $stackPtr, |
| 69 | + $isError, |
| 70 | + static::CODE, |
| 71 | + [$tokens[$stackPtr]['content']], |
| 72 | + $severity |
| 73 | + ); |
| 74 | + |
| 75 | + $this->assertTrue($return); |
| 76 | + |
| 77 | + $this->verifyRecordedMessages($stackPtr, $isError, $expected); |
| 78 | + } |
| 79 | + |
| 80 | + /** |
| 81 | + * Data Provider. |
| 82 | + * |
| 83 | + * @see testAddMessage() For the array format. |
| 84 | + * |
| 85 | + * @return array |
| 86 | + */ |
| 87 | + public function dataAddMessage() |
| 88 | + { |
| 89 | + return [ |
| 90 | + 'add-error' => [ |
| 91 | + '/* testAddErrorMessage */', |
| 92 | + true, |
| 93 | + [ |
| 94 | + 'message' => "Message added. Text: 'test 1'", |
| 95 | + 'source' => static::CODE, |
| 96 | + 'fixable' => false, |
| 97 | + ], |
| 98 | + ], |
| 99 | + 'add-warning' => [ |
| 100 | + '/* testAddWarningMessage */', |
| 101 | + false, |
| 102 | + [ |
| 103 | + 'message' => "Message added. Text: 'test 2'", |
| 104 | + 'source' => static::CODE, |
| 105 | + 'fixable' => false, |
| 106 | + ], |
| 107 | + ], |
| 108 | + ]; |
| 109 | + } |
| 110 | + |
| 111 | + /** |
| 112 | + * Test the addFixableMessage wrapper. |
| 113 | + * |
| 114 | + * @dataProvider dataAddFixableMessage |
| 115 | + * @covers \PHPCSUtils\Utils\MessageHelper::addFixableMessage |
| 116 | + * |
| 117 | + * @param string $testMarker The comment which prefaces the target token in the test file. |
| 118 | + * @param bool $isError Whether to test adding an error or a warning. |
| 119 | + * @param array $expected Expected error details. |
| 120 | + * |
| 121 | + * @return void |
| 122 | + */ |
| 123 | + public function testAddFixableMessage($testMarker, $isError, $expected) |
| 124 | + { |
| 125 | + $tokens = self::$phpcsFile->getTokens(); |
| 126 | + $stackPtr = $this->getTargetToken($testMarker, \T_CONSTANT_ENCAPSED_STRING); |
| 127 | + $severity = \mt_rand(5, 10); |
| 128 | + $expected['severity'] = $severity; |
| 129 | + |
| 130 | + $return = MessageHelper::addFixableMessage( |
| 131 | + self::$phpcsFile, |
| 132 | + 'Message added. Text: %s', |
| 133 | + $stackPtr, |
| 134 | + $isError, |
| 135 | + static::CODE, |
| 136 | + [$tokens[$stackPtr]['content']], |
| 137 | + $severity |
| 138 | + ); |
| 139 | + |
| 140 | + // Fixable message recording only returns true when the fixer is enabled (=phpcbf). |
| 141 | + $this->assertFalse($return); |
| 142 | + |
| 143 | + $this->verifyRecordedMessages($stackPtr, $isError, $expected); |
| 144 | + } |
| 145 | + |
| 146 | + /** |
| 147 | + * Data Provider. |
| 148 | + * |
| 149 | + * @see testAddFixableMessage() For the array format. |
| 150 | + * |
| 151 | + * @return array |
| 152 | + */ |
| 153 | + public function dataAddFixableMessage() |
| 154 | + { |
| 155 | + return [ |
| 156 | + 'add-fixable-error' => [ |
| 157 | + '/* testAddFixableErrorMessage */', |
| 158 | + true, |
| 159 | + [ |
| 160 | + 'message' => "Message added. Text: 'test 3'", |
| 161 | + 'source' => static::CODE, |
| 162 | + 'fixable' => true, |
| 163 | + ], |
| 164 | + ], |
| 165 | + 'add-fixable-warning' => [ |
| 166 | + '/* testAddFixableWarningMessage */', |
| 167 | + false, |
| 168 | + [ |
| 169 | + 'message' => "Message added. Text: 'test 4'", |
| 170 | + 'source' => static::CODE, |
| 171 | + 'fixable' => true, |
| 172 | + ], |
| 173 | + ], |
| 174 | + ]; |
| 175 | + } |
| 176 | + |
| 177 | + /** |
| 178 | + * Helper method to verify the expected message details. |
| 179 | + * |
| 180 | + * @param int $stackPtr The stack pointer on which the error/warning is expected. |
| 181 | + * @param bool $isError Whether to test adding an error or a warning. |
| 182 | + * @param array $expected Expected error details. |
| 183 | + * |
| 184 | + * @return void |
| 185 | + */ |
| 186 | + protected function verifyRecordedMessages($stackPtr, $isError, $expected) |
| 187 | + { |
| 188 | + $tokens = self::$phpcsFile->getTokens(); |
| 189 | + $errors = self::$phpcsFile->getErrors(); |
| 190 | + $warnings = self::$phpcsFile->getWarnings(); |
| 191 | + $result = ($isError === true) ? $errors : $warnings; |
| 192 | + |
| 193 | + /* |
| 194 | + * Make sure that no errors/warnings were recorded when the other type is set to be expected. |
| 195 | + */ |
| 196 | + if ($isError === true) { |
| 197 | + $this->assertArrayNotHasKey( |
| 198 | + $tokens[$stackPtr]['line'], |
| 199 | + $warnings, |
| 200 | + 'Expected no warnings on line ' . $tokens[$stackPtr]['line'] . '. At least one found.' |
| 201 | + ); |
| 202 | + } else { |
| 203 | + $this->assertArrayNotHasKey( |
| 204 | + $tokens[$stackPtr]['line'], |
| 205 | + $errors, |
| 206 | + 'Expected no errors on line ' . $tokens[$stackPtr]['line'] . '. At least one found.' |
| 207 | + ); |
| 208 | + } |
| 209 | + |
| 210 | + /* |
| 211 | + * Make sure the expected array keys for the the errors/warnings are available. |
| 212 | + */ |
| 213 | + $this->assertArrayHasKey( |
| 214 | + $tokens[$stackPtr]['line'], |
| 215 | + $result, |
| 216 | + 'Expected a violation on line ' . $tokens[$stackPtr]['line'] . '. None found.' |
| 217 | + ); |
| 218 | + |
| 219 | + $this->assertArrayHasKey( |
| 220 | + $tokens[$stackPtr]['column'], |
| 221 | + $result[$tokens[$stackPtr]['line']], |
| 222 | + 'Expected a violation on line ' . $tokens[$stackPtr]['line'] . ', column ' |
| 223 | + . $tokens[$stackPtr]['column'] . '. None found.' |
| 224 | + ); |
| 225 | + |
| 226 | + $messages = $result[$tokens[$stackPtr]['line']][$tokens[$stackPtr]['column']]; |
| 227 | + |
| 228 | + // Expect one violation. |
| 229 | + $this->assertCount(1, $messages, 'Expected 1 violation, found: ' . \count($messages)); |
| 230 | + |
| 231 | + $violation = $messages[0]; |
| 232 | + |
| 233 | + // PHPCS 2.x places `unknownSniff.` before the actual error code for utility tests with a dummy error code. |
| 234 | + $violation['source'] = \str_replace('unknownSniff.', '', $violation['source']); |
| 235 | + |
| 236 | + /* |
| 237 | + * Test the violation details. |
| 238 | + */ |
| 239 | + foreach ($expected as $key => $value) { |
| 240 | + $this->assertSame($value, $violation[$key], \ucfirst($key) . ' comparison failed'); |
| 241 | + } |
| 242 | + } |
| 243 | +} |
0 commit comments