mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 09:30:26 +08:00
43 lines
1018 B
Go
43 lines
1018 B
Go
|
|
package checkpoints
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
||
|
|
"net/http"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestCCCheckpoint_RequestValue(t *testing.T) {
|
||
|
|
raw, err := http.NewRequest(http.MethodGet, "http://teaos.cn/", nil)
|
||
|
|
if err != nil {
|
||
|
|
t.Fatal(err)
|
||
|
|
}
|
||
|
|
|
||
|
|
req := requests.NewRequest(raw)
|
||
|
|
req.RemoteAddr = "127.0.0.1"
|
||
|
|
|
||
|
|
checkpoint := new(CCCheckpoint)
|
||
|
|
checkpoint.Init()
|
||
|
|
checkpoint.Start()
|
||
|
|
|
||
|
|
options := map[string]string{
|
||
|
|
"period": "5",
|
||
|
|
}
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
|
||
|
|
req.RemoteAddr = "127.0.0.2"
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
|
||
|
|
req.RemoteAddr = "127.0.0.1"
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
|
||
|
|
req.RemoteAddr = "127.0.0.2"
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
|
||
|
|
req.RemoteAddr = "127.0.0.2"
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
|
||
|
|
req.RemoteAddr = "127.0.0.2"
|
||
|
|
t.Log(checkpoint.RequestValue(req, "requests", options))
|
||
|
|
}
|