2024-05-02 02:27:25 +00:00
|
|
|
// 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"
|
2024-05-25 21:49:20 +00:00
|
|
|
"code.gitea.io/gitea/routers/web"
|
2024-05-02 02:27:25 +00:00
|
|
|
"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)()
|
2024-05-25 21:49:20 +00:00
|
|
|
defer test.MockVariableValue(&web.GzipMinSize, 10)()
|
2024-05-02 02:27:25 +00:00
|
|
|
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))
|
|
|
|
}
|