1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-21 15:05:23 +00:00
v2fly/context_test.go

35 lines
629 B
Go
Raw Normal View History

2018-10-21 18:33:08 +00:00
package core_test
import (
"context"
"testing"
2021-04-06 01:55:14 +00:00
_ "unsafe"
2018-10-21 18:33:08 +00:00
2021-02-16 20:31:50 +00:00
. "github.com/v2fly/v2ray-core/v4"
2018-10-21 18:33:08 +00:00
)
func TestFromContextPanic(t *testing.T) {
2018-10-21 18:33:08 +00:00
defer func() {
r := recover()
if r == nil {
t.Error("expect panic, but nil")
}
}()
MustFromContext(context.Background())
}
2021-04-05 17:13:24 +00:00
//go:linkname mustToContextForced github.com/v2fly/v2ray-core/v4.mustToContext
func mustToContextForced(ctx context.Context, v *Instance) context.Context
func TestToContextPanic(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Error("expect panic, but nil")
}
}()
2021-04-05 17:13:24 +00:00
mustToContextForced(context.Background(), &Instance{})
}