-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip gzip for some well-known compressed file types (#30796)
Co-authored-by: silverwind <me@silverwind.io>
- Loading branch information
1 parent
ce08a9f
commit be112c1
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package integration | ||
|
||
import ( | ||
"io" | ||
"net/http" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/modules/setting" | ||
"code.gitea.io/gitea/modules/test" | ||
"code.gitea.io/gitea/routers" | ||
"code.gitea.io/gitea/routers/web" | ||
"code.gitea.io/gitea/tests" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestRepoDownloadArchive(t *testing.T) { | ||
defer tests.PrepareTestEnv(t)() | ||
defer test.MockVariableValue(&setting.EnableGzip, true)() | ||
defer test.MockVariableValue(&web.GzipMinSize, 10)() | ||
defer test.MockVariableValue(&testWebRoutes, routers.NormalRoutes())() | ||
|
||
req := NewRequest(t, "GET", "/user2/repo1/archive/master.zip") | ||
req.Header.Set("Accept-Encoding", "gzip") | ||
resp := MakeRequest(t, req, http.StatusOK) | ||
bs, err := io.ReadAll(resp.Body) | ||
assert.NoError(t, err) | ||
assert.Empty(t, resp.Header().Get("Content-Encoding")) | ||
assert.Equal(t, 320, len(bs)) | ||
} |