-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log MongoDB URI and bump deps (#1060)
- Loading branch information
Showing
16 changed files
with
121 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2021 FerretDB Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package pusher | ||
|
||
import ( | ||
"io" | ||
"log/slog" | ||
"strings" | ||
"testing" | ||
) | ||
|
||
// logWriter provides [io.Writer] for [testing.TB]. | ||
type logWriter struct { | ||
tb testing.TB | ||
} | ||
|
||
// Write implements [io.Writer]. | ||
func (lw *logWriter) Write(p []byte) (int, error) { | ||
// "logging.go:xx" is added by testing.TB.Log itself; there is nothing we can do about it. | ||
// lw.tb.Helper() does not help. See: | ||
// https://github.com/golang/go/issues/59928 | ||
// https://github.com/neilotoole/slogt/tree/v1.1.0?tab=readme-ov-file#deficiency | ||
lw.tb.Log(strings.TrimSuffix(string(p), "\n")) | ||
return len(p), nil | ||
} | ||
|
||
// Logger returns slog test logger. | ||
func Logger(tb testing.TB) *slog.Logger { | ||
return slog.New(slog.NewTextHandler(&logWriter{tb: tb}, &slog.HandlerOptions{ | ||
Level: slog.LevelDebug, | ||
})) | ||
} | ||
|
||
// check interfaces | ||
var ( | ||
_ io.Writer = (*logWriter)(nil) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule enmeshed-runtime
updated
137 files
Submodule meteor
updated
18 files
Submodule mongo-go-driver
updated
168 files
Submodule restheart
updated
33 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.