This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/db/models/http_firewall_rule_set_dao_test.go
T

22 lines
435 B
Go

package models
import (
_ "github.com/go-sql-driver/mysql"
"github.com/iwind/TeaGo/dbs"
"testing"
"time"
)
func TestHTTPFirewallRuleSetDAO_FindRuleSetIdWithRuleId(t *testing.T) {
dbs.NotifyReady()
var tx *dbs.Tx
before := time.Now()
setId, err := SharedHTTPFirewallRuleSetDAO.FindEnabledRuleSetIdWithRuleId(tx, 20)
if err != nil {
t.Fatal(err)
}
t.Log("setId:", setId)
t.Log(time.Since(before).Seconds()*1000, "ms")
}