You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-11-23 22:34:47 +02:00
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [mvdan.cc/gofumpt](https://redirect.github.com/mvdan/gofumpt) | `v0.8.0` -> `v0.9.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>mvdan/gofumpt (mvdan.cc/gofumpt)</summary> ### [`v0.9.0`](https://redirect.github.com/mvdan/gofumpt/blob/HEAD/CHANGELOG.md#v090---2025-09-02) [Compare Source](https://redirect.github.com/mvdan/gofumpt/compare/v0.8.0...v0.9.0) This release is based on Go 1.25's gofmt, and requires Go 1.24 or later. A new rule is introduced to "clothe" naked returns for the sake of clarity. While there is nothing wrong with naming results in function signatures, using lone `return` statements can be confusing to the reader. Go 1.25's `ignore` directives in `go.mod` files are now obeyed; any directories within the module matching any of the patterns are now omitted when walking directories, such as with `gofumpt -w .`. Module information is now loaded via Go's [`x/mod/modfile` package](https://pkg.go.dev/golang.org/x/mod/modfile) rather than executing `go mod edit -json`, which is way faster. This should result in moderate speed-ups when formatting many directories. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-go). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: dmathieu <damien.mathieu@elastic.co>
111 lines
2.7 KiB
Go
111 lines
2.7 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package propagation_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/propagation"
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
const (
|
|
traceIDStr = "4bf92f3577b34da6a3ce929d0e0e4736"
|
|
spanIDStr = "00f067aa0ba902b7"
|
|
)
|
|
|
|
var (
|
|
traceID = mustTraceIDFromHex(traceIDStr)
|
|
spanID = mustSpanIDFromHex(spanIDStr)
|
|
)
|
|
|
|
func mustTraceIDFromHex(s string) trace.TraceID {
|
|
t, err := trace.TraceIDFromHex(s)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return t
|
|
}
|
|
|
|
func mustSpanIDFromHex(s string) trace.SpanID {
|
|
t, err := trace.SpanIDFromHex(s)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return t
|
|
}
|
|
|
|
type outOfThinAirPropagator struct {
|
|
t *testing.T
|
|
}
|
|
|
|
var _ propagation.TextMapPropagator = outOfThinAirPropagator{}
|
|
|
|
func (p outOfThinAirPropagator) Extract(ctx context.Context, _ propagation.TextMapCarrier) context.Context {
|
|
sc := trace.NewSpanContext(trace.SpanContextConfig{
|
|
TraceID: traceID,
|
|
SpanID: spanID,
|
|
TraceFlags: 0,
|
|
})
|
|
require.True(p.t, sc.IsValid())
|
|
return trace.ContextWithRemoteSpanContext(ctx, sc)
|
|
}
|
|
|
|
func (outOfThinAirPropagator) Inject(context.Context, propagation.TextMapCarrier) {}
|
|
|
|
func (outOfThinAirPropagator) Fields() []string {
|
|
return nil
|
|
}
|
|
|
|
type nilCarrier struct{}
|
|
|
|
var _ propagation.TextMapCarrier = nilCarrier{}
|
|
|
|
func (nilCarrier) Keys() []string {
|
|
return nil
|
|
}
|
|
|
|
func (nilCarrier) Get(string) string {
|
|
return ""
|
|
}
|
|
|
|
func (nilCarrier) Set(string, string) {}
|
|
|
|
func TestMultiplePropagators(t *testing.T) {
|
|
ootaProp := outOfThinAirPropagator{t: t}
|
|
ns := nilCarrier{}
|
|
testProps := []propagation.TextMapPropagator{
|
|
propagation.TraceContext{},
|
|
}
|
|
bg := context.Background()
|
|
// sanity check of oota propagator, ensuring that it really
|
|
// generates the valid span context out of thin air
|
|
{
|
|
ctx := ootaProp.Extract(bg, ns)
|
|
sc := trace.SpanContextFromContext(ctx)
|
|
require.True(t, sc.IsValid(), "oota prop failed sanity check")
|
|
require.True(t, sc.IsRemote(), "oota prop is remote")
|
|
}
|
|
// sanity check for real propagators, ensuring that they
|
|
// really are not putting any valid span context into an empty
|
|
// go context in absence of the HTTP headers.
|
|
for _, prop := range testProps {
|
|
ctx := prop.Extract(bg, ns)
|
|
sc := trace.SpanContextFromContext(ctx)
|
|
require.Falsef(t, sc.IsValid(), "%#v failed sanity check", prop)
|
|
require.Falsef(t, sc.IsRemote(), "%#v prop set a remote", prop)
|
|
}
|
|
for _, prop := range testProps {
|
|
props := propagation.NewCompositeTextMapPropagator(ootaProp, prop)
|
|
ctx := props.Extract(bg, ns)
|
|
sc := trace.SpanContextFromContext(ctx)
|
|
assert.Truef(t, sc.IsRemote(), "%#v prop is remote", prop)
|
|
assert.Truef(t, sc.IsValid(), "%#v clobbers span context", prop)
|
|
}
|
|
}
|