2020-03-24 07:41:10 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-09-28 20:27:02 +02:00
|
|
|
//
|
|
|
|
// 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 stdout
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-10-08 20:56:58 +02:00
|
|
|
"context"
|
2019-09-28 20:27:02 +02:00
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
|
2019-11-01 20:40:29 +02:00
|
|
|
"go.opentelemetry.io/otel/api/core"
|
|
|
|
"go.opentelemetry.io/otel/api/key"
|
|
|
|
"go.opentelemetry.io/otel/api/trace"
|
2019-11-05 23:08:55 +02:00
|
|
|
export "go.opentelemetry.io/otel/sdk/export/trace"
|
2020-03-17 01:48:35 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
2019-09-28 20:27:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestExporter_ExportSpan(t *testing.T) {
|
2020-01-02 18:40:37 +02:00
|
|
|
// write to buffer for testing
|
|
|
|
var b bytes.Buffer
|
|
|
|
ex, err := NewExporter(Options{Writer: &b})
|
2019-09-28 20:27:02 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error constructing stdout exporter %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup test span
|
|
|
|
now := time.Now()
|
2019-10-23 08:01:33 +02:00
|
|
|
traceID, _ := core.TraceIDFromHex("0102030405060708090a0b0c0d0e0f10")
|
2019-10-28 19:05:06 +02:00
|
|
|
spanID, _ := core.SpanIDFromHex("0102030405060708")
|
2019-09-28 20:27:02 +02:00
|
|
|
keyValue := "value"
|
2019-12-09 23:03:11 +02:00
|
|
|
doubleValue := 123.456
|
2020-04-22 05:26:51 +02:00
|
|
|
resource := resource.New(key.String("rk1", "rv11"))
|
2019-09-28 20:27:02 +02:00
|
|
|
|
2019-10-08 20:56:58 +02:00
|
|
|
testSpan := &export.SpanData{
|
2019-09-28 20:27:02 +02:00
|
|
|
SpanContext: core.SpanContext{
|
|
|
|
TraceID: traceID,
|
|
|
|
SpanID: spanID,
|
|
|
|
},
|
|
|
|
Name: "/foo",
|
|
|
|
StartTime: now,
|
|
|
|
EndTime: now,
|
|
|
|
Attributes: []core.KeyValue{
|
2019-10-31 00:01:19 +02:00
|
|
|
key.String("key", keyValue),
|
|
|
|
key.Float64("double", doubleValue),
|
2019-09-28 20:27:02 +02:00
|
|
|
},
|
2019-11-04 21:46:34 +02:00
|
|
|
MessageEvents: []export.Event{
|
2019-12-18 20:13:05 +02:00
|
|
|
{Name: "foo", Attributes: []core.KeyValue{key.String("key", keyValue)}, Time: now},
|
|
|
|
{Name: "bar", Attributes: []core.KeyValue{key.Float64("double", doubleValue)}, Time: now},
|
2019-11-04 21:46:34 +02:00
|
|
|
},
|
2020-03-07 20:38:59 +02:00
|
|
|
SpanKind: trace.SpanKindInternal,
|
|
|
|
StatusCode: codes.Unknown,
|
|
|
|
StatusMessage: "interesting",
|
2020-03-17 01:48:35 +02:00
|
|
|
Resource: resource,
|
2019-09-28 20:27:02 +02:00
|
|
|
}
|
2019-10-08 20:56:58 +02:00
|
|
|
ex.ExportSpan(context.Background(), testSpan)
|
2019-09-28 20:27:02 +02:00
|
|
|
|
|
|
|
expectedSerializedNow, _ := json.Marshal(now)
|
|
|
|
|
|
|
|
got := b.String()
|
|
|
|
expectedOutput := `{"SpanContext":{` +
|
2019-10-23 08:01:33 +02:00
|
|
|
`"TraceID":"0102030405060708090a0b0c0d0e0f10",` +
|
|
|
|
`"SpanID":"0102030405060708","TraceFlags":0},` +
|
2019-10-28 19:05:06 +02:00
|
|
|
`"ParentSpanID":"0000000000000000",` +
|
2019-11-05 02:05:43 +02:00
|
|
|
`"SpanKind":1,` +
|
2019-09-28 20:27:02 +02:00
|
|
|
`"Name":"/foo",` +
|
|
|
|
`"StartTime":` + string(expectedSerializedNow) + "," +
|
|
|
|
`"EndTime":` + string(expectedSerializedNow) + "," +
|
|
|
|
`"Attributes":[` +
|
|
|
|
`{` +
|
2019-10-17 07:49:58 +02:00
|
|
|
`"Key":"key",` +
|
2019-10-31 00:01:19 +02:00
|
|
|
`"Value":{"Type":"STRING","Value":"value"}` +
|
2019-09-28 20:27:02 +02:00
|
|
|
`},` +
|
|
|
|
`{` +
|
2019-10-17 07:49:58 +02:00
|
|
|
`"Key":"double",` +
|
2019-10-31 00:01:19 +02:00
|
|
|
`"Value":{"Type":"FLOAT64","Value":123.456}` +
|
2020-04-22 23:32:58 +02:00
|
|
|
`}],` +
|
2019-11-04 21:46:34 +02:00
|
|
|
`"MessageEvents":[` +
|
|
|
|
`{` +
|
2019-12-18 20:13:05 +02:00
|
|
|
`"Name":"foo",` +
|
2019-11-04 21:46:34 +02:00
|
|
|
`"Attributes":[` +
|
|
|
|
`{` +
|
|
|
|
`"Key":"key",` +
|
|
|
|
`"Value":{"Type":"STRING","Value":"value"}` +
|
|
|
|
`}` +
|
|
|
|
`],` +
|
|
|
|
`"Time":` + string(expectedSerializedNow) +
|
|
|
|
`},` +
|
|
|
|
`{` +
|
2019-12-18 20:13:05 +02:00
|
|
|
`"Name":"bar",` +
|
2019-11-04 21:46:34 +02:00
|
|
|
`"Attributes":[` +
|
|
|
|
`{` +
|
|
|
|
`"Key":"double",` +
|
|
|
|
`"Value":{"Type":"FLOAT64","Value":123.456}` +
|
|
|
|
`}` +
|
|
|
|
`],` +
|
|
|
|
`"Time":` + string(expectedSerializedNow) +
|
|
|
|
`}` +
|
|
|
|
`],` +
|
2019-09-28 20:27:02 +02:00
|
|
|
`"Links":null,` +
|
2020-03-07 20:38:59 +02:00
|
|
|
`"StatusCode":2,` +
|
|
|
|
`"StatusMessage":"interesting",` +
|
2019-09-28 20:27:02 +02:00
|
|
|
`"HasRemoteParent":false,` +
|
|
|
|
`"DroppedAttributeCount":0,` +
|
|
|
|
`"DroppedMessageEventCount":0,` +
|
|
|
|
`"DroppedLinkCount":0,` +
|
2020-03-13 22:07:36 +02:00
|
|
|
`"ChildSpanCount":0,` +
|
2020-04-22 23:32:58 +02:00
|
|
|
`"Resource":[` +
|
|
|
|
`{` +
|
|
|
|
`"Key":"rk1",` +
|
|
|
|
`"Value":{"Type":"STRING","Value":"rv11"}` +
|
|
|
|
`}]}` + "\n"
|
2019-09-28 20:27:02 +02:00
|
|
|
|
|
|
|
if got != expectedOutput {
|
|
|
|
t.Errorf("Want: %v but got: %v", expectedOutput, got)
|
|
|
|
}
|
|
|
|
}
|