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

55 lines
1.3 KiB
Go
Raw Normal View History

2021-08-02 05:07:28 +00:00
package features
import (
"fmt"
"strings"
"time"
2021-08-02 05:07:28 +00:00
2023-02-27 06:44:16 +00:00
"github.com/onsi/ginkgo/v2"
2022-08-28 17:02:53 +00:00
2021-08-02 05:07:28 +00: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-28 17:02:53 +00:00
var _ = ginkgo.Describe("[Feature: Monitor]", func() {
2021-08-02 05:07:28 +00:00
f := framework.NewDefaultFramework()
2022-08-28 17:02:53 +00:00
ginkgo.It("Prometheus metrics", func() {
2021-08-02 05:07:28 +00:00
dashboardPort := f.AllocPort()
2023-09-13 08:32:39 +00:00
serverConf := consts.LegacyDefaultServerConfig + fmt.Sprintf(`
2021-08-02 05:07:28 +00:00
enable_prometheus = true
dashboard_addr = 0.0.0.0
dashboard_port = %d
`, dashboardPort)
2023-09-13 08:32:39 +00:00
clientConf := consts.LegacyDefaultClientConfig
2021-08-02 05:07:28 +00:00
remotePort := f.AllocPort()
clientConf += fmt.Sprintf(`
[tcp]
type = tcp
local_port = {{ .%s }}
remote_port = %d
`, framework.TCPEchoServerPort, remotePort)
f.RunProcesses([]string{serverConf}, []string{clientConf})
framework.NewRequestExpect(f).Port(remotePort).Ensure()
time.Sleep(500 * time.Millisecond)
2021-08-02 05:07:28 +00:00
framework.NewRequestExpect(f).RequestModify(func(r *request.Request) {
r.HTTP().Port(dashboardPort).HTTPPath("/metrics")
}).Ensure(func(resp *request.Response) bool {
log.Trace("prometheus metrics response: \n%s", resp.Content)
if resp.Code != 200 {
return false
}
if !strings.Contains(string(resp.Content), "traffic_in") {
return false
}
return true
})
})
})