mirror of
https://github.com/ZizzyDizzyMC/linx-server.git
synced 2026-01-23 02:14:33 +00:00
Serve file directly for curl and wget user agents (#145)
* Serve file directly for curl and wget user agents Fix #127 * Add test for get with wget user agent * Add -nodirectagents flag to disable serving files directly for wget/curl user agents * Fix TestPutAndGetCLI failing for Go 1.5 It failed because it doesn't include the Content-Type header for every response.
This commit is contained in:
parent
7c024d9aab
commit
5d8a0ef605
3 changed files with 58 additions and 0 deletions
|
|
@ -1121,3 +1121,50 @@ func TestShutdown(t *testing.T) {
|
|||
os.RemoveAll(Config.filesDir)
|
||||
os.RemoveAll(Config.metaDir)
|
||||
}
|
||||
|
||||
func TestPutAndGetCLI(t *testing.T) {
|
||||
var myjson RespOkJSON
|
||||
mux := setup()
|
||||
|
||||
// upload file
|
||||
w := httptest.NewRecorder()
|
||||
req, err := http.NewRequest("PUT", "/upload", strings.NewReader("File content"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
req.Header.Set("Accept", "application/json")
|
||||
mux.ServeHTTP(w, req)
|
||||
|
||||
err = json.Unmarshal([]byte(w.Body.String()), &myjson)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// request file without wget user agent
|
||||
w = httptest.NewRecorder()
|
||||
req, err = http.NewRequest("GET", myjson.Url, nil)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
mux.ServeHTTP(w, req)
|
||||
|
||||
contentType := w.Header().Get("Content-Type")
|
||||
if strings.HasPrefix(contentType, "text/plain") {
|
||||
t.Fatalf("Didn't receive file display page but %s", contentType)
|
||||
}
|
||||
|
||||
// request file with wget user agent
|
||||
w = httptest.NewRecorder()
|
||||
req, err = http.NewRequest("GET", myjson.Url, nil)
|
||||
req.Header.Set("User-Agent", "wget")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
mux.ServeHTTP(w, req)
|
||||
|
||||
contentType = w.Header().Get("Content-Type")
|
||||
if !strings.HasPrefix(contentType, "text/plain") {
|
||||
t.Fatalf("Didn't receive file directly but %s", contentType)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue