[test-improver] Improve tests for logger package#589
Merged
Conversation
- Replace 45+ manual error checks with testify assertions - Add bound asserters to all 14 test functions - Add 5 new test cases for better coverage - Achieve 100% testify usage (90+ assertions) - Improve error messages and test clarity
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Test Improvements: jsonl_logger_test.go
File Analyzed
internal/logger/jsonl_logger_test.gointernal/loggerImprovements Made
1. Better Testing Patterns
requireandassert) to all 14 test functionsif err != nil { t.Errorf(...) }withrequire.NoError()orassert.NoError()if got != want) toassert.Equal()strings.Contains()checks toassert.Contains()/assert.NotContains()assert.NotEmpty()2. Increased Coverage
TestInitJSONLLoggerWithInvalidPath- Tests error handling when directory creation failsTestLogRPCMessageJSONLDirectionTypes- Table-driven test for all direction/type combinations (IN/OUT × REQUEST/RESPONSE)TestLogRPCMessageJSONLEmptyPayload- Edge case for empty JSON payloadsTestLogRPCMessageJSONLWithNilError- Normal case verification when no error occurs3. Cleaner & More Stable Tests
tparameter passingrequirefor critical checks,assertfor non-critical validationsTest Execution
Statistics
Changes Summary
Why These Changes?
This test file was selected because:
The improvements make the tests:
Generated by Test Improver Workflow
Focuses on better testify usage, increased coverage, and more stable tests