Preserve parameterized toString assertions - #1094
Open
martinfrancois wants to merge 1 commit into
Open
Conversation
4 tasks
ByteArrayOutputStream.toString assertions
martinfrancois
force-pushed
the
agent/repro-simplify-assertj-parameterized-tostring
branch
from
August 15, 2026 22:40
a78bfec to
683fdb4
Compare
martinfrancois
force-pushed
the
agent/repro-simplify-assertj-parameterized-tostring
branch
from
August 16, 2026 02:53
683fdb4 to
9b0ad81
Compare
martinfrancois
marked this pull request as ready for review
August 17, 2026 08:05
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.
Suggested review order: 19 of 52 (Score: 6.5)
Review first: openrewrite/rewrite-migrate-java#1206
What's changed?
Leaves parameterized
toStringassertions unchanged. The existing simplification remains active for zero-argumenttoString()calls whose semantics match AssertJ'shasToString(String)assertion.What's your motivation?
Recipe:
org.openrewrite.java.testing.assertj.SimplifyChainedAssertJAssertions.I found this by running
org.openrewrite.java.testing.assertj.SimplifyChainedAssertJAssertionsfromorg.openrewrite.recipe:rewrite-testing-frameworks:3.42.0onLocalLogTailerTest.javain Symphony-Trello ata8013f27. I reproduced the same result with the latest released recipe artifact,org.openrewrite.recipe:rewrite-testing-frameworks:3.44.0../mvnw -DskipTests test-compilethen fails because AssertJ has no overload accepting the generated arguments.Before
Actual after the recipe
Expected after the recipe
(unchanged)The generated call passes a
Charsetwhere AssertJ expects the single expectedString. The transformed target fails compilation withincompatible types: Charset cannot be converted to String.Confirmed real-world execution
LocalLogTailerTest.javaata8013f27.martinfrancois/symphony-trello@a8013f27.Anything in particular you'd like reviewers to focus on?
Please review the zero-argument boundary. A parameterized
toStringcall performs conversion work thathasToStringdoes not represent.Have you considered any alternatives or workarounds?
Dropping the charset would change behavior because
ByteArrayOutputStream.toString(Charset)does not use the same conversion contract asObject.toString().Any additional context
Pre-existing tests changed:
SimplifyChainedAssertJAssertionsTest.java.collectionReplacements(updated).martinfrancois/symphony-trello@a8013f27org.openrewrite.recipe:rewrite-testing-frameworks:3.42.0org.openrewrite.recipe:rewrite-testing-frameworks:3.44.0SimplifyChainedAssertJAssertionsTestThis change was prepared with AI assistance. I reviewed the target execution evidence, implementation, tests, and contribution text.
Checklist
./gradlew buildlocally, and committed any resulting changes torecipes.csv