2020-09-23 10:12:57 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import (
|
2021-01-17 16:48:00 +08:00
|
|
|
"testing"
|
|
|
|
|
"time"
|
2024-07-27 14:15:25 +08:00
|
|
|
|
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
|
|
|
"github.com/iwind/TeaGo/dbs"
|
2020-09-23 10:12:57 +08:00
|
|
|
)
|
2021-01-17 16:48:00 +08:00
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
}
|