2020-03-23 22:41:10 -07:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2024-02-29 07:05:28 +01:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2019-09-16 13:58:15 -07:00
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
package trace
|
2019-09-16 13:58:15 -07:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2021-04-28 17:15:00 +00:00
|
|
|
"errors"
|
2023-04-14 19:53:47 +05:30
|
|
|
"sync"
|
2019-09-16 13:58:15 -07:00
|
|
|
"testing"
|
2021-04-28 17:15:00 +00:00
|
|
|
"time"
|
2019-09-16 13:58:15 -07:00
|
|
|
|
2023-04-14 19:53:47 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2021-03-08 17:50:15 +00:00
|
|
|
)
|
|
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
type simpleTestExporter struct {
|
|
|
|
|
spans []ReadOnlySpan
|
2021-03-08 17:50:15 +00:00
|
|
|
shutdown bool
|
2019-09-16 13:58:15 -07:00
|
|
|
}
|
|
|
|
|
|
2025-08-04 21:48:04 +02:00
|
|
|
func (t *simpleTestExporter) ExportSpans(_ context.Context, spans []ReadOnlySpan) error {
|
2021-05-04 23:45:13 +00:00
|
|
|
t.spans = append(t.spans, spans...)
|
2020-09-09 10:19:03 -07:00
|
|
|
return nil
|
2019-09-16 13:58:15 -07:00
|
|
|
}
|
|
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
func (t *simpleTestExporter) Shutdown(ctx context.Context) error {
|
2021-03-08 17:50:15 +00:00
|
|
|
t.shutdown = true
|
2021-10-19 08:13:37 -07:00
|
|
|
select {
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
// Ensure context deadline tests receive the expected error.
|
|
|
|
|
return ctx.Err()
|
|
|
|
|
default:
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2021-03-08 17:50:15 +00:00
|
|
|
}
|
2020-09-09 10:19:03 -07:00
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
var _ SpanExporter = (*simpleTestExporter)(nil)
|
2019-09-16 13:58:15 -07:00
|
|
|
|
|
|
|
|
func TestNewSimpleSpanProcessor(t *testing.T) {
|
2025-03-04 21:29:11 -05:00
|
|
|
if ssp := NewSimpleSpanProcessor(&simpleTestExporter{}); ssp == nil {
|
2021-03-08 17:50:15 +00:00
|
|
|
t.Error("failed to create new SimpleSpanProcessor")
|
2019-09-16 13:58:15 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestNewSimpleSpanProcessorWithNilExporter(t *testing.T) {
|
2025-03-04 21:29:11 -05:00
|
|
|
if ssp := NewSimpleSpanProcessor(nil); ssp == nil {
|
2021-03-08 17:50:15 +00:00
|
|
|
t.Error("failed to create new SimpleSpanProcessor with nil exporter")
|
2019-09-16 13:58:15 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 17:50:15 +00:00
|
|
|
func TestSimpleSpanProcessorOnEnd(t *testing.T) {
|
|
|
|
|
tp := basicTracerProvider(t)
|
2025-03-04 21:29:11 -05:00
|
|
|
te := simpleTestExporter{}
|
|
|
|
|
ssp := NewSimpleSpanProcessor(&te)
|
2021-03-08 17:50:15 +00:00
|
|
|
|
|
|
|
|
tp.RegisterSpanProcessor(ssp)
|
2025-03-04 21:29:11 -05:00
|
|
|
startSpan(tp, "TestSimpleSpanProcessorOnEnd").End()
|
2019-09-16 13:58:15 -07:00
|
|
|
|
|
|
|
|
wantTraceID := tid
|
2021-05-04 23:45:13 +00:00
|
|
|
gotTraceID := te.spans[0].SpanContext().TraceID()
|
2019-09-16 13:58:15 -07:00
|
|
|
if wantTraceID != gotTraceID {
|
|
|
|
|
t.Errorf("SimplerSpanProcessor OnEnd() check: got %+v, want %+v\n", gotTraceID, wantTraceID)
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-09 00:34:19 +07:00
|
|
|
|
|
|
|
|
func TestSimpleSpanProcessorShutdown(t *testing.T) {
|
2025-03-04 21:29:11 -05:00
|
|
|
exporter := &simpleTestExporter{}
|
|
|
|
|
ssp := NewSimpleSpanProcessor(exporter)
|
2021-03-08 17:50:15 +00:00
|
|
|
|
|
|
|
|
// Ensure we can export a span before we test we cannot after shutdown.
|
|
|
|
|
tp := basicTracerProvider(t)
|
|
|
|
|
tp.RegisterSpanProcessor(ssp)
|
2025-03-04 21:29:11 -05:00
|
|
|
startSpan(tp, "TestSimpleSpanProcessorShutdown").End()
|
2021-03-08 17:50:15 +00:00
|
|
|
nExported := len(exporter.spans)
|
|
|
|
|
if nExported != 1 {
|
|
|
|
|
t.Error("failed to verify span export")
|
2019-10-09 00:34:19 +07:00
|
|
|
}
|
|
|
|
|
|
2021-03-08 17:50:15 +00:00
|
|
|
if err := ssp.Shutdown(context.Background()); err != nil {
|
|
|
|
|
t.Errorf("shutting the SimpleSpanProcessor down: %v", err)
|
2020-10-27 05:06:55 +03:00
|
|
|
}
|
2021-03-08 17:50:15 +00:00
|
|
|
if !exporter.shutdown {
|
|
|
|
|
t.Error("SimpleSpanProcessor.Shutdown did not shut down exporter")
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
startSpan(tp, "TestSimpleSpanProcessorShutdown").End()
|
2021-03-08 17:50:15 +00:00
|
|
|
if len(exporter.spans) > nExported {
|
|
|
|
|
t.Error("exported span to shutdown exporter")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-24 09:35:06 +02:00
|
|
|
func TestSimpleSpanProcessorShutdownOnEndConcurrentSafe(t *testing.T) {
|
2025-03-04 21:29:11 -05:00
|
|
|
exporter := &simpleTestExporter{}
|
|
|
|
|
ssp := NewSimpleSpanProcessor(exporter)
|
2021-03-08 17:50:15 +00:00
|
|
|
tp := basicTracerProvider(t)
|
|
|
|
|
tp.RegisterSpanProcessor(ssp)
|
|
|
|
|
|
|
|
|
|
stop := make(chan struct{})
|
|
|
|
|
done := make(chan struct{})
|
|
|
|
|
go func() {
|
|
|
|
|
defer func() {
|
|
|
|
|
done <- struct{}{}
|
|
|
|
|
}()
|
|
|
|
|
for {
|
|
|
|
|
select {
|
|
|
|
|
case <-stop:
|
|
|
|
|
return
|
|
|
|
|
default:
|
2025-03-04 21:29:11 -05:00
|
|
|
startSpan(tp, "TestSimpleSpanProcessorShutdownOnEndConcurrentSafe").End()
|
2021-03-08 17:50:15 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
if err := ssp.Shutdown(context.Background()); err != nil {
|
|
|
|
|
t.Errorf("shutting the SimpleSpanProcessor down: %v", err)
|
|
|
|
|
}
|
|
|
|
|
if !exporter.shutdown {
|
|
|
|
|
t.Error("SimpleSpanProcessor.Shutdown did not shut down exporter")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop <- struct{}{}
|
|
|
|
|
<-done
|
2019-10-09 00:34:19 +07:00
|
|
|
}
|
2021-04-28 17:15:00 +00:00
|
|
|
|
2023-07-24 09:35:06 +02:00
|
|
|
func TestSimpleSpanProcessorShutdownOnEndConcurrentSafe2(t *testing.T) {
|
2025-03-04 21:29:11 -05:00
|
|
|
exporter := &simpleTestExporter{}
|
|
|
|
|
ssp := NewSimpleSpanProcessor(exporter)
|
2023-04-14 19:53:47 +05:30
|
|
|
tp := basicTracerProvider(t)
|
|
|
|
|
tp.RegisterSpanProcessor(ssp)
|
|
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
wg.Add(2)
|
|
|
|
|
|
|
|
|
|
span := func(spanName string) {
|
|
|
|
|
assert.NotPanics(t, func() {
|
|
|
|
|
defer wg.Done()
|
|
|
|
|
_, span := tp.Tracer("test").Start(context.Background(), spanName)
|
|
|
|
|
span.End()
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
go span("test-span-1")
|
|
|
|
|
go span("test-span-2")
|
|
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
|
|
assert.NoError(t, ssp.Shutdown(context.Background()))
|
|
|
|
|
assert.True(t, exporter.shutdown, "exporter shutdown")
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-28 17:15:00 +00:00
|
|
|
func TestSimpleSpanProcessorShutdownHonorsContextDeadline(t *testing.T) {
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Nanosecond)
|
|
|
|
|
defer cancel()
|
|
|
|
|
<-ctx.Done()
|
|
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
ssp := NewSimpleSpanProcessor(&simpleTestExporter{})
|
2021-04-28 17:15:00 +00:00
|
|
|
if got, want := ssp.Shutdown(ctx), context.DeadlineExceeded; !errors.Is(got, want) {
|
|
|
|
|
t.Errorf("SimpleSpanProcessor.Shutdown did not return %v, got %v", want, got)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestSimpleSpanProcessorShutdownHonorsContextCancel(t *testing.T) {
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
|
cancel()
|
|
|
|
|
|
2025-03-04 21:29:11 -05:00
|
|
|
ssp := NewSimpleSpanProcessor(&simpleTestExporter{})
|
2021-04-28 17:15:00 +00:00
|
|
|
if got, want := ssp.Shutdown(ctx), context.Canceled; !errors.Is(got, want) {
|
|
|
|
|
t.Errorf("SimpleSpanProcessor.Shutdown did not return %v, got %v", want, got)
|
|
|
|
|
}
|
|
|
|
|
}
|