mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-11-01 15:01:03 +00:00
Improve test logger (#24235)
Before, there was a `log/buffer.go`, but that design is not general, and
it introduces a lot of irrelevant `Content() (string, error) ` and
`return "", fmt.Errorf("not supported")` .
And the old `log/buffer.go` is difficult to use, developers have to
write a lot of `Contains` and `Sleep` code.
The new `LogChecker` is designed to be a general approach to help to
assert some messages appearing or not appearing in logs.
This commit is contained in:
parent
65fe0fb22c
commit
911975059a
13 changed files with 195 additions and 214 deletions
|
|
@ -95,11 +95,6 @@ func (log *SMTPLogger) sendMail(p []byte) (int, error) {
|
|||
)
|
||||
}
|
||||
|
||||
// Content returns the content accumulated in the content provider
|
||||
func (log *SMTPLogger) Content() (string, error) {
|
||||
return "", fmt.Errorf("not supported")
|
||||
}
|
||||
|
||||
// Flush when log should be flushed
|
||||
func (log *SMTPLogger) Flush() {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue