2023-08-10 09:06:00 +00:00
|
|
|
// Copyright 2023 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-04-06 13:44:04 +00:00
|
|
|
package logging
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2021-11-23 14:36:52 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2024-01-14 17:22:06 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
2019-04-06 13:44:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestLogging(t *testing.T) {
|
|
|
|
var (
|
|
|
|
wg sync.WaitGroup
|
|
|
|
|
2023-06-06 07:52:08 +00:00
|
|
|
testStepID = int64(123)
|
|
|
|
testEntry = &model.LogEntry{
|
2019-04-06 13:44:04 +00:00
|
|
|
Data: []byte("test"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2023-03-20 23:48:15 +00:00
|
|
|
ctx, cancel := context.WithCancelCause(
|
2019-04-06 13:44:04 +00:00
|
|
|
context.Background(),
|
|
|
|
)
|
|
|
|
|
|
|
|
logger := New()
|
2023-06-06 07:52:08 +00:00
|
|
|
assert.NoError(t, logger.Open(ctx, testStepID))
|
2019-04-06 13:44:04 +00:00
|
|
|
go func() {
|
2024-02-08 21:49:07 +00:00
|
|
|
assert.NoError(t, logger.Tail(ctx, testStepID, func(_ ...*model.LogEntry) { wg.Done() }))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
go func() {
|
2024-02-08 21:49:07 +00:00
|
|
|
assert.NoError(t, logger.Tail(ctx, testStepID, func(_ ...*model.LogEntry) { wg.Done() }))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
|
2019-06-24 07:25:21 +00:00
|
|
|
<-time.After(500 * time.Millisecond)
|
2019-04-06 13:44:04 +00:00
|
|
|
|
|
|
|
wg.Add(4)
|
|
|
|
go func() {
|
2023-06-06 07:52:08 +00:00
|
|
|
assert.NoError(t, logger.Write(ctx, testStepID, testEntry))
|
|
|
|
assert.NoError(t, logger.Write(ctx, testStepID, testEntry))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
2024-02-08 21:49:07 +00:00
|
|
|
assert.NoError(t, logger.Tail(ctx, testStepID, func(_ ...*model.LogEntry) { wg.Done() }))
|
2019-04-06 13:44:04 +00:00
|
|
|
}()
|
|
|
|
|
2019-06-24 07:25:21 +00:00
|
|
|
<-time.After(500 * time.Millisecond)
|
2019-04-06 13:44:04 +00:00
|
|
|
|
|
|
|
wg.Wait()
|
2023-03-20 23:48:15 +00:00
|
|
|
cancel(nil)
|
2019-04-06 13:44:04 +00:00
|
|
|
}
|