2021-01-21 20:22:58 +08:00
|
|
|
package stats
|
2021-01-21 18:55:34 +08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
|
|
|
"github.com/iwind/TeaGo/dbs"
|
|
|
|
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestTrafficDailyStatDAO_IncreaseDayBytes(t *testing.T) {
|
|
|
|
|
dbs.NotifyReady()
|
|
|
|
|
|
2024-05-05 11:14:46 +08:00
|
|
|
var now = time.Now()
|
2021-08-07 16:11:35 +08:00
|
|
|
err := SharedTrafficDailyStatDAO.IncreaseDailyStat(nil, timeutil.Format("Ymd"), 1, 1, 1, 1, 1, 1)
|
2021-01-21 18:55:34 +08:00
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log("ok", time.Since(now).Seconds()*1000, "ms")
|
|
|
|
|
}
|
2024-05-05 11:14:46 +08:00
|
|
|
|
|
|
|
|
func TestTrafficDailyStatDAO_IncreaseIPs(t *testing.T) {
|
|
|
|
|
dbs.NotifyReady()
|
|
|
|
|
|
|
|
|
|
var tx *dbs.Tx
|
|
|
|
|
err := SharedTrafficDailyStatDAO.IncreaseIPs(tx, timeutil.Format("Ymd"), 123)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
}
|