Add test for ignoring invalid metadata

This commit is contained in:
Marius 2016-10-13 18:50:49 +02:00
parent a7e4fcc42e
commit 59c7a9fab6
1 changed files with 4 additions and 3 deletions

View File

@ -29,9 +29,10 @@ func TestPost(t *testing.T) {
(&httpTest{
Method: "POST",
ReqHeader: map[string]string{
"Tus-Resumable": "1.0.0",
"Upload-Length": "300",
"Upload-Metadata": "foo aGVsbG8=, bar d29ybGQ=",
"Tus-Resumable": "1.0.0",
"Upload-Length": "300",
// Invalid Base64-encoded values should be ignored
"Upload-Metadata": "foo aGVsbG8=, bar d29ybGQ=, hah INVALID",
},
Code: http.StatusCreated,
ResHeader: map[string]string{