You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
4.6 KiB
Go
157 lines
4.6 KiB
Go
package redis
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"net"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
red "github.com/redis/go-redis/v9"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/zeromicro/go-zero/core/breaker"
|
|
"github.com/zeromicro/go-zero/core/logx/logtest"
|
|
"github.com/zeromicro/go-zero/core/trace/tracetest"
|
|
tracesdk "go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
func TestHookProcessCase1(t *testing.T) {
|
|
tracetest.NewInMemoryExporter(t)
|
|
w := logtest.NewCollector(t)
|
|
|
|
err := durationHook.ProcessHook(func(ctx context.Context, cmd red.Cmder) error {
|
|
assert.Equal(t, "redis", tracesdk.SpanFromContext(ctx).(interface{ Name() string }).Name())
|
|
return nil
|
|
})(context.Background(), red.NewCmd(context.Background()))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.False(t, strings.Contains(w.String(), "slow"))
|
|
}
|
|
|
|
func TestHookProcessCase2(t *testing.T) {
|
|
tracetest.NewInMemoryExporter(t)
|
|
w := logtest.NewCollector(t)
|
|
|
|
err := durationHook.ProcessHook(func(ctx context.Context, cmd red.Cmder) error {
|
|
assert.Equal(t, "redis", tracesdk.SpanFromContext(ctx).(interface{ Name() string }).Name())
|
|
time.Sleep(slowThreshold.Load() + time.Millisecond)
|
|
return nil
|
|
})(context.Background(), red.NewCmd(context.Background()))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.True(t, strings.Contains(w.String(), "slow"))
|
|
assert.True(t, strings.Contains(w.String(), "trace"))
|
|
assert.True(t, strings.Contains(w.String(), "span"))
|
|
}
|
|
|
|
func TestHookProcessPipelineCase1(t *testing.T) {
|
|
tracetest.NewInMemoryExporter(t)
|
|
w := logtest.NewCollector(t)
|
|
|
|
err := durationHook.ProcessPipelineHook(func(ctx context.Context, cmds []red.Cmder) error {
|
|
return nil
|
|
})(context.Background(), nil)
|
|
assert.NoError(t, err)
|
|
|
|
err = durationHook.ProcessPipelineHook(func(ctx context.Context, cmds []red.Cmder) error {
|
|
assert.Equal(t, "redis", tracesdk.SpanFromContext(ctx).(interface{ Name() string }).Name())
|
|
return nil
|
|
})(context.Background(), []red.Cmder{
|
|
red.NewCmd(context.Background()),
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
assert.False(t, strings.Contains(w.String(), "slow"))
|
|
}
|
|
|
|
func TestHookProcessPipelineCase2(t *testing.T) {
|
|
tracetest.NewInMemoryExporter(t)
|
|
w := logtest.NewCollector(t)
|
|
|
|
err := durationHook.ProcessPipelineHook(func(ctx context.Context, cmds []red.Cmder) error {
|
|
assert.Equal(t, "redis", tracesdk.SpanFromContext(ctx).(interface{ Name() string }).Name())
|
|
time.Sleep(slowThreshold.Load() + time.Millisecond)
|
|
return nil
|
|
})(context.Background(), []red.Cmder{
|
|
red.NewCmd(context.Background()),
|
|
})
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, strings.Contains(w.String(), "slow"))
|
|
assert.True(t, strings.Contains(w.String(), "trace"))
|
|
assert.True(t, strings.Contains(w.String(), "span"))
|
|
}
|
|
|
|
func TestHookProcessPipelineCase3(t *testing.T) {
|
|
te := tracetest.NewInMemoryExporter(t)
|
|
|
|
err := durationHook.ProcessPipelineHook(func(ctx context.Context, cmds []red.Cmder) error {
|
|
assert.Equal(t, "redis", tracesdk.SpanFromContext(ctx).(interface{ Name() string }).Name())
|
|
return assert.AnError
|
|
})(context.Background(), []red.Cmder{
|
|
red.NewCmd(context.Background()),
|
|
})
|
|
assert.ErrorIs(t, err, assert.AnError)
|
|
traceLogs := te.GetSpans().Snapshots()[0]
|
|
assert.Equal(t, "redis", traceLogs.Name())
|
|
assert.Equal(t, assert.AnError.Error(), traceLogs.Events()[0].Attributes[1].Value.AsString(), "trace should record error")
|
|
}
|
|
|
|
func TestLogDuration(t *testing.T) {
|
|
w := logtest.NewCollector(t)
|
|
|
|
logDuration(context.Background(), []red.Cmder{
|
|
red.NewCmd(context.Background(), "get", "foo"),
|
|
}, 1*time.Second)
|
|
assert.True(t, strings.Contains(w.String(), "get foo"))
|
|
|
|
logDuration(context.Background(), []red.Cmder{
|
|
red.NewCmd(context.Background(), "get", "foo"),
|
|
red.NewCmd(context.Background(), "set", "bar", 0),
|
|
}, 1*time.Second)
|
|
assert.True(t, strings.Contains(w.String(), `get foo\nset bar 0`))
|
|
}
|
|
|
|
func TestFormatError(t *testing.T) {
|
|
// Test case: err is OpError
|
|
err := &net.OpError{
|
|
Err: mockOpError{},
|
|
}
|
|
assert.Equal(t, "timeout", formatError(err))
|
|
|
|
// Test case: err is nil
|
|
assert.Equal(t, "", formatError(nil))
|
|
|
|
// Test case: err is red.Nil
|
|
assert.Equal(t, "", formatError(red.Nil))
|
|
|
|
// Test case: err is io.EOF
|
|
assert.Equal(t, "eof", formatError(io.EOF))
|
|
|
|
// Test case: err is context.DeadlineExceeded
|
|
assert.Equal(t, "context deadline", formatError(context.DeadlineExceeded))
|
|
|
|
// Test case: err is breaker.ErrServiceUnavailable
|
|
assert.Equal(t, "breaker open", formatError(breaker.ErrServiceUnavailable))
|
|
|
|
// Test case: err is unknown
|
|
assert.Equal(t, "unexpected error", formatError(errors.New("some error")))
|
|
}
|
|
|
|
type mockOpError struct {
|
|
}
|
|
|
|
func (mockOpError) Error() string {
|
|
return "mock error"
|
|
}
|
|
|
|
func (mockOpError) Timeout() bool {
|
|
return true
|
|
}
|