|
|
@ -9,7 +9,7 @@ import (
|
|
|
|
func TestParse(t *testing.T) {
|
|
|
|
func TestParse(t *testing.T) {
|
|
|
|
for _, code := range []string{"一个小时后告诉我事情", "三个小时后爱我", "每两个小时提醒我吃饭",
|
|
|
|
for _, code := range []string{"一个小时后告诉我事情", "三个小时后爱我", "每两个小时提醒我吃饭",
|
|
|
|
"每五个月零二十五天三小时25分15秒告诉我时间", "5月23日上午3点24分12秒打我", "周五上午11点提醒我", "5时25分提醒我",
|
|
|
|
"每五个月零二十五天三小时25分15秒告诉我时间", "5月23日上午3点24分12秒打我", "周五上午11点提醒我", "5时25分提醒我",
|
|
|
|
"每周一到周五上午8点提醒我吃饭", "每天晚上8点提醒我吃饭", "每月16号晚上8点提醒我吃饭"} {
|
|
|
|
"每周一到周五上午8点提醒我吃饭", "每天晚上8点提醒我吃饭", "每月16号晚上8点提醒我吃饭", "晚上8:30提醒我", "晚上八点半提醒我", "6分钟后提醒我"} {
|
|
|
|
a, _ := WhenWithPeriod(code)
|
|
|
|
a, _ := WhenWithPeriod(code)
|
|
|
|
//fmt.Println(a.Repeats()[0])
|
|
|
|
//fmt.Println(a.Repeats()[0])
|
|
|
|
fmt.Println(a.NextTimer(), a.RunCountLimit(), code)
|
|
|
|
fmt.Println(a.NextTimer(), a.RunCountLimit(), code)
|
|
|
@ -18,7 +18,7 @@ func TestParse(t *testing.T) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func TestSigParse(t *testing.T) {
|
|
|
|
func TestSigParse(t *testing.T) {
|
|
|
|
for _, code := range []string{"每月16号晚上8点提醒我吃饭"} {
|
|
|
|
for _, code := range []string{"6分钟后提醒我"} {
|
|
|
|
a, _ := WhenWithPeriod(code)
|
|
|
|
a, _ := WhenWithPeriod(code)
|
|
|
|
//fmt.Println(a.Repeats()[0])
|
|
|
|
//fmt.Println(a.Repeats()[0])
|
|
|
|
fmt.Println(a.NextTimer(), a.RunCountLimit(), code)
|
|
|
|
fmt.Println(a.NextTimer(), a.RunCountLimit(), code)
|
|
|
|