frp/test/e2e/v1/features/monitor.go

56 lines
1.4 KiB
Go
Raw Normal View History

2021-08-02 13:07:28 +08:00
package features
import (
"fmt"
"strings"
"time"
2021-08-02 13:07:28 +08:00
2023-02-27 14:44:16 +08:00
"github.com/onsi/ginkgo/v2"
2022-08-29 01:02:53 +08:00
2021-08-02 13:07:28 +08:00
"github.com/fatedier/frp/pkg/util/log"
"github.com/fatedier/frp/test/e2e/framework"
"github.com/fatedier/frp/test/e2e/framework/consts"
"github.com/fatedier/frp/test/e2e/pkg/request"
)
2022-08-29 01:02:53 +08:00
var _ = ginkgo.Describe("[Feature: Monitor]", func() {
2021-08-02 13:07:28 +08:00
f := framework.NewDefaultFramework()
2022-08-29 01:02:53 +08:00
ginkgo.It("Prometheus metrics", func() {
2021-08-02 13:07:28 +08:00
dashboardPort := f.AllocPort()
serverConf := consts.DefaultServerConfig + fmt.Sprintf(`
2023-09-13 16:32:39 +08:00
enablePrometheus = true
webServer.addr = "0.0.0.0"
webServer.port = %d
2021-08-02 13:07:28 +08:00
`, dashboardPort)
clientConf := consts.DefaultClientConfig
remotePort := f.AllocPort()
clientConf += fmt.Sprintf(`
2023-09-13 16:32:39 +08:00
[[proxies]]
name = "tcp"
type = "tcp"
localPort = {{ .%s }}
remotePort = %d
2021-08-02 13:07:28 +08:00
`, framework.TCPEchoServerPort, remotePort)
f.RunProcesses([]string{serverConf}, []string{clientConf})
framework.NewRequestExpect(f).Port(remotePort).Ensure()
time.Sleep(500 * time.Millisecond)
2021-08-02 13:07:28 +08:00
framework.NewRequestExpect(f).RequestModify(func(r *request.Request) {
r.HTTP().Port(dashboardPort).HTTPPath("/metrics")
}).Ensure(func(resp *request.Response) bool {
2024-03-12 13:58:53 +08:00
log.Tracef("prometheus metrics response: \n%s", resp.Content)
2021-08-02 13:07:28 +08:00
if resp.Code != 200 {
return false
}
if !strings.Contains(string(resp.Content), "traffic_in") {
return false
}
return true
})
})
})