mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-21 22:40:37 +00:00
c121f02a7e
Environment variables must be applied to the "install form" config before the config values are used. Fixes #38911 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
63 lines
1.8 KiB
Go
63 lines
1.8 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package install
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"gitea.dev/models/unittest"
|
|
"gitea.dev/services/contexttest"
|
|
"gitea.dev/services/forms"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRoutes(t *testing.T) {
|
|
r := Routes()
|
|
assert.NotNil(t, r)
|
|
|
|
w := httptest.NewRecorder()
|
|
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
|
r.ServeHTTP(w, req)
|
|
assert.Equal(t, 200, w.Code)
|
|
assert.Contains(t, w.Body.String(), `class="page-content install"`)
|
|
|
|
w = httptest.NewRecorder()
|
|
req = httptest.NewRequest(http.MethodGet, "/no-such", nil)
|
|
r.ServeHTTP(w, req)
|
|
assert.Equal(t, 404, w.Code)
|
|
|
|
w = httptest.NewRecorder()
|
|
req = httptest.NewRequest(http.MethodGet, "/assets/img/gitea.svg", nil)
|
|
r.ServeHTTP(w, req)
|
|
assert.Equal(t, 200, w.Code)
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m)
|
|
}
|
|
|
|
func TestFillInstallConfig(t *testing.T) {
|
|
ctx, _ := contexttest.MockContext(t, "/")
|
|
t.Run("WithEnv", func(t *testing.T) {
|
|
f := &forms.InstallForm{AppName: "TestAppName"}
|
|
cfg := fillInstallConfig(ctx, []string{
|
|
"GITEA__OAUTH2__JWT_SECRET_URI=any",
|
|
"GITEA____APP_NAME=EnvAppName",
|
|
}, f)
|
|
assert.Equal(t, "EnvAppName", cfg.Section("").Key("APP_NAME").String())
|
|
assert.Empty(t, cfg.Section("oauth2").Key("JWT_SECRET").String())
|
|
assert.Equal(t, "any", cfg.Section("oauth2").Key("JWT_SECRET_URI").String())
|
|
})
|
|
t.Run("NoEnv", func(t *testing.T) {
|
|
f := &forms.InstallForm{AppName: "TestAppName"}
|
|
cfg := fillInstallConfig(ctx, []string{}, f)
|
|
assert.Equal(t, "TestAppName", cfg.Section("").Key("APP_NAME").String())
|
|
assert.NotEmpty(t, cfg.Section("oauth2").Key("JWT_SECRET").String())
|
|
assert.Empty(t, cfg.Section("oauth2").Key("JWT_SECRET_URI").String())
|
|
})
|
|
}
|