Fix tests

This commit is contained in:
世界 2024-11-18 18:59:19 +08:00
parent f2ec319fe1
commit e65926fd08
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
29 changed files with 492 additions and 457 deletions

View file

@ -13,6 +13,7 @@ import (
"github.com/sagernet/quic-go/http3"
"github.com/sagernet/sing-box"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/include"
"github.com/sagernet/sing-box/option"
"github.com/sagernet/sing/common/bufio"
"github.com/sagernet/sing/common/debug"
@ -28,6 +29,12 @@ func TestMain(m *testing.M) {
goleak.VerifyTestMain(m)
}
var globalCtx context.Context
func init() {
globalCtx = box.Context(context.Background(), include.InboundRegistry(), include.OutboundRegistry(), include.EndpointRegistry())
}
func startInstance(t *testing.T, options option.Options) *box.Box {
if debug.Enabled {
options.Log = &option.LogOptions{
@ -38,8 +45,7 @@ func startInstance(t *testing.T, options option.Options) *box.Box {
Level: "warning",
}
}
// ctx := context.Background()
ctx, cancel := context.WithCancel(context.Background())
ctx, cancel := context.WithCancel(globalCtx)
var instance *box.Box
var err error
for retry := 0; retry < 3; retry++ {