Files

106 lines
2.2 KiB
Go
Raw Permalink Normal View History

2023-04-22 04:32:25 +08:00
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package test
import (
2023-05-22 06:35:11 +08:00
"context"
2025-04-01 12:14:01 +02:00
"strconv"
2023-04-22 04:32:25 +08:00
"strings"
"sync"
"sync/atomic"
"time"
"code.gitea.io/gitea/modules/log"
)
type LogChecker struct {
2023-05-22 06:35:11 +08:00
*log.EventWriterBaseImpl
2023-04-22 04:32:25 +08:00
filterMessages []string
filtered []bool
stopMark string
stopped bool
mu sync.Mutex
}
2023-05-22 06:35:11 +08:00
func (lc *LogChecker) Run(ctx context.Context) {
for {
select {
case <-ctx.Done():
return
case event, ok := <-lc.Queue:
if !ok {
return
}
lc.checkLogEvent(event)
}
}
}
func (lc *LogChecker) checkLogEvent(event *log.EventFormatted) {
2023-04-22 04:32:25 +08:00
lc.mu.Lock()
defer lc.mu.Unlock()
for i, msg := range lc.filterMessages {
2023-05-22 06:35:11 +08:00
if strings.Contains(event.Origin.MsgSimpleText, msg) {
2023-04-22 04:32:25 +08:00
lc.filtered[i] = true
}
}
2023-05-22 06:35:11 +08:00
if strings.Contains(event.Origin.MsgSimpleText, lc.stopMark) {
2023-04-22 04:32:25 +08:00
lc.stopped = true
}
}
2026-03-31 18:22:23 +02:00
var checkerIndex atomic.Int64
2023-04-22 04:32:25 +08:00
2023-05-22 06:35:11 +08:00
func NewLogChecker(namePrefix string) (logChecker *LogChecker, cancel func()) {
logger := log.GetManager().GetLogger(namePrefix)
2026-03-31 18:22:23 +02:00
newCheckerIndex := checkerIndex.Add(1)
2025-04-01 12:14:01 +02:00
writerName := namePrefix + "-" + strconv.FormatInt(newCheckerIndex, 10)
2023-05-22 06:35:11 +08:00
lc := &LogChecker{}
lc.EventWriterBaseImpl = log.NewEventWriterBase(writerName, "test-log-checker", log.WriterMode{})
logger.AddWriters(lc)
return lc, func() { _ = logger.RemoveWriter(writerName) }
2023-04-22 04:32:25 +08:00
}
// Filter will make the `Check` function to check if these logs are outputted.
func (lc *LogChecker) Filter(msgs ...string) *LogChecker {
lc.mu.Lock()
defer lc.mu.Unlock()
lc.filterMessages = make([]string, len(msgs))
copy(lc.filterMessages, msgs)
lc.filtered = make([]bool, len(lc.filterMessages))
return lc
}
func (lc *LogChecker) StopMark(msg string) *LogChecker {
lc.mu.Lock()
defer lc.mu.Unlock()
lc.stopMark = msg
lc.stopped = false
return lc
}
// Check returns the filtered slice and whether the stop mark is reached.
func (lc *LogChecker) Check(d time.Duration) (filtered []bool, stopped bool) {
stop := time.Now().Add(d)
for {
lc.mu.Lock()
stopped = lc.stopped
lc.mu.Unlock()
if time.Now().After(stop) || stopped {
lc.mu.Lock()
f := make([]bool, len(lc.filtered))
copy(f, lc.filtered)
lc.mu.Unlock()
return f, stopped
}
time.Sleep(10 * time.Millisecond)
}
}