Skip to content
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

Unexpected exception in UriComponentsBuilder with a valid URI. #32815

Closed
victorherraiz opened this issue May 14, 2024 · 2 comments
Closed

Unexpected exception in UriComponentsBuilder with a valid URI. #32815

victorherraiz opened this issue May 14, 2024 · 2 comments
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: declined A suggestion or change that we don't feel we should currently apply

Comments

@victorherraiz
Copy link

victorherraiz commented May 14, 2024

Query string parameters with equals in the value throw and exception in build method:

    @Test
    public void equals_in_query_string_value() {
        var str = "https://localhost:8080/callback?param1=a%20b&param2=1=2";
        var uri = URI.create(str);
        var actual = UriComponentsBuilder.fromUri(uri)
            .build(true)
            .toUri();
        assertEquals(uri, actual);
    }

Exception:

java.lang.IllegalArgumentException: Invalid character '=' for QUERY_PARAM in "1=2"

I use true because the source is already a valid URI and I do not want a doble escape in the param1.

I did not find anything in any standard or convention that says that this character is forbidden, I tried different implementations and they worked as espected: URLSearchParams in any browser, node queryparams, etc.

Expected behaviour:

  • Both URIs in the test should be equal.
  • No exception should be thrown.
  • param2 equals 1=2

References:

URL (Web API) example:

new URL('https://localhost:8080/callback?param1=a%20b&param2=1=2').searchParams
URLSearchParams { 'param1' => 'a b', 'param2' => '1=2' }
@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label May 14, 2024
@jhoeller jhoeller added the in: web Issues in web modules (web, webmvc, webflux, websocket) label May 14, 2024
@poutsma
Copy link
Contributor

poutsma commented May 15, 2024

UriComponentsBuilder has stricter requirements than java.net.URI. Most of these were requested by users, for instance see here for someone who does want to encode = characters.

There are ways to bypass the validation, for instance:

var str = "https://localhost:8080/callback?param1=a%20b&param2=1=2";
var uri = URI.create(str);
var uriString = UriComponentsBuilder.fromUri(uri).build().toUriString();
var actual = URI.create(uriString);

assertEquals(uri, actual);

@poutsma poutsma closed this as not planned Won't fix, can't repro, duplicate, stale May 15, 2024
@poutsma poutsma added status: declined A suggestion or change that we don't feel we should currently apply and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels May 15, 2024
@victorherraiz
Copy link
Author

victorherraiz commented May 17, 2024

I have the following use case: the URI that I am calling is a callback sent by third parties. Those URIs, with equals in the value part, are understood and processed correctly in Tomcat, Netty, Node, and are valid from a standards point of view. After that, depending on the outcome of preceding operations, I add more parameters to the URI before the actual call.

In my opinion, there is a difference between validation and encoding. Not only the characters that you want to encode are valid ones, but there are also several examples and different recommendations. I suggest splitting the method
public abstract boolean isAllowed(int c) in the class Type into two, one for validation and another for encoding. This will cover the user request and accept valid URIs at the same time, and in some cases, it could use the same implementation.

Another problem is that the UriComponentBuilder is at the heart of WebClient and RestClient, which makes the workaround a little bit messy.

@poutsma, any thoughts?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: declined A suggestion or change that we don't feel we should currently apply
Projects
None yet
Development

No branches or pull requests

4 participants