2021-08-02 13:07:28 +08:00
|
|
|
package features
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
2021-10-25 20:27:22 +08:00
|
|
|
"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()
|
2023-09-13 16:32:39 +08:00
|
|
|
serverConf := consts.LegacyDefaultServerConfig + fmt.Sprintf(`
|
2021-08-02 13:07:28 +08:00
|
|
|
enable_prometheus = true
|
|
|
|
dashboard_addr = 0.0.0.0
|
|
|
|
dashboard_port = %d
|
|
|
|
`, dashboardPort)
|
|
|
|
|
2023-09-13 16:32:39 +08:00
|
|
|
clientConf := consts.LegacyDefaultClientConfig
|
2021-08-02 13:07:28 +08: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()
|
2021-10-25 20:27:22 +08:00
|
|
|
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
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|