mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
4de909747b
Some checks are pending
/ release (push) Waiting to run
testing / test-remote-cacher (map[image:redis:7.2 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:registry.redict.io/redict:7.3.0-scratch port:6379]) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-remote-cacher (map[image:docker.io/valkey/valkey:7.2.5-alpine3.19 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:ghcr.io/microsoft/garnet-alpine:1.0.14 port:6379]) (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
go-require lint is ignored for now Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4535 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package log
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSharedWorker(t *testing.T) {
|
|
RegisterEventWriter("dummy", func(writerName string, writerMode WriterMode) EventWriter {
|
|
return newDummyWriter(writerName, writerMode.Level, 0)
|
|
})
|
|
|
|
m := NewManager()
|
|
_, err := m.NewSharedWriter("dummy-1", "dummy", WriterMode{Level: DEBUG, Flags: FlagsFromBits(0)})
|
|
require.NoError(t, err)
|
|
|
|
w := m.GetSharedWriter("dummy-1")
|
|
assert.NotNil(t, w)
|
|
loggerTest := m.GetLogger("test")
|
|
loggerTest.AddWriters(w)
|
|
loggerTest.Info("msg-1")
|
|
loggerTest.ReplaceAllWriters() // the shared writer is not closed here
|
|
loggerTest.Info("never seen")
|
|
|
|
// the shared writer can still be used later
|
|
w = m.GetSharedWriter("dummy-1")
|
|
assert.NotNil(t, w)
|
|
loggerTest.AddWriters(w)
|
|
loggerTest.Info("msg-2")
|
|
|
|
m.GetLogger("test-another").AddWriters(w)
|
|
m.GetLogger("test-another").Info("msg-3")
|
|
|
|
m.Close()
|
|
|
|
logs := w.(*dummyWriter).GetLogs()
|
|
assert.Equal(t, []string{"msg-1\n", "msg-2\n", "msg-3\n"}, logs)
|
|
}
|