mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
23 lines
436 B
Go
23 lines
436 B
Go
package models
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
)
|
|
|
|
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")
|
|
}
|