1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-11-25 22:41:46 +02:00
Files
opentelemetry-go/trace/internal/telemetry/span_test.go
Tyler Yahn 9aae208463 Add an auto-instrumentable no-op implementation to the trace package (#6203)
This copes the `go.opentelemetry.io/auto/sdk` package into the
`go.opentelemetry.io/otel/trace` package. This is done to avoid package
import cycles and still provide an auto-instrumentable SDK (see
https://github.com/open-telemetry/opentelemetry-go-instrumentation/issues/974).

## Overview of changes

The code copied is updated with the following changes. The over-all goal
is to ensure none of this is exported and follows the `auto/sdk` as
close as possible to help maintenance.

### `trace/auto.go`

Consolidation of the following into a single file:

-
aea085dd2a/sdk/tracer_provider.go
-
aea085dd2a/sdk/tracer.go
-
aea085dd2a/sdk/span.go
-
aea085dd2a/sdk/limit.go

Has the following changes:

- `func TracerProvider()` renamed to `newAutoTracerProvider`
- `type tracerProvider struct` renamed to `autoTracerProvider`
- `type tracer struct` renamed to `autoTracer`
- `type span struct` renamed to `autoSpan`
- Lint issues addressed based on this repositories configuration (these
changes are being back-ported upstream)

### `trace/auto_test.go`

Consolidation of the following into a single file:

-
aea085dd2a/sdk/tracer_provider_test.go
-
aea085dd2a/sdk/tracer_test.go
-
aea085dd2a/sdk/span_test.go
-
aea085dd2a/sdk/limit_test.go

Has the following changes:

- Renames in `trace/auto.go` are applied here
- Lint issues addressed based on this repositories configuration (these
changes are being back-ported upstream)

### `trace/internal/telemetry`

Copied from
aea085dd2a/sdk/internal/telemetry

- Pacakge vanity URLs added
- Lint issues addressed based on this repositories configuration (these
changes are being back-ported upstream)
- Use of the package name has been updated

#### `trace/internal/telemetry/test`

Copied from
aea085dd2a/sdk/internal/telemetry/test

- Module name updated
- Documentation updated with new package name
- Testing values updated with new package name

---------

Co-authored-by: Ron Federman <73110295+RonFed@users.noreply.github.com>
2025-02-04 08:04:14 -08:00

201 lines
3.9 KiB
Go

// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package telemetry
import (
"testing"
"time"
)
func TestSpanEncoding(t *testing.T) {
span := &Span{
TraceID: [16]byte{0x1},
SpanID: [8]byte{0x2},
TraceState: "test=a",
ParentSpanID: [8]byte{0x1},
Flags: 1,
Name: "span.a",
Kind: SpanKindClient,
StartTime: y2k,
EndTime: y2k.Add(time.Second),
Attrs: []Attr{String("key", "val")},
DroppedAttrs: 2,
Events: []*SpanEvent{{
Name: "name",
}},
DroppedEvents: 3,
Links: []*SpanLink{{
TraceID: TraceID{0x2},
SpanID: SpanID{0x1},
}},
DroppedLinks: 4,
Status: &Status{
Message: "okay",
Code: StatusCodeOK,
},
}
t.Run("CamelCase", runJSONEncodingTests(span, []byte(`{
"traceId": "01000000000000000000000000000000",
"spanId": "0200000000000000",
"traceState": "test=a",
"flags": 1,
"name": "span.a",
"kind": 3,
"attributes": [
{
"key": "key",
"value": {
"stringValue": "val"
}
}
],
"droppedAttributesCount": 2,
"events": [
{
"name": "name"
}
],
"droppedEventsCount": 3,
"links": [
{
"traceId": "02000000000000000000000000000000",
"spanId": "0100000000000000"
}
],
"droppedLinksCount": 4,
"status": {
"message": "okay",
"code": 1
},
"parentSpanId": "0100000000000000",
"startTimeUnixNano": 946684800000000000,
"endTimeUnixNano": 946684801000000000
}`)))
t.Run("SnakeCase/Unmarshal", runJSONUnmarshalTest(span, []byte(`{
"trace_id": "01000000000000000000000000000000",
"span_id": "0200000000000000",
"trace_state": "test=a",
"flags": 1,
"name": "span.a",
"kind": 3,
"attributes": [
{
"key": "key",
"value": {
"string_value": "val"
}
}
],
"dropped_attributes_count": 2,
"events": [
{
"name": "name"
}
],
"dropped_events_count": 3,
"links": [
{
"trace_id": "02000000000000000000000000000000",
"span_id": "0100000000000000"
}
],
"dropped_links_count": 4,
"status": {
"message": "okay",
"code": 1
},
"parent_span_id": "0100000000000000",
"start_time_unix_nano": 946684800000000000,
"end_time_unix_nano": 946684801000000000
}`)))
t.Run("RequiredFields", runJSONMarshalTest(new(Span), []byte(`{
"traceId": "",
"spanId": "",
"name": ""
}`)))
}
func TestSpanEventEncoding(t *testing.T) {
event := &SpanEvent{
Time: y2k.Add(10 * time.Microsecond),
Name: "span.event",
Attrs: []Attr{Float64("impact", 0.4372)},
DroppedAttrs: 2,
}
t.Run("CamelCase", runJSONEncodingTests(event, []byte(`{
"name": "span.event",
"attributes": [
{
"key": "impact",
"value": {
"doubleValue": 0.4372
}
}
],
"droppedAttributesCount": 2,
"timeUnixNano": 946684800000010000
}`)))
t.Run("SnakeCase/Unmarshal", runJSONUnmarshalTest(event, []byte(`{
"name": "span.event",
"attributes": [
{
"key": "impact",
"value": {
"double_value": 0.4372
}
}
],
"dropped_attributes_count": 2,
"time_unix_nano": 946684800000010000
}`)))
}
func TestSpanLinkEncoding(t *testing.T) {
link := &SpanLink{
TraceID: TraceID{0x2},
SpanID: SpanID{0x1},
TraceState: "test=green",
Attrs: []Attr{Int("queue", 17)},
DroppedAttrs: 8,
Flags: 1,
}
t.Run("CamelCase", runJSONEncodingTests(link, []byte(`{
"traceId": "02000000000000000000000000000000",
"spanId": "0100000000000000",
"traceState": "test=green",
"attributes": [
{
"key": "queue",
"value": {
"intValue": "17"
}
}
],
"droppedAttributesCount": 8,
"flags": 1
}`)))
t.Run("SnakeCase/Unmarshal", runJSONUnmarshalTest(link, []byte(`{
"trace_id": "02000000000000000000000000000000",
"span_id": "0100000000000000",
"trace_state": "test=green",
"attributes": [
{
"key": "queue",
"value": {
"int_value": "17"
}
}
],
"dropped_attributes_count": 8,
"flags": 1
}`)))
}