|
| 1 | +// Copyright 2024 The Prometheus Authors |
| 2 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | +// you may not use this file except in compliance with the License. |
| 4 | +// You may obtain a copy of the License at |
| 5 | +// |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +// |
| 8 | +// Unless required by applicable law or agreed to in writing, software |
| 9 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +// See the License for the specific language governing permissions and |
| 12 | +// limitations under the License. |
| 13 | + |
| 14 | +//go:build go1.21 |
| 15 | + |
| 16 | +package promslog |
| 17 | + |
| 18 | +import ( |
| 19 | + "bytes" |
| 20 | + "context" |
| 21 | + "fmt" |
| 22 | + "log/slog" |
| 23 | + "regexp" |
| 24 | + "strings" |
| 25 | + "testing" |
| 26 | + |
| 27 | + "github.com/stretchr/testify/require" |
| 28 | + "gopkg.in/yaml.v2" |
| 29 | +) |
| 30 | + |
| 31 | +var ( |
| 32 | + slogStyleLogRegexp = regexp.MustCompile(`(?P<TimeKey>time)=.*level=(?P<LevelValue>WARN|INFO|ERROR|DEBUG).*(?P<SourceKey>source)=.*`) |
| 33 | + goKitStyleLogRegexp = regexp.MustCompile(`(?P<TimeKey>ts)=.*level=(?P<LevelValue>warn|info|error|debug).*(?P<SourceKey>caller)=.*`) |
| 34 | +) |
| 35 | + |
| 36 | +// Make sure creating and using a logger with an empty configuration doesn't |
| 37 | +// result in a panic. |
| 38 | +func TestDefaultConfig(t *testing.T) { |
| 39 | + require.NotPanics(t, func() { |
| 40 | + logger := New(&Config{}) |
| 41 | + logger.Info("empty config `Info()` test", "hello", "world") |
| 42 | + logger.Log(context.Background(), slog.LevelInfo, "empty config `Log()` test", "hello", "world") |
| 43 | + logger.LogAttrs(context.Background(), slog.LevelInfo, "empty config `LogAttrs()` test", slog.String("hello", "world")) |
| 44 | + }) |
| 45 | +} |
| 46 | + |
| 47 | +func TestUnmarshallLevel(t *testing.T) { |
| 48 | + l := &AllowedLevel{} |
| 49 | + err := yaml.Unmarshal([]byte(`debug`), l) |
| 50 | + if err != nil { |
| 51 | + t.Error(err) |
| 52 | + } |
| 53 | + if l.s != "debug" { |
| 54 | + t.Errorf("expected %s, got %s", "debug", l.s) |
| 55 | + } |
| 56 | +} |
| 57 | + |
| 58 | +func TestUnmarshallEmptyLevel(t *testing.T) { |
| 59 | + l := &AllowedLevel{} |
| 60 | + err := yaml.Unmarshal([]byte(``), l) |
| 61 | + if err != nil { |
| 62 | + t.Error(err) |
| 63 | + } |
| 64 | + if l.s != "" { |
| 65 | + t.Errorf("expected empty level, got %s", l.s) |
| 66 | + } |
| 67 | +} |
| 68 | + |
| 69 | +func TestUnmarshallBadLevel(t *testing.T) { |
| 70 | + l := &AllowedLevel{} |
| 71 | + err := yaml.Unmarshal([]byte(`debugg`), l) |
| 72 | + if err == nil { |
| 73 | + t.Error("expected error") |
| 74 | + } |
| 75 | + expErr := `unrecognized log level debugg` |
| 76 | + if err.Error() != expErr { |
| 77 | + t.Errorf("expected error %s, got %s", expErr, err.Error()) |
| 78 | + } |
| 79 | + if l.s != "" { |
| 80 | + t.Errorf("expected empty level, got %s", l.s) |
| 81 | + } |
| 82 | +} |
| 83 | + |
| 84 | +func getLogEntryLevelCounts(s string, re *regexp.Regexp) map[string]int { |
| 85 | + counters := make(map[string]int) |
| 86 | + lines := strings.Split(s, "\n") |
| 87 | + for _, line := range lines { |
| 88 | + matches := re.FindStringSubmatch(line) |
| 89 | + if len(matches) > 1 { |
| 90 | + levelIndex := re.SubexpIndex("LevelValue") |
| 91 | + |
| 92 | + counters[strings.ToLower(matches[levelIndex])]++ |
| 93 | + } |
| 94 | + } |
| 95 | + |
| 96 | + return counters |
| 97 | +} |
| 98 | + |
| 99 | +func TestDynamicLevels(t *testing.T) { |
| 100 | + var buf bytes.Buffer |
| 101 | + wantedLevelCounts := map[string]int{"info": 1, "debug": 1} |
| 102 | + |
| 103 | + tests := map[string]struct { |
| 104 | + logStyle LogStyle |
| 105 | + logStyleRegexp *regexp.Regexp |
| 106 | + wantedLevelCount map[string]int |
| 107 | + }{ |
| 108 | + "slog_log_style": {logStyle: SlogStyle, logStyleRegexp: slogStyleLogRegexp, wantedLevelCount: wantedLevelCounts}, |
| 109 | + "go-kit_log_style": {logStyle: GoKitStyle, logStyleRegexp: goKitStyleLogRegexp, wantedLevelCount: wantedLevelCounts}, |
| 110 | + } |
| 111 | + |
| 112 | + for name, tc := range tests { |
| 113 | + t.Run(name, func(t *testing.T) { |
| 114 | + buf.Reset() // Ensure buf is reset prior to tests |
| 115 | + config := &Config{ioWriter: &buf, Style: tc.logStyle} |
| 116 | + logger := New(config) |
| 117 | + |
| 118 | + // Test that log level can be adjusted on-the-fly to debug and that a |
| 119 | + // log entry can be written to the file. |
| 120 | + if err := config.Level.Set("debug"); err != nil { |
| 121 | + t.Fatal(err) |
| 122 | + } |
| 123 | + logger.Info("info", "hello", "world") |
| 124 | + logger.Debug("debug", "hello", "world") |
| 125 | + |
| 126 | + counts := getLogEntryLevelCounts(buf.String(), tc.logStyleRegexp) |
| 127 | + require.Equal(t, tc.wantedLevelCount["info"], counts["info"], "info log successfully detected") |
| 128 | + require.Equal(t, tc.wantedLevelCount["debug"], counts["debug"], "debug log successfully detected") |
| 129 | + // Print logs for humans to see, if needed. |
| 130 | + fmt.Println(buf.String()) |
| 131 | + buf.Reset() |
| 132 | + |
| 133 | + // Test that log level can be adjusted on-the-fly to info and that a |
| 134 | + // subsequent call to write a debug level log is _not_ written to the |
| 135 | + // file. |
| 136 | + if err := config.Level.Set("info"); err != nil { |
| 137 | + t.Fatal(err) |
| 138 | + } |
| 139 | + logger.Info("info", "hello", "world") |
| 140 | + logger.Debug("debug", "hello", "world") |
| 141 | + |
| 142 | + counts = getLogEntryLevelCounts(buf.String(), tc.logStyleRegexp) |
| 143 | + require.Equal(t, tc.wantedLevelCount["info"], counts["info"], "info log successfully detected") |
| 144 | + require.NotEqual(t, tc.wantedLevelCount["debug"], counts["debug"], "extra debug log detected") |
| 145 | + // Print logs for humans to see, if needed. |
| 146 | + fmt.Println(buf.String()) |
| 147 | + buf.Reset() |
| 148 | + }) |
| 149 | + } |
| 150 | +} |
0 commit comments