2021-06-07 16:57:58 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package otlptracehttp_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
|
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/otlptracetest"
|
2021-11-13 18:35:04 +02:00
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp"
|
2021-06-07 16:57:58 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
relOtherTracesPath = "post/traces/here"
|
|
|
|
otherTracesPath = "/post/traces/here"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
testHeaders = map[string]string{
|
|
|
|
"Otel-Go-Key-1": "somevalue",
|
|
|
|
"Otel-Go-Key-2": "someothervalue",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestEndToEnd(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
opts []otlptracehttp.Option
|
|
|
|
mcCfg mockCollectorConfig
|
|
|
|
tls bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "no extra options",
|
|
|
|
opts: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "with gzip compression",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithCompression(otlptracehttp.GzipCompression),
|
|
|
|
},
|
|
|
|
},
|
2021-07-23 00:07:38 +02:00
|
|
|
{
|
|
|
|
name: "retry",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithRetry(otlptracehttp.RetryConfig{
|
|
|
|
Enabled: true,
|
|
|
|
InitialInterval: time.Nanosecond,
|
|
|
|
MaxInterval: time.Nanosecond,
|
|
|
|
// Do not stop trying.
|
|
|
|
MaxElapsedTime: 0,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
mcCfg: mockCollectorConfig{
|
|
|
|
InjectHTTPStatus: []int{503, 429},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retry with gzip compression",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithCompression(otlptracehttp.GzipCompression),
|
|
|
|
otlptracehttp.WithRetry(otlptracehttp.RetryConfig{
|
|
|
|
Enabled: true,
|
|
|
|
InitialInterval: time.Nanosecond,
|
|
|
|
MaxInterval: time.Nanosecond,
|
|
|
|
// Do not stop trying.
|
|
|
|
MaxElapsedTime: 0,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
mcCfg: mockCollectorConfig{
|
|
|
|
InjectHTTPStatus: []int{503, 503},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retry with throttle",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithRetry(otlptracehttp.RetryConfig{
|
|
|
|
Enabled: true,
|
|
|
|
InitialInterval: time.Nanosecond,
|
|
|
|
MaxInterval: time.Nanosecond,
|
|
|
|
// Do not stop trying.
|
|
|
|
MaxElapsedTime: 0,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
mcCfg: mockCollectorConfig{
|
|
|
|
InjectHTTPStatus: []int{503},
|
|
|
|
InjectResponseHeader: []map[string]string{
|
|
|
|
{"Retry-After": "10"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-07 16:57:58 +02:00
|
|
|
{
|
|
|
|
name: "with empty paths (forced to defaults)",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithURLPath(""),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "with relative paths",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithURLPath(relOtherTracesPath),
|
|
|
|
},
|
|
|
|
mcCfg: mockCollectorConfig{
|
|
|
|
TracesURLPath: otherTracesPath,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "with TLS",
|
|
|
|
opts: nil,
|
|
|
|
mcCfg: mockCollectorConfig{
|
|
|
|
WithTLS: true,
|
|
|
|
},
|
|
|
|
tls: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "with extra headers",
|
|
|
|
opts: []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithHeaders(testHeaders),
|
|
|
|
},
|
|
|
|
mcCfg: mockCollectorConfig{
|
|
|
|
ExpectedHeaders: testHeaders,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
mc := runMockCollector(t, tc.mcCfg)
|
|
|
|
defer mc.MustStop(t)
|
|
|
|
allOpts := []otlptracehttp.Option{
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
}
|
|
|
|
if tc.tls {
|
|
|
|
tlsConfig := mc.ClientTLSConfig()
|
|
|
|
require.NotNil(t, tlsConfig)
|
|
|
|
allOpts = append(allOpts, otlptracehttp.WithTLSClientConfig(tlsConfig))
|
|
|
|
} else {
|
|
|
|
allOpts = append(allOpts, otlptracehttp.WithInsecure())
|
|
|
|
}
|
|
|
|
allOpts = append(allOpts, tc.opts...)
|
|
|
|
client := otlptracehttp.NewClient(allOpts...)
|
|
|
|
ctx := context.Background()
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, client)
|
2021-06-07 16:57:58 +02:00
|
|
|
if assert.NoError(t, err) {
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(ctx))
|
|
|
|
}()
|
|
|
|
otlptracetest.RunEndToEndTest(ctx, t, exporter, mc)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestExporterShutdown(t *testing.T) {
|
|
|
|
mc := runMockCollector(t, mockCollectorConfig{})
|
|
|
|
defer func() {
|
|
|
|
_ = mc.Stop()
|
|
|
|
}()
|
|
|
|
|
|
|
|
<-time.After(5 * time.Millisecond)
|
|
|
|
|
|
|
|
otlptracetest.RunExporterShutdownTest(t, func() otlptrace.Client {
|
|
|
|
return otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithInsecure(),
|
|
|
|
otlptracehttp.WithEndpoint(mc.endpoint),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTimeout(t *testing.T) {
|
2022-01-06 03:04:55 +02:00
|
|
|
delay := make(chan struct{})
|
|
|
|
mcCfg := mockCollectorConfig{Delay: delay}
|
2021-06-07 16:57:58 +02:00
|
|
|
mc := runMockCollector(t, mcCfg)
|
|
|
|
defer mc.MustStop(t)
|
2022-01-06 03:04:55 +02:00
|
|
|
defer func() { close(delay) }()
|
2021-06-07 16:57:58 +02:00
|
|
|
client := otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
otlptracehttp.WithInsecure(),
|
2022-01-06 03:04:55 +02:00
|
|
|
otlptracehttp.WithTimeout(time.Nanosecond),
|
2021-06-07 16:57:58 +02:00
|
|
|
)
|
|
|
|
ctx := context.Background()
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, client)
|
2021-06-07 16:57:58 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(ctx))
|
|
|
|
}()
|
|
|
|
err = exporter.ExportSpans(ctx, otlptracetest.SingleReadOnlySpan())
|
2022-01-06 03:04:55 +02:00
|
|
|
assert.Equalf(t, true, os.IsTimeout(err), "expected timeout error, got: %v", err)
|
2021-06-07 16:57:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNoRetry(t *testing.T) {
|
2021-07-23 00:07:38 +02:00
|
|
|
mc := runMockCollector(t, mockCollectorConfig{
|
|
|
|
InjectHTTPStatus: []int{http.StatusBadRequest},
|
|
|
|
})
|
2021-06-07 16:57:58 +02:00
|
|
|
defer mc.MustStop(t)
|
|
|
|
driver := otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
otlptracehttp.WithInsecure(),
|
2021-07-23 00:07:38 +02:00
|
|
|
otlptracehttp.WithRetry(otlptracehttp.RetryConfig{
|
|
|
|
Enabled: true,
|
|
|
|
InitialInterval: 1 * time.Nanosecond,
|
|
|
|
MaxInterval: 1 * time.Nanosecond,
|
|
|
|
// Never stop retry of retry-able status.
|
|
|
|
MaxElapsedTime: 0,
|
|
|
|
}),
|
2021-06-07 16:57:58 +02:00
|
|
|
)
|
|
|
|
ctx := context.Background()
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, driver)
|
2021-06-07 16:57:58 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(ctx))
|
|
|
|
}()
|
|
|
|
err = exporter.ExportSpans(ctx, otlptracetest.SingleReadOnlySpan())
|
|
|
|
assert.Error(t, err)
|
2021-07-23 00:07:38 +02:00
|
|
|
assert.Equal(t, fmt.Sprintf("failed to send traces to http://%s/v1/traces: 400 Bad Request", mc.endpoint), err.Error())
|
2021-06-07 16:57:58 +02:00
|
|
|
assert.Empty(t, mc.GetSpans())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEmptyData(t *testing.T) {
|
|
|
|
mcCfg := mockCollectorConfig{}
|
|
|
|
mc := runMockCollector(t, mcCfg)
|
|
|
|
defer mc.MustStop(t)
|
|
|
|
driver := otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
otlptracehttp.WithInsecure(),
|
|
|
|
)
|
|
|
|
ctx := context.Background()
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, driver)
|
2021-06-07 16:57:58 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(ctx))
|
|
|
|
}()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
err = exporter.ExportSpans(ctx, nil)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Empty(t, mc.GetSpans())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCancelledContext(t *testing.T) {
|
|
|
|
mcCfg := mockCollectorConfig{}
|
|
|
|
mc := runMockCollector(t, mcCfg)
|
|
|
|
defer mc.MustStop(t)
|
|
|
|
driver := otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
otlptracehttp.WithInsecure(),
|
|
|
|
)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, driver)
|
2021-06-07 16:57:58 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(context.Background()))
|
|
|
|
}()
|
|
|
|
cancel()
|
|
|
|
err = exporter.ExportSpans(ctx, otlptracetest.SingleReadOnlySpan())
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Empty(t, mc.GetSpans())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeadlineContext(t *testing.T) {
|
|
|
|
statuses := make([]int, 0, 5)
|
|
|
|
for i := 0; i < cap(statuses); i++ {
|
|
|
|
statuses = append(statuses, http.StatusTooManyRequests)
|
|
|
|
}
|
|
|
|
mcCfg := mockCollectorConfig{
|
|
|
|
InjectHTTPStatus: statuses,
|
|
|
|
}
|
|
|
|
mc := runMockCollector(t, mcCfg)
|
|
|
|
defer mc.MustStop(t)
|
|
|
|
driver := otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
otlptracehttp.WithInsecure(),
|
2021-07-23 00:07:38 +02:00
|
|
|
otlptracehttp.WithRetry(otlptracehttp.RetryConfig{
|
|
|
|
Enabled: true,
|
|
|
|
InitialInterval: 1 * time.Hour,
|
|
|
|
MaxInterval: 1 * time.Hour,
|
|
|
|
// Never stop retry of retry-able status.
|
|
|
|
MaxElapsedTime: 0,
|
|
|
|
}),
|
2021-06-07 16:57:58 +02:00
|
|
|
)
|
|
|
|
ctx := context.Background()
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, driver)
|
2021-06-07 16:57:58 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(context.Background()))
|
|
|
|
}()
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
|
|
defer cancel()
|
|
|
|
err = exporter.ExportSpans(ctx, otlptracetest.SingleReadOnlySpan())
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Empty(t, mc.GetSpans())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStopWhileExporting(t *testing.T) {
|
|
|
|
statuses := make([]int, 0, 5)
|
|
|
|
for i := 0; i < cap(statuses); i++ {
|
|
|
|
statuses = append(statuses, http.StatusTooManyRequests)
|
|
|
|
}
|
|
|
|
mcCfg := mockCollectorConfig{
|
|
|
|
InjectHTTPStatus: statuses,
|
|
|
|
}
|
|
|
|
mc := runMockCollector(t, mcCfg)
|
|
|
|
defer mc.MustStop(t)
|
|
|
|
driver := otlptracehttp.NewClient(
|
|
|
|
otlptracehttp.WithEndpoint(mc.Endpoint()),
|
|
|
|
otlptracehttp.WithInsecure(),
|
2021-07-23 00:07:38 +02:00
|
|
|
otlptracehttp.WithRetry(otlptracehttp.RetryConfig{
|
|
|
|
Enabled: true,
|
|
|
|
InitialInterval: 1 * time.Hour,
|
|
|
|
MaxInterval: 1 * time.Hour,
|
|
|
|
// Never stop retry of retry-able status.
|
|
|
|
MaxElapsedTime: 0,
|
|
|
|
}),
|
2021-06-07 16:57:58 +02:00
|
|
|
)
|
|
|
|
ctx := context.Background()
|
2021-06-10 18:22:47 +02:00
|
|
|
exporter, err := otlptrace.New(ctx, driver)
|
2021-06-07 16:57:58 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
|
|
assert.NoError(t, exporter.Shutdown(ctx))
|
|
|
|
}()
|
|
|
|
doneCh := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
err := exporter.ExportSpans(ctx, otlptracetest.SingleReadOnlySpan())
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.Empty(t, mc.GetSpans())
|
|
|
|
close(doneCh)
|
|
|
|
}()
|
|
|
|
<-time.After(time.Second)
|
|
|
|
err = exporter.Shutdown(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
<-doneCh
|
|
|
|
}
|