tank/code/test/main_test.go
2020-06-21 00:04:11 +08:00

56 lines
817 B
Go

package test
import (
"fmt"
"github.com/eyebluecn/tank/code/core"
"github.com/eyebluecn/tank/code/tool/util"
"github.com/robfig/cron"
"log"
"strings"
"testing"
"time"
)
func TestHello(t *testing.T) {
split := strings.Split("good", "/")
fmt.Printf("%v", split)
var i int
for i = 1; i < 10; i++ {
fmt.Printf("i=%d\n", i)
}
}
func TestCron(t *testing.T) {
i := 0
c := cron.New()
spec := "*/1 * * * * ?"
err := c.AddFunc(spec, func() {
i++
log.Println("cron running:", i)
if i == 2 {
panic("intent to panic.")
}
})
core.PanicError(err)
c.Start()
time.Sleep(3 * time.Second)
}
func TestDayAgo(t *testing.T) {
dayAgo := time.Now()
dayAgo = dayAgo.AddDate(0, 0, -8)
thenDay := util.FirstSecondOfDay(dayAgo)
fmt.Printf("%s\n", util.ConvertTimeToDateTimeString(thenDay))
}