1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-07 23:02:15 +02:00
opentelemetry-go/exporters/stdout/stdoutlog/config_test.go

63 lines
1.2 KiB
Go

// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package stdoutlog // import "go.opentelemetry.io/otel/exporters/stdout/stdoutlog"
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewConfig(t *testing.T) {
testCases := []struct {
name string
options []Option
expected config
}{
{
name: "default",
expected: config{
Writer: os.Stdout,
PrettyPrint: false,
Timestamps: true,
},
},
{
name: "WithWriter",
options: []Option{WithWriter(os.Stderr)},
expected: config{
Writer: os.Stderr,
PrettyPrint: false,
Timestamps: true,
},
},
{
name: "WithPrettyPrint",
options: []Option{WithPrettyPrint()},
expected: config{
Writer: os.Stdout,
PrettyPrint: true,
Timestamps: true,
},
},
{
name: "WithoutTimestamps",
options: []Option{WithoutTimestamps()},
expected: config{
Writer: os.Stdout,
PrettyPrint: false,
Timestamps: false,
},
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
cfg := newConfig(tc.options)
assert.Equal(t, tc.expected, cfg)
})
}
}