Skip to content

Commit

Permalink
More feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Drutu <[email protected]>
  • Loading branch information
bogdandrutu committed Jul 30, 2020
1 parent a68f171 commit 6b88e19
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 20 deletions.
48 changes: 33 additions & 15 deletions sdk/export/trace/tracetest/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package tracetest // import "go.opentelemetry.io/otel/sdk/export/trace"
// tracetest is a testing helper package for the SDK. User can configure no-op or in-memory exporters to verify
// different SDK behaviors or custom instrumentation.
package tracetest // import "go.opentelemetry.io/otel/sdk/export/trace/tracetest"

import (
"context"
Expand All @@ -21,46 +23,62 @@ import (
"go.opentelemetry.io/otel/sdk/export/trace"
)

// NewNoopSpanBatcher returns a new no-op trace.SpanBatcher.
func NewNoopSpanBatcher() trace.SpanBatcher {
return new(noopSpanBatcher)
}
var _ trace.SpanBatcher = (*NoopExporter)(nil)
var _ trace.SpanSyncer = (*NoopExporter)(nil)

type noopSpanBatcher struct {
// NewNoopExporter returns a new no-op exporter.
// It implements both trace.SpanBatcher and trace.SpanSyncer.
func NewNoopExporter() *NoopExporter {
return new(NoopExporter)
}

// NoopExporter is an exporter that does nothing.
type NoopExporter struct{}

// ExportSpans implements the trace.SpanBatcher interface.
func (nsb *noopSpanBatcher) ExportSpans(context.Context, []*trace.SpanData) {}
func (nsb *NoopExporter) ExportSpans(context.Context, []*trace.SpanData) {}

// ExportSpan implements the trace.SpanSyncer interface.
func (nsb *noopSpanBatcher) ExportSpan(context.Context, trace.SpanData) {}
func (nsb *NoopExporter) ExportSpan(context.Context, *trace.SpanData) {}

// NewInMemorySpanBatcher returns a new trace.SpanBatcher that stores in-memory all exported spans.
func NewInMemorySpanBatcher() *InMemorySpanBatcher {
return new(InMemorySpanBatcher)
var _ trace.SpanBatcher = (*InMemoryExporter)(nil)
var _ trace.SpanSyncer = (*InMemoryExporter)(nil)

// NewInMemoryExporter returns a new trace.SpanBatcher that stores in-memory all exported spans.
// It implements both trace.SpanBatcher and trace.SpanSyncer.
func NewInMemoryExporter() *InMemoryExporter {
return new(InMemoryExporter)
}

type InMemorySpanBatcher struct {
// InMemoryExporter is an exporter that stores in-memory all exported spans.
type InMemoryExporter struct {
mu sync.Mutex
sds []*trace.SpanData
}

// ExportSpans implements the trace.SpanBatcher interface.
func (imsb *InMemorySpanBatcher) ExportSpans(_ context.Context, sds []*trace.SpanData) {
func (imsb *InMemoryExporter) ExportSpans(_ context.Context, sds []*trace.SpanData) {
imsb.mu.Lock()
defer imsb.mu.Unlock()
imsb.sds = append(imsb.sds, sds...)
}

// ExportSpan implements the trace.SpanSyncer interface.
func (imsb *InMemoryExporter) ExportSpan(_ context.Context, sd *trace.SpanData) {
imsb.mu.Lock()
defer imsb.mu.Unlock()
imsb.sds = append(imsb.sds, sd)
}

// Reset the current in-memory storage.
func (imsb *InMemorySpanBatcher) Reset() {
func (imsb *InMemoryExporter) Reset() {
imsb.mu.Lock()
defer imsb.mu.Unlock()
imsb.sds = nil
}

// GetSpans returns the current in-memory stored spans.
func (imsb *InMemorySpanBatcher) GetSpans() []*trace.SpanData {
func (imsb *InMemoryExporter) GetSpans() []*trace.SpanData {
imsb.mu.Lock()
defer imsb.mu.Unlock()
ret := make([]*trace.SpanData, len(imsb.sds))
Expand Down
14 changes: 9 additions & 5 deletions sdk/export/trace/tracetest/test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,18 @@ import (
"go.opentelemetry.io/otel/sdk/export/trace"
)

var _ trace.SpanBatcher = (*InMemorySpanBatcher)(nil)

// TestNoop tests only that the no-op does not crash in different scenarios.
func TestNoop(t *testing.T) {
nsb := NewNoopSpanBatcher()
nsb := NewNoopExporter()

nsb.ExportSpans(context.Background(), nil)
nsb.ExportSpans(context.Background(), make([]*trace.SpanData, 10))
nsb.ExportSpans(context.Background(), make([]*trace.SpanData, 0, 10))
nsb.ExportSpan(context.Background(), nil)
}

func TestSink(t *testing.T) {
imsb := NewInMemorySpanBatcher()
func TestNewInMemoryExporter(t *testing.T) {
imsb := NewInMemoryExporter()

imsb.ExportSpans(context.Background(), nil)
assert.Len(t, imsb.GetSpans(), 0)
Expand All @@ -54,4 +53,9 @@ func TestSink(t *testing.T) {
// Ensure that operations on the internal storage does not change the previously returned value.
assert.Len(t, sds, 10)
assert.Len(t, imsb.GetSpans(), 0)

imsb.ExportSpan(context.Background(), input[0])
sds = imsb.GetSpans()
assert.Len(t, sds, 1)
assert.Same(t, input[0], sds[0])
}

0 comments on commit 6b88e19

Please sign in to comment.