use zerolog for integrationtests too

This commit is contained in:
6543 2022-06-10 19:47:52 +02:00
parent de9c37d72b
commit 50df84eec9
2 changed files with 9 additions and 8 deletions

View file

@ -2,24 +2,25 @@ package integration
import (
"context"
"log"
"os"
"testing"
"time"
"codeberg.org/codeberg/pages/cmd"
"github.com/rs/zerolog/log"
"github.com/urfave/cli/v2"
)
func TestMain(m *testing.M) {
log.Println("=== TestMain: START Server ==")
log.Printf("=== TestMain: START Server ==\n")
serverCtx, serverCancel := context.WithCancel(context.Background())
if err := startServer(serverCtx); err != nil {
log.Fatalf("could not start server: %v", err)
log.Fatal().Msgf("could not start server: %v", err)
}
defer func() {
serverCancel()
log.Println("=== TestMain: Server STOPED ==")
log.Printf("=== TestMain: Server STOPED ==\n")
}()
time.Sleep(30 * time.Second)
@ -46,7 +47,7 @@ func startServer(ctx context.Context) error {
go func() {
if err := app.RunContext(ctx, args); err != nil {
log.Fatalf("run server error: %v", err)
log.Fatal().Msgf("run server error: %v", err)
}
}()