-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_test.go
200 lines (177 loc) · 4.16 KB
/
context_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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package soba_test
import (
"context"
"os"
"testing"
"github.com/novln/soba"
)
// Test creation of a new handler with context.
// nolint: gocyclo
func TestContext_Load(t *testing.T) {
checkSuccess := func(ctx context.Context) {
defer func() {
thr := recover()
if thr != nil {
t.Fatalf("Unexpected panic: %+v", thr)
}
}()
// Ensure we don't have panic while creating a new logger.
soba.New(ctx, "foobar")
}
checkFailure := func(ctx context.Context) {
defer func() {
thr := recover()
if thr == nil {
t.Fatal("A panic error was expected")
}
}()
// Ensure we don't have panic while creating a new logger.
soba.New(ctx, "foobar")
}
{
// Create a handler using "SOBA_CONF" environment variable with a valid file.
ctx := context.Background()
env := os.Getenv(soba.EnvConfigPath)
err := os.Setenv(soba.EnvConfigPath, "testdata/simple.yaml")
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
ctx, err = soba.Load(ctx)
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
if ctx == nil {
t.Fatal("A context was expected")
}
err = os.Setenv(soba.EnvConfigPath, env)
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
defer checkSuccess(ctx)
}
{
// Create a handler using "SOBA_CONF" environment variable with an invalid file.
ctx := context.Background()
env := os.Getenv(soba.EnvConfigPath)
err := os.Setenv(soba.EnvConfigPath, "config.go")
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
ctx, err = soba.Load(ctx)
if err == nil {
t.Fatalf("An error was expected")
}
if ctx == nil {
t.Fatal("A context was expected")
}
err = os.Setenv(soba.EnvConfigPath, env)
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
defer checkFailure(ctx)
}
{
// Create a handler without "SOBA_CONF" environment variable and
// without a default configuration file.
ctx := context.Background()
env := os.Getenv(soba.EnvConfigPath)
err := os.Setenv(soba.EnvConfigPath, "")
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
ctx, err = soba.Load(ctx)
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
if ctx == nil {
t.Fatal("A context was expected")
}
err = os.Setenv(soba.EnvConfigPath, env)
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
defer checkSuccess(ctx)
}
{
// Create a handler with an invalid configuration file path.
ctx := context.Background()
ctx, err := soba.LoadWithFile(ctx, "foobar.yml")
if err == nil {
t.Fatalf("An error was expected")
}
if ctx == nil {
t.Fatal("A context was expected")
}
defer checkFailure(ctx)
}
{
// Create a handler with an invalid configuration file format.
ctx := context.Background()
ctx, err := soba.LoadWithFile(ctx, "config.go")
if err == nil {
t.Fatalf("An error was expected")
}
if ctx == nil {
t.Fatal("A context was expected")
}
defer checkFailure(ctx)
}
{
// Create a handler with a valid configuration file.
ctx := context.Background()
ctx, err := soba.LoadWithFile(ctx, "testdata/simple.yaml")
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
if ctx == nil {
t.Fatal("A context was expected")
}
defer checkSuccess(ctx)
}
{
// Create a handler with a wrong configuration.
ctx := context.Background()
ctx, err := soba.LoadWithConfig(ctx, &soba.Config{
Root: soba.ConfigLogger{
Level: "info",
Additive: false,
Appenders: []string{
"stdout",
},
},
})
if err == nil {
t.Fatalf("An error was expected")
}
if ctx == nil {
t.Fatal("A context was expected")
}
defer checkFailure(ctx)
}
{
// Create a handler with a correct configuration.
ctx := context.Background()
ctx, err := soba.LoadWithConfig(ctx, &soba.Config{
Root: soba.ConfigLogger{
Level: "info",
Additive: false,
Appenders: []string{
"stdout",
},
},
Loggers: map[string]soba.ConfigLogger{},
Appenders: map[string]soba.ConfigAppender{
"stdout": {
Type: "console",
},
},
})
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
if ctx == nil {
t.Fatal("A context was expected")
}
defer checkSuccess(ctx)
}
}