c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package context
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/setting"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRedirect(t *testing.T) {
|
|
setting.IsInTesting = true
|
|
req, _ := http.NewRequest(http.MethodGet, "/", nil)
|
|
|
|
cases := []struct {
|
|
url string
|
|
keep bool
|
|
}{
|
|
{"http://test", false},
|
|
{"https://test", false},
|
|
{"//test", false},
|
|
{"/://test", true},
|
|
{"/test", true},
|
|
}
|
|
for _, c := range cases {
|
|
resp := httptest.NewRecorder()
|
|
b := NewBaseContextForTest(resp, req)
|
|
resp.Header().Add("Set-Cookie", (&http.Cookie{Name: setting.SessionConfig.CookieName, Value: "dummy"}).String())
|
|
b.Redirect(c.url)
|
|
has := resp.Header().Get("Set-Cookie") == "i_like_gitea=dummy"
|
|
assert.Equal(t, c.keep, has, "url = %q", c.url)
|
|
}
|
|
|
|
req, _ = http.NewRequest(http.MethodGet, "/", nil)
|
|
resp := httptest.NewRecorder()
|
|
req.Header.Add("X-Gitea-Fetch-Action", "1")
|
|
b := NewBaseContextForTest(resp, req)
|
|
b.Redirect("/other")
|
|
assert.Contains(t, resp.Header().Get("Content-Type"), "application/json")
|
|
assert.JSONEq(t, `{"redirect":"/other"}`, resp.Body.String())
|
|
assert.Equal(t, http.StatusOK, resp.Code)
|
|
}
|