-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
GitLabForm
fails to handle lists of values properly, overriding earlier entries
#1213
Comments
This is very valuable feedback and probably introduced by the change made for this issue: #1067 I will try to look into this, if you know how to fix it, feel free to send a pull-request. |
In gitlab4j-api/gitlab4j-api/src/main/java/org/gitlab4j/api/GitLabApiForm.java Lines 139 to 143 in 28f43e5
Tested with
The problem is gitlab4j-api/gitlab4j-models/src/main/java/org/gitlab4j/models/GitLabForm.java Lines 124 to 128 in 28f43e5
Because |
…_DESCENDANT_GROUPS Test case for gitlab4j/gitlab4j-api#1213
Can be reproduced with the
Only one of the 2 groups is filtered |
In version 6.0.0-rc.7, the
GitLabForm
class has a methodwithParam(String name, List<T> values, boolean required)
for handling lists of values. However, this method overrides the previously added values in the list when adding parameters toformValues
. As a result, only the last value from the list is retained.Problematic Code
In the above code,
formValues.put()
is used. SinceMap
does not allow duplicate keys, each new value with the same key (name + "[]"
) overrides the previous one.Expected Behavior
The method should allow multiple values for the same parameter (e.g., appending to a list instead of overwriting). This is required for correctly sending form or query parameters like
name[]=value1&name[]=value2
.Actual Behavior
Only the last value from the list is added to
formValues
.Steps to Reproduce
GitLabForm
.withParam("names", Arrays.asList("value1", "value2", "value3"))
.getFormValues()
and check the result.Sample Code:
Actual Output:
Expected Output:
The text was updated successfully, but these errors were encountered: