Skip to content

Conversation

neenapj
Copy link

@neenapj neenapj commented Oct 1, 2025

Updated EntityPartTest to perform a full server‑side process and remove the filter.

Added a new test, called AsyncEntityPartTest, to exercise the asynchronous call path with a full server process.
Resolves #403

@neenapj neenapj marked this pull request as ready for review October 1, 2025 08:32
@jim-krueger
Copy link
Contributor

jim-krueger commented Oct 3, 2025

@jclingan @Emily-Jiang: @jamezp is going to check this change out on RESTEasy. We have already confirmed it on Open Liberty. Once James has confirmed we will need one of you to merge as none of us have authority. But before you do that, perhaps it would be good for one of you to create a 4.0.X-service branch from main prior to this merge?

Copy link
Contributor

@jamezp jamezp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one minor comment.

private AsyncFileManagerClient createClient() {
try {
return RestClientBuilder.newBuilder()
.baseUri(createCombinedUri(uri, "entitypart"))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FWIW this could just be:

.baseUri(UriBuilder.fromUri(uri).path("entitypart").build())

Then the createCombineUri could be removed. Not critical though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Async version of org.eclipse.microprofile.rest.client.tck.EntityPartTest to test multipart is missing in the tck

3 participants