-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_test.go
60 lines (51 loc) · 1.2 KB
/
handler_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
package slogawslambda
import (
"context"
"log/slog"
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetLogLevel(t *testing.T) {
tests := []struct {
name string
envVariableValue string
want slog.Leveler
}{
{
name: "Should return Info given not set",
envVariableValue: "",
want: slog.LevelInfo,
},
{
name: "Should return Info given invalid value",
envVariableValue: "not-a-valid-value",
want: slog.LevelInfo,
},
{
name: "Should return Debug given lowercase debug",
envVariableValue: "debug",
want: slog.LevelDebug,
},
{
name: "Should return Warn given uppercase warn",
envVariableValue: "WARN",
want: slog.LevelWarn,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.envVariableValue != "" {
os.Setenv("LOG_LEVEL", tt.envVariableValue)
}
got := getLogLevel()
os.Unsetenv("LOG_LEVEL")
assert.Equal(t, got, tt.want)
})
}
}
func TestUsingNonAwsContextShouldNotError(t *testing.T) {
ctx := context.Background()
h := NewAWSLambdaHandler(ctx, nil)
assert.NotNil(t, h)
}