mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-14 10:13:10 +02:00
4d9d882c38
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
262 lines
6.6 KiB
Go
262 lines
6.6 KiB
Go
// 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 (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"context"
|
|
"crypto/tls"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/otlpconfig"
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/otlptracetest"
|
|
collectortracepb "go.opentelemetry.io/proto/otlp/collector/trace/v1"
|
|
tracepb "go.opentelemetry.io/proto/otlp/trace/v1"
|
|
)
|
|
|
|
type mockCollector struct {
|
|
endpoint string
|
|
server *http.Server
|
|
|
|
spanLock sync.Mutex
|
|
spansStorage otlptracetest.SpansStorage
|
|
|
|
injectHTTPStatus []int
|
|
injectResponseHeader []map[string]string
|
|
injectContentType string
|
|
injectDelay time.Duration
|
|
|
|
clientTLSConfig *tls.Config
|
|
expectedHeaders map[string]string
|
|
}
|
|
|
|
func (c *mockCollector) Stop() error {
|
|
return c.server.Shutdown(context.Background())
|
|
}
|
|
|
|
func (c *mockCollector) MustStop(t *testing.T) {
|
|
assert.NoError(t, c.server.Shutdown(context.Background()))
|
|
}
|
|
|
|
func (c *mockCollector) GetSpans() []*tracepb.Span {
|
|
c.spanLock.Lock()
|
|
defer c.spanLock.Unlock()
|
|
return c.spansStorage.GetSpans()
|
|
}
|
|
|
|
func (c *mockCollector) GetResourceSpans() []*tracepb.ResourceSpans {
|
|
c.spanLock.Lock()
|
|
defer c.spanLock.Unlock()
|
|
return c.spansStorage.GetResourceSpans()
|
|
}
|
|
|
|
func (c *mockCollector) Endpoint() string {
|
|
return c.endpoint
|
|
}
|
|
|
|
func (c *mockCollector) ClientTLSConfig() *tls.Config {
|
|
return c.clientTLSConfig
|
|
}
|
|
|
|
func (c *mockCollector) serveTraces(w http.ResponseWriter, r *http.Request) {
|
|
if c.injectDelay != 0 {
|
|
time.Sleep(c.injectDelay)
|
|
}
|
|
|
|
if !c.checkHeaders(r) {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
response := collectortracepb.ExportTraceServiceResponse{}
|
|
rawResponse, err := proto.Marshal(&response)
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
h := c.getInjectResponseHeader()
|
|
if injectedStatus := c.getInjectHTTPStatus(); injectedStatus != 0 {
|
|
writeReply(w, rawResponse, injectedStatus, c.injectContentType, h)
|
|
return
|
|
}
|
|
rawRequest, err := readRequest(r)
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
request, err := unmarshalTraceRequest(rawRequest, r.Header.Get("content-type"))
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
writeReply(w, rawResponse, 0, c.injectContentType, h)
|
|
c.spanLock.Lock()
|
|
defer c.spanLock.Unlock()
|
|
c.spansStorage.AddSpans(request)
|
|
}
|
|
|
|
func unmarshalTraceRequest(rawRequest []byte, contentType string) (*collectortracepb.ExportTraceServiceRequest, error) {
|
|
request := &collectortracepb.ExportTraceServiceRequest{}
|
|
if contentType != "application/x-protobuf" {
|
|
return request, fmt.Errorf("invalid content-type: %s, only application/x-protobuf is supported", contentType)
|
|
}
|
|
err := proto.Unmarshal(rawRequest, request)
|
|
return request, err
|
|
}
|
|
|
|
func (c *mockCollector) checkHeaders(r *http.Request) bool {
|
|
for k, v := range c.expectedHeaders {
|
|
got := r.Header.Get(k)
|
|
if got != v {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (c *mockCollector) getInjectHTTPStatus() int {
|
|
if len(c.injectHTTPStatus) == 0 {
|
|
return 0
|
|
}
|
|
status := c.injectHTTPStatus[0]
|
|
c.injectHTTPStatus = c.injectHTTPStatus[1:]
|
|
if len(c.injectHTTPStatus) == 0 {
|
|
c.injectHTTPStatus = nil
|
|
}
|
|
return status
|
|
}
|
|
|
|
func (c *mockCollector) getInjectResponseHeader() (h map[string]string) {
|
|
if len(c.injectResponseHeader) == 0 {
|
|
return
|
|
}
|
|
h, c.injectResponseHeader = c.injectResponseHeader[0], c.injectResponseHeader[1:]
|
|
if len(c.injectResponseHeader) == 0 {
|
|
c.injectResponseHeader = nil
|
|
}
|
|
return
|
|
}
|
|
|
|
func readRequest(r *http.Request) ([]byte, error) {
|
|
if r.Header.Get("Content-Encoding") == "gzip" {
|
|
return readGzipBody(r.Body)
|
|
}
|
|
return ioutil.ReadAll(r.Body)
|
|
}
|
|
|
|
func readGzipBody(body io.Reader) ([]byte, error) {
|
|
rawRequest := bytes.Buffer{}
|
|
gunzipper, err := gzip.NewReader(body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer gunzipper.Close()
|
|
_, err = io.Copy(&rawRequest, gunzipper)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rawRequest.Bytes(), nil
|
|
}
|
|
|
|
func writeReply(w http.ResponseWriter, rawResponse []byte, s int, ct string, h map[string]string) {
|
|
status := http.StatusOK
|
|
if s != 0 {
|
|
status = s
|
|
}
|
|
contentType := "application/x-protobuf"
|
|
if ct != "" {
|
|
contentType = ct
|
|
}
|
|
w.Header().Set("Content-Type", contentType)
|
|
for k, v := range h {
|
|
w.Header().Add(k, v)
|
|
}
|
|
w.WriteHeader(status)
|
|
_, _ = w.Write(rawResponse)
|
|
}
|
|
|
|
type mockCollectorConfig struct {
|
|
TracesURLPath string
|
|
Port int
|
|
InjectHTTPStatus []int
|
|
InjectContentType string
|
|
InjectResponseHeader []map[string]string
|
|
InjectDelay time.Duration
|
|
WithTLS bool
|
|
ExpectedHeaders map[string]string
|
|
}
|
|
|
|
func (c *mockCollectorConfig) fillInDefaults() {
|
|
if c.TracesURLPath == "" {
|
|
c.TracesURLPath = otlpconfig.DefaultTracesPath
|
|
}
|
|
}
|
|
|
|
func runMockCollector(t *testing.T, cfg mockCollectorConfig) *mockCollector {
|
|
cfg.fillInDefaults()
|
|
ln, err := net.Listen("tcp", fmt.Sprintf("localhost:%d", cfg.Port))
|
|
require.NoError(t, err)
|
|
_, portStr, err := net.SplitHostPort(ln.Addr().String())
|
|
require.NoError(t, err)
|
|
m := &mockCollector{
|
|
endpoint: fmt.Sprintf("localhost:%s", portStr),
|
|
spansStorage: otlptracetest.NewSpansStorage(),
|
|
injectHTTPStatus: cfg.InjectHTTPStatus,
|
|
injectResponseHeader: cfg.InjectResponseHeader,
|
|
injectContentType: cfg.InjectContentType,
|
|
injectDelay: cfg.InjectDelay,
|
|
expectedHeaders: cfg.ExpectedHeaders,
|
|
}
|
|
mux := http.NewServeMux()
|
|
mux.Handle(cfg.TracesURLPath, http.HandlerFunc(m.serveTraces))
|
|
server := &http.Server{
|
|
Handler: mux,
|
|
}
|
|
if cfg.WithTLS {
|
|
pem, err := generateWeakCertificate()
|
|
require.NoError(t, err)
|
|
tlsCertificate, err := tls.X509KeyPair(pem.Certificate, pem.PrivateKey)
|
|
require.NoError(t, err)
|
|
server.TLSConfig = &tls.Config{
|
|
Certificates: []tls.Certificate{tlsCertificate},
|
|
}
|
|
|
|
m.clientTLSConfig = &tls.Config{
|
|
InsecureSkipVerify: true,
|
|
}
|
|
}
|
|
go func() {
|
|
if cfg.WithTLS {
|
|
_ = server.ServeTLS(ln, "", "")
|
|
} else {
|
|
_ = server.Serve(ln)
|
|
}
|
|
}()
|
|
m.server = server
|
|
return m
|
|
}
|