mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-14 19:22:09 +09:00
feat: Add audit logging (#38189)
Co-authored-by: bircni <bircni@users.noreply.github.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
// Copyright 2026 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package setting
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"gitea.dev/modules/test"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestLoadAuditFrom(t *testing.T) {
|
||||
for _, tc := range []struct {
|
||||
name string
|
||||
cfg string
|
||||
expected AuditRecordOutput
|
||||
}{
|
||||
{name: "DisabledByDefault", cfg: "", expected: AuditRecordOutputDisabled},
|
||||
{name: "Database", cfg: "[audit]\nRECORD_OUTPUT = Database\n", expected: AuditRecordOutputDatabase},
|
||||
{name: "Empty", cfg: "[audit]\nRECORD_OUTPUT =\n", expected: AuditRecordOutputDisabled},
|
||||
{name: "Invalid", cfg: "[audit]\nRECORD_OUTPUT = nonsense\n", expected: AuditRecordOutputDisabled},
|
||||
} {
|
||||
t.Run(tc.name, func(t *testing.T) {
|
||||
defer test.MockVariableValue(&Audit)()
|
||||
|
||||
cfg, err := NewConfigProviderFromData(tc.cfg)
|
||||
require.NoError(t, err)
|
||||
loadAuditFrom(cfg)
|
||||
|
||||
assert.Equal(t, tc.expected, Audit.RecordOutput)
|
||||
assert.Equal(t, tc.expected != AuditRecordOutputDisabled, AuditRecordEnabled())
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user