2018-11-18 18:45:40 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-11-18 18:45:40 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2018-11-18 18:45:40 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2021-06-30 21:31:54 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2022-09-02 19:18:23 +00:00
|
|
|
"code.gitea.io/gitea/tests"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2018-11-18 18:45:40 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDownloadByID(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2018-11-18 18:45:40 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
|
|
|
// Request raw blob
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/raw/blob/4b4851ad51df6a7d9f25c979345979eaeb5b349f")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
assert.Equal(t, "# repo1\n\nDescription for repo1", resp.Body.String())
|
|
|
|
}
|
2019-02-12 15:09:43 +00:00
|
|
|
|
2021-01-13 03:45:19 +00:00
|
|
|
func TestDownloadByIDForSVGUsesSecureHeaders(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-01-13 03:45:19 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
|
|
|
// Request raw blob
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo2/raw/blob/6395b68e1feebb1e4c657b4f9f6ba2676a283c0b")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
2022-12-02 22:06:23 +00:00
|
|
|
assert.Equal(t, "default-src 'none'; style-src 'unsafe-inline'; sandbox", resp.Header().Get("Content-Security-Policy"))
|
|
|
|
assert.Equal(t, "image/svg+xml", resp.Header().Get("Content-Type"))
|
|
|
|
assert.Equal(t, "nosniff", resp.Header().Get("X-Content-Type-Options"))
|
2021-01-13 03:45:19 +00:00
|
|
|
}
|
|
|
|
|
2019-02-12 15:09:43 +00:00
|
|
|
func TestDownloadByIDMedia(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2019-02-12 15:09:43 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
|
|
|
// Request raw blob
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/media/blob/4b4851ad51df6a7d9f25c979345979eaeb5b349f")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
assert.Equal(t, "# repo1\n\nDescription for repo1", resp.Body.String())
|
|
|
|
}
|
2021-01-13 03:45:19 +00:00
|
|
|
|
|
|
|
func TestDownloadByIDMediaForSVGUsesSecureHeaders(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-01-13 03:45:19 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
|
|
|
// Request raw blob
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo2/media/blob/6395b68e1feebb1e4c657b4f9f6ba2676a283c0b")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
2022-12-02 22:06:23 +00:00
|
|
|
assert.Equal(t, "default-src 'none'; style-src 'unsafe-inline'; sandbox", resp.Header().Get("Content-Security-Policy"))
|
|
|
|
assert.Equal(t, "image/svg+xml", resp.Header().Get("Content-Type"))
|
|
|
|
assert.Equal(t, "nosniff", resp.Header().Get("X-Content-Type-Options"))
|
2021-01-13 03:45:19 +00:00
|
|
|
}
|
2021-06-30 21:31:54 +00:00
|
|
|
|
|
|
|
func TestDownloadRawTextFileWithoutMimeTypeMapping(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-06-30 21:31:54 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo2/raw/branch/master/test.xml")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
2022-12-02 22:06:23 +00:00
|
|
|
assert.Equal(t, "text/plain; charset=utf-8", resp.Header().Get("Content-Type"))
|
2021-06-30 21:31:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDownloadRawTextFileWithMimeTypeMapping(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-06-30 21:31:54 +00:00
|
|
|
setting.MimeTypeMap.Map[".xml"] = "text/xml"
|
|
|
|
setting.MimeTypeMap.Enabled = true
|
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo2/raw/branch/master/test.xml")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
2022-12-02 22:06:23 +00:00
|
|
|
assert.Equal(t, "text/xml; charset=utf-8", resp.Header().Get("Content-Type"))
|
2021-06-30 21:31:54 +00:00
|
|
|
|
|
|
|
delete(setting.MimeTypeMap.Map, ".xml")
|
|
|
|
setting.MimeTypeMap.Enabled = false
|
|
|
|
}
|