1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-24 07:04:51 +02:00

[#1976] added HEAD requests support for the file download action

This commit is contained in:
Gani Georgiev
2023-03-05 15:37:50 +02:00
parent dc96a12dc0
commit 42e288c71a
32 changed files with 49 additions and 35 deletions

View File

@@ -179,6 +179,14 @@ func TestFileDownload(t *testing.T) {
}
for _, scenario := range scenarios {
// clone for the HEAD test (the same as the original scenario but without body)
head := scenario
head.Method = http.MethodHead
head.Name = ("(HEAD) " + scenario.Name)
head.ExpectedContent = nil
head.Test(t)
// regular request test
scenario.Test(t)
}
}