mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-25 06:03:40 +09:00
1. remove useless options 2. set AppDataPath instead of repo root path 3. make "disable self-registration" default enabled 4. avoid writing corrupted ini file 5. avoid auto-sign-in the existing admin user
74 lines
2.2 KiB
Go
74 lines
2.2 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/modules/setting"
|
|
"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())
|
|
})
|
|
t.Run("CleanUp", func(t *testing.T) {
|
|
tmpFile := t.TempDir() + "/test.ini"
|
|
f := &forms.InstallForm{AppName: "foo\x00\r\nbar"}
|
|
cfg := fillInstallConfig(ctx, []string{}, f)
|
|
err := cfg.SaveTo(tmpFile)
|
|
assert.NoError(t, err)
|
|
ini, err := setting.NewConfigProviderFromFile(tmpFile)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, `foo bar`, ini.Section("").Key("APP_NAME").String())
|
|
})
|
|
}
|