mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-06 10:00:24 +08:00
21 lines
432 B
Go
21 lines
432 B
Go
package stats
|
|
|
|
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()
|
|
|
|
now := time.Now()
|
|
err := SharedTrafficDailyStatDAO.IncreaseDailyBytes(nil, timeutil.Format("Ymd"), 1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log("ok", time.Since(now).Seconds()*1000, "ms")
|
|
}
|