-
Notifications
You must be signed in to change notification settings - Fork 569
TableErrorFormatter: Limit number of errors #5136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
f5beeb4
TableErrorFormatter: Limit number of errors
staabm 7811b5f
fix count
staabm 541e9d3
Update TableErrorFormatter.php
staabm d6f924e
names..
staabm e720396
feedback
staabm 2645dce
cs
staabm c1c3b9b
fix
staabm c6af6c6
sort
staabm e60f0e8
clear cache
staabm 5f3d7b4
Revert "clear cache"
staabm e23bfa3
Update TableErrorFormatter.php
staabm a0a56d1
Update TableErrorFormatter.php
staabm 14de7e8
cs
staabm dc40aec
Update TableErrorFormatter.php
staabm da69501
usedLevel
staabm b013bb4
Update TableErrorFormatter.php
staabm ae65259
test errors limit
staabm b4ce3ba
fix php7
staabm a024e13
fix php7
staabm f81a553
Update TableErrorFormatterTest.php
staabm 9f522c4
test upper limit
staabm 87155b4
try fixing 7.4
staabm 19455e2
try fix line wrapping
staabm 245a74e
skip on windows
staabm 9d5e859
cleanup env var
staabm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last thing - I'm not sure whether this line works correctly, a lot is going on there.
For example it's easy to make a mistake in
$errorsBudget - ($printedErrors - count($rows))based on whether$printedErrorsalready includes currentcount($rows)or if the+=operation happened after this computation.I'm thinking this should really have some unit tests.
My suggestion - constructor of TableErrorFormatter should have a new optional nullable parameter. If it's null, then the autodetection based on the env variable will happen. If it's not null then that will become the error limit.
The unit test will then construct TableErrorFormatter with a specific value, can be 5. And we should test the output for < 5, exactly 5 and > 5.