mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Fix tests
This commit is contained in:
parent
f2ec319fe1
commit
e65926fd08
29 changed files with 492 additions and 457 deletions
|
@ -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++ {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue