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>
70 lines
2.3 KiB
Go
70 lines
2.3 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/models/system"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/setting"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/setting/config"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/test"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/tests"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestAdminConfig(t *testing.T) {
|
|
defer tests.PrepareTestEnv(t)()
|
|
|
|
session := loginUser(t, "user1")
|
|
req := NewRequest(t, "GET", "/-/admin/config")
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
assert.True(t, test.IsNormalPageCompleted(resp.Body.String()))
|
|
|
|
t.Run("OpenEditorWithApps", func(t *testing.T) {
|
|
cfg := setting.Config().Repository.OpenWithEditorApps
|
|
editorApps := cfg.Value(t.Context())
|
|
assert.Len(t, editorApps, 3)
|
|
assert.False(t, cfg.HasValue(t.Context()))
|
|
|
|
require.NoError(t, system.SetSettings(t.Context(), map[string]string{cfg.DynKey(): "[]"}))
|
|
config.GetDynGetter().InvalidateCache()
|
|
|
|
editorApps = cfg.Value(t.Context())
|
|
assert.Len(t, editorApps, 3)
|
|
assert.False(t, cfg.HasValue(t.Context()))
|
|
|
|
require.NoError(t, system.SetSettings(t.Context(), map[string]string{cfg.DynKey(): "[{}]"}))
|
|
config.GetDynGetter().InvalidateCache()
|
|
|
|
editorApps = cfg.Value(t.Context())
|
|
assert.Len(t, editorApps, 1)
|
|
assert.True(t, cfg.HasValue(t.Context()))
|
|
})
|
|
|
|
t.Run("InstanceWebBanner", func(t *testing.T) {
|
|
banner, rev1, has := setting.Config().Instance.WebBanner.ValueRevision(t.Context())
|
|
assert.False(t, has)
|
|
assert.Equal(t, setting.WebBannerType{}, banner)
|
|
|
|
req = NewRequestWithValues(t, "POST", "/-/admin/config", map[string]string{
|
|
"key": "instance.web_banner",
|
|
"value": `{"DisplayEnabled":true,"ContentMessage":"test-msg","StartTimeUnix":123,"EndTimeUnix":456}`,
|
|
})
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
banner, rev2, has := setting.Config().Instance.WebBanner.ValueRevision(t.Context())
|
|
assert.NotEqual(t, rev1, rev2)
|
|
assert.True(t, has)
|
|
assert.Equal(t, setting.WebBannerType{
|
|
DisplayEnabled: true,
|
|
ContentMessage: "test-msg",
|
|
StartTimeUnix: 123,
|
|
EndTimeUnix: 456,
|
|
}, banner)
|
|
})
|
|
}
|