mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-14 14:35:44 +01:00
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
/**
|
|
* Standalone signaling server for the Nextcloud Spreed app.
|
|
* Copyright (C) 2025 struktur AG
|
|
*
|
|
* @author Joachim Bauch <bauch@struktur.de>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package log
|
|
|
|
import (
|
|
"bytes"
|
|
"log"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGlobalLogger(t *testing.T) {
|
|
t.Parallel()
|
|
assert := assert.New(t)
|
|
|
|
defer func() {
|
|
if err := recover(); assert.NotNil(err) {
|
|
assert.Equal("accessed global logger", err)
|
|
}
|
|
}()
|
|
|
|
logger := LoggerFromContext(t.Context())
|
|
assert.Fail("should have paniced", "got logger %+v", logger)
|
|
}
|
|
|
|
type testLogWriter struct {
|
|
mu sync.Mutex
|
|
t testing.TB
|
|
}
|
|
|
|
func (w *testLogWriter) Write(b []byte) (int, error) {
|
|
w.t.Helper()
|
|
if !bytes.HasSuffix(b, []byte("\n")) {
|
|
b = append(b, '\n')
|
|
}
|
|
w.mu.Lock()
|
|
defer w.mu.Unlock()
|
|
w.t.Logf("%s", string(b))
|
|
return len(b), nil
|
|
}
|
|
|
|
func TestLoggerContext(t *testing.T) {
|
|
t.Parallel()
|
|
assert := assert.New(t)
|
|
|
|
testLogger := log.New(&testLogWriter{
|
|
t: t,
|
|
}, t.Name()+": ", log.LstdFlags|log.Lmicroseconds|log.Lshortfile)
|
|
testLogger.Printf("Hello %s!", "world")
|
|
|
|
ctx := NewLoggerContext(t.Context(), testLogger)
|
|
logger2 := LoggerFromContext(ctx)
|
|
assert.Equal(testLogger, logger2)
|
|
}
|
|
|
|
func TestNilLoggerContext(t *testing.T) {
|
|
t.Parallel()
|
|
assert := assert.New(t)
|
|
|
|
defer func() {
|
|
if err := recover(); assert.NotNil(err) {
|
|
assert.Equal("logger is nil", err)
|
|
}
|
|
}()
|
|
|
|
ctx := NewLoggerContext(t.Context(), nil)
|
|
assert.Fail("should have paniced", "got context %+v", ctx)
|
|
}
|