mediawiki-extensions-Linter/tests/phpunit
sbailey 201b47e01d Make Linter category counts more accurate when counts are low
* The code now produces an accurate count if the number of
   errors for a category is below the threshold set by a
   public constant MAX_ACCURATE_COUNT (currently 20).
   The database record count limit was originally set to 1,
   to determine accurately, if there were actually 0 errors
   in a category as the estimate code would never report 0.
   If not 0, it would use the estimated count which does not
   produce an accurate count for any other number of errors.
   For low error counts this is annoying to editors and
   unnecessary. The additional CPU/disk activity to accurately
   check for low error counts is not significantly more than
   checking for 0 or 1, as checking for 0 likely requires
   a complete table scan which is probably expensive compared
   to a low count that early outs when it hits to record limit.

 * An improvement to consider is recording the accurate count in
   a separate tiny table, and maintaining an accurate count there
   which is used in preference to doing the select with row limit
   based on say a 30 second TTL, to prevent a stampede of requests
   from doing extraneous database operations.

 * Added unit test coverage for accurately counting low error
   conditions that are lower than the threshold and also verify
   that the estimate is inaccurate beyond the error count
   threshold.

Bug: T194872
Change-Id: I4f74cfe3bf9601baa0dc8fa6464a68030ac2bc4b
2021-04-27 10:38:24 -07:00
..
unit Convert LintErrorTest to pure unit tests 2021-03-27 02:28:25 +00:00
CategoryMessagesTest.php Remove Column 'Nested wikilinks in external links that need to be fixed' 2019-03-27 08:46:33 -07:00
DatabaseTest.php Make Linter category counts more accurate when counts are low 2021-04-27 10:38:24 -07:00
RecordLintJobTest.php Allow Parsoid to provide category ID hints 2019-12-03 23:26:34 -05:00
SpecialLintErrorsTest.php Update for deprecations in PHPUnit 2020-07-09 17:00:41 +02:00