mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
37 lines
1003 B
Go
37 lines
1003 B
Go
package command_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"google.golang.org/protobuf/types/known/anypb"
|
|
|
|
core "github.com/v2fly/v2ray-core/v5"
|
|
"github.com/v2fly/v2ray-core/v5/app/dispatcher"
|
|
"github.com/v2fly/v2ray-core/v5/app/log"
|
|
. "github.com/v2fly/v2ray-core/v5/app/log/command"
|
|
"github.com/v2fly/v2ray-core/v5/app/proxyman"
|
|
_ "github.com/v2fly/v2ray-core/v5/app/proxyman/inbound"
|
|
_ "github.com/v2fly/v2ray-core/v5/app/proxyman/outbound"
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
"github.com/v2fly/v2ray-core/v5/common/serial"
|
|
)
|
|
|
|
func TestLoggerRestart(t *testing.T) {
|
|
v, err := core.New(&core.Config{
|
|
App: []*anypb.Any{
|
|
serial.ToTypedMessage(&log.Config{}),
|
|
serial.ToTypedMessage(&dispatcher.Config{}),
|
|
serial.ToTypedMessage(&proxyman.InboundConfig{}),
|
|
serial.ToTypedMessage(&proxyman.OutboundConfig{}),
|
|
},
|
|
})
|
|
common.Must(err)
|
|
common.Must(v.Start())
|
|
|
|
server := &LoggerServer{
|
|
V: v,
|
|
}
|
|
common.Must2(server.RestartLogger(context.Background(), &RestartLoggerRequest{}))
|
|
}
|