copy query values before update to preserve the expected keys (#15310)

in success_action_redirect we were missing required
query params as per S3 spec - updated tests.
This commit is contained in:
Harshavardhana
2022-07-15 15:04:48 -07:00
committed by GitHub
parent 785b429737
commit 1cd6713e24
2 changed files with 10 additions and 6 deletions

View File

@@ -499,9 +499,11 @@ func testPostPolicyBucketHandlerRedirect(obj ObjectLayer, instanceType string, t
t.Error("Unexpected error: ", err)
}
redirectURL.Query().Add("bucket", info.Bucket)
redirectURL.Query().Add("key", info.Name)
redirectURL.Query().Add("etag", "\""+info.ETag+"\"")
v := redirectURL.Query()
v.Add("bucket", info.Bucket)
v.Add("key", info.Name)
v.Add("etag", "\""+info.ETag+"\"")
redirectURL.RawQuery = v.Encode()
expectedLocation := redirectURL.String()
// Check the new location url