forked from open-telemetry/opentelemetry-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
62 lines (57 loc) · 1.16 KB
/
config_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// 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)
})
}
}