mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
919 B
34 lines
919 B
package command_test |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"github.com/xtls/xray-core/app/dispatcher" |
|
"github.com/xtls/xray-core/app/log" |
|
. "github.com/xtls/xray-core/app/log/command" |
|
"github.com/xtls/xray-core/app/proxyman" |
|
_ "github.com/xtls/xray-core/app/proxyman/inbound" |
|
_ "github.com/xtls/xray-core/app/proxyman/outbound" |
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/serial" |
|
"github.com/xtls/xray-core/core" |
|
) |
|
|
|
func TestLoggerRestart(t *testing.T) { |
|
v, err := core.New(&core.Config{ |
|
App: []*serial.TypedMessage{ |
|
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{})) |
|
}
|
|
|