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.
74 lines
1.6 KiB
Go
74 lines
1.6 KiB
Go
2 years ago
|
package trace
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"go.opentelemetry.io/otel/attribute"
|
||
|
"go.opentelemetry.io/otel/codes"
|
||
|
"go.opentelemetry.io/otel/trace"
|
||
|
"google.golang.org/protobuf/reflect/protoreflect"
|
||
|
"google.golang.org/protobuf/types/dynamicpb"
|
||
|
)
|
||
|
|
||
|
func TestMessageType_Event(t *testing.T) {
|
||
|
var span mockSpan
|
||
|
ctx := trace.ContextWithSpan(context.Background(), &span)
|
||
|
MessageReceived.Event(ctx, 1, "foo")
|
||
|
assert.Equal(t, messageEvent, span.name)
|
||
|
assert.NotEmpty(t, span.options)
|
||
|
}
|
||
|
|
||
|
func TestMessageType_EventProtoMessage(t *testing.T) {
|
||
|
var span mockSpan
|
||
|
var message mockMessage
|
||
|
ctx := trace.ContextWithSpan(context.Background(), &span)
|
||
|
MessageReceived.Event(ctx, 1, message)
|
||
|
assert.Equal(t, messageEvent, span.name)
|
||
|
assert.NotEmpty(t, span.options)
|
||
|
}
|
||
|
|
||
|
type mockSpan struct {
|
||
|
name string
|
||
|
options []trace.EventOption
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) End(options ...trace.SpanEndOption) {
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) AddEvent(name string, options ...trace.EventOption) {
|
||
|
m.name = name
|
||
|
m.options = options
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) IsRecording() bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) RecordError(err error, options ...trace.EventOption) {
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) SpanContext() trace.SpanContext {
|
||
|
panic("implement me")
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) SetStatus(code codes.Code, description string) {
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) SetName(name string) {
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) SetAttributes(kv ...attribute.KeyValue) {
|
||
|
}
|
||
|
|
||
|
func (m *mockSpan) TracerProvider() trace.TracerProvider {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type mockMessage struct{}
|
||
|
|
||
|
func (m mockMessage) ProtoReflect() protoreflect.Message {
|
||
|
return new(dynamicpb.Message)
|
||
|
}
|