2022-04-17 16:25:42 +03:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2022-05-03 16:05:56 +03:00
|
|
|
func TestFromNilContext(t *testing.T) {
|
|
|
|
// nolint: staticcheck
|
|
|
|
c, ok := FromContext(nil)
|
|
|
|
if ok || c != nil {
|
|
|
|
t.Fatal("FromContext not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewNilContext(t *testing.T) {
|
|
|
|
// nolint: staticcheck
|
|
|
|
ctx := NewContext(nil, NewConfig())
|
|
|
|
|
|
|
|
c, ok := FromContext(ctx)
|
|
|
|
if c == nil || !ok {
|
|
|
|
t.Fatal("NewContext not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-17 16:25:42 +03:00
|
|
|
func TestFromContext(t *testing.T) {
|
|
|
|
ctx := context.WithValue(context.TODO(), configKey{}, NewConfig())
|
|
|
|
|
|
|
|
c, ok := FromContext(ctx)
|
|
|
|
if c == nil || !ok {
|
|
|
|
t.Fatal("FromContext not works")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewContext(t *testing.T) {
|
|
|
|
ctx := NewContext(context.TODO(), NewConfig())
|
|
|
|
|
|
|
|
c, ok := FromContext(ctx)
|
|
|
|
if c == nil || !ok {
|
|
|
|
t.Fatal("NewContext not works")
|
|
|
|
}
|
|
|
|
}
|