2022-01-13 14:26:07 +08:00
|
|
|
package features
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
"github.com/onsi/ginkgo"
|
2022-01-13 14:26:07 +08:00
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
"github.com/fatedier/frp/test/e2e/framework"
|
2022-01-13 14:26:07 +08:00
|
|
|
)
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
var _ = ginkgo.Describe("[Feature: Heartbeat]", func() {
|
2022-01-13 14:26:07 +08:00
|
|
|
f := framework.NewDefaultFramework()
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.It("disable application layer heartbeat", func() {
|
2022-01-13 14:26:07 +08:00
|
|
|
serverPort := f.AllocPort()
|
|
|
|
serverConf := fmt.Sprintf(`
|
|
|
|
[common]
|
|
|
|
bind_addr = 0.0.0.0
|
|
|
|
bind_port = %d
|
|
|
|
heartbeat_timeout = -1
|
|
|
|
tcp_mux_keepalive_interval = 2
|
|
|
|
`, serverPort)
|
|
|
|
|
|
|
|
remotePort := f.AllocPort()
|
|
|
|
clientConf := fmt.Sprintf(`
|
|
|
|
[common]
|
|
|
|
server_port = %d
|
|
|
|
log_level = trace
|
|
|
|
heartbeat_interval = -1
|
|
|
|
heartbeat_timeout = -1
|
|
|
|
tcp_mux_keepalive_interval = 2
|
|
|
|
|
|
|
|
[tcp]
|
|
|
|
type = tcp
|
|
|
|
local_port = %d
|
|
|
|
remote_port = %d
|
|
|
|
`, serverPort, f.PortByName(framework.TCPEchoServerPort), remotePort)
|
|
|
|
|
|
|
|
// run frps and frpc
|
|
|
|
f.RunProcesses([]string{serverConf}, []string{clientConf})
|
|
|
|
|
|
|
|
framework.NewRequestExpect(f).Protocol("tcp").Port(remotePort).Ensure()
|
|
|
|
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
framework.NewRequestExpect(f).Protocol("tcp").Port(remotePort).Ensure()
|
|
|
|
})
|
|
|
|
})
|