ah yes, forgot to use go fmt

This commit is contained in:
gorhill 2013-08-30 11:09:36 -04:00
parent 59e1694746
commit bca585d924
2 changed files with 629 additions and 629 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,103 +21,103 @@ import (
/******************************************************************************/ /******************************************************************************/
type crontimes struct { type crontimes struct {
from string from string
next string next string
} }
type crontest struct { type crontest struct {
expr string expr string
layout string layout string
times []crontimes times []crontimes
} }
var crontests = []crontest{ var crontests = []crontest{
// Seconds // Seconds
{ {
"* * * * * * *", "* * * * * * *",
"2006-01-02 15:04:05", "2006-01-02 15:04:05",
[]crontimes{ []crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:00:01"}, {"2013-01-01 00:00:00", "2013-01-01 00:00:01"},
{"2013-01-01 00:00:59", "2013-01-01 00:01:00"}, {"2013-01-01 00:00:59", "2013-01-01 00:01:00"},
{"2013-01-01 00:59:59", "2013-01-01 01:00:00"}, {"2013-01-01 00:59:59", "2013-01-01 01:00:00"},
{"2013-01-01 23:59:59", "2013-01-02 00:00:00"}, {"2013-01-01 23:59:59", "2013-01-02 00:00:00"},
{"2013-02-28 23:59:59", "2013-03-01 00:00:00"}, {"2013-02-28 23:59:59", "2013-03-01 00:00:00"},
{"2016-02-28 23:59:59", "2016-02-29 00:00:00"}, {"2016-02-28 23:59:59", "2016-02-29 00:00:00"},
{"2012-12-31 23:59:59", "2013-01-01 00:00:00"}, {"2012-12-31 23:59:59", "2013-01-01 00:00:00"},
}, },
}, },
// Minutes // Minutes
{ {
"* * * * *", "* * * * *",
"2006-01-02 15:04:05", "2006-01-02 15:04:05",
[]crontimes{ []crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:01:00"}, {"2013-01-01 00:00:00", "2013-01-01 00:01:00"},
{"2013-01-01 00:00:59", "2013-01-01 00:01:00"}, {"2013-01-01 00:00:59", "2013-01-01 00:01:00"},
{"2013-01-01 00:59:00", "2013-01-01 01:00:00"}, {"2013-01-01 00:59:00", "2013-01-01 01:00:00"},
{"2013-01-01 23:59:00", "2013-01-02 00:00:00"}, {"2013-01-01 23:59:00", "2013-01-02 00:00:00"},
{"2013-02-28 23:59:00", "2013-03-01 00:00:00"}, {"2013-02-28 23:59:00", "2013-03-01 00:00:00"},
{"2016-02-28 23:59:00", "2016-02-29 00:00:00"}, {"2016-02-28 23:59:00", "2016-02-29 00:00:00"},
{"2012-12-31 23:59:00", "2013-01-01 00:00:00"}, {"2012-12-31 23:59:00", "2013-01-01 00:00:00"},
}, },
}, },
// Minutes with interval // Minutes with interval
{ {
"17-43/5 * * * *", "17-43/5 * * * *",
"2006-01-02 15:04:05", "2006-01-02 15:04:05",
[]crontimes{ []crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:17:00"}, {"2013-01-01 00:00:00", "2013-01-01 00:17:00"},
{"2013-01-01 00:16:59", "2013-01-01 00:17:00"}, {"2013-01-01 00:16:59", "2013-01-01 00:17:00"},
{"2013-01-01 00:30:00", "2013-01-01 00:32:00"}, {"2013-01-01 00:30:00", "2013-01-01 00:32:00"},
{"2013-01-01 00:50:00", "2013-01-01 01:17:00"}, {"2013-01-01 00:50:00", "2013-01-01 01:17:00"},
{"2013-01-01 23:50:00", "2013-01-02 00:17:00"}, {"2013-01-01 23:50:00", "2013-01-02 00:17:00"},
{"2013-02-28 23:50:00", "2013-03-01 00:17:00"}, {"2013-02-28 23:50:00", "2013-03-01 00:17:00"},
{"2016-02-28 23:50:00", "2016-02-29 00:17:00"}, {"2016-02-28 23:50:00", "2016-02-29 00:17:00"},
{"2012-12-31 23:50:00", "2013-01-01 00:17:00"}, {"2012-12-31 23:50:00", "2013-01-01 00:17:00"},
}, },
}, },
// Minutes interval, list // Minutes interval, list
{ {
"15-30/4,55 * * * *", "15-30/4,55 * * * *",
"2006-01-02 15:04:05", "2006-01-02 15:04:05",
[]crontimes{ []crontimes{
{"2013-01-01 00:00:00", "2013-01-01 00:15:00"}, {"2013-01-01 00:00:00", "2013-01-01 00:15:00"},
{"2013-01-01 00:16:00", "2013-01-01 00:19:00"}, {"2013-01-01 00:16:00", "2013-01-01 00:19:00"},
{"2013-01-01 00:30:00", "2013-01-01 00:55:00"}, {"2013-01-01 00:30:00", "2013-01-01 00:55:00"},
{"2013-01-01 00:55:00", "2013-01-01 01:15:00"}, {"2013-01-01 00:55:00", "2013-01-01 01:15:00"},
{"2013-01-01 23:55:00", "2013-01-02 00:15:00"}, {"2013-01-01 23:55:00", "2013-01-02 00:15:00"},
{"2013-02-28 23:55:00", "2013-03-01 00:15:00"}, {"2013-02-28 23:55:00", "2013-03-01 00:15:00"},
{"2016-02-28 23:55:00", "2016-02-29 00:15:00"}, {"2016-02-28 23:55:00", "2016-02-29 00:15:00"},
{"2012-12-31 23:54:00", "2012-12-31 23:55:00"}, {"2012-12-31 23:54:00", "2012-12-31 23:55:00"},
{"2012-12-31 23:55:00", "2013-01-01 00:15:00"}, {"2012-12-31 23:55:00", "2013-01-01 00:15:00"},
}, },
}, },
// Days of week // Days of week
{ {
"0 0 * * MON", "0 0 * * MON",
"Mon 2006-01-02 15:04", "Mon 2006-01-02 15:04",
[]crontimes{ []crontimes{
{"2013-01-01 00:00:00", "Mon 2013-01-07 00:00"}, {"2013-01-01 00:00:00", "Mon 2013-01-07 00:00"},
{"2013-01-28 00:00:00", "Mon 2013-02-04 00:00"}, {"2013-01-28 00:00:00", "Mon 2013-02-04 00:00"},
{"2013-12-30 00:30:00", "Mon 2014-01-06 00:00"}, {"2013-12-30 00:30:00", "Mon 2014-01-06 00:00"},
}, },
}, },
// TODO: more tests // TODO: more tests
} }
func TestCronExpressions(t *testing.T) { func TestCronExpressions(t *testing.T) {
for _, test := range crontests { for _, test := range crontests {
for _, times := range test.times { for _, times := range test.times {
from, _ := time.Parse("2006-01-02 15:04:05", times.from) from, _ := time.Parse("2006-01-02 15:04:05", times.from)
next := cronexpression.NextTime(test.expr, from) next := cronexpression.NextTime(test.expr, from)
nextstr := next.Format(test.layout) nextstr := next.Format(test.layout)
if nextstr != times.next { if nextstr != times.next {
t.Errorf("(\"%s\").NextTime(\"%s\") = \"%s\", got \"%s\"", test.expr, times.from, times.next, nextstr) t.Errorf("(\"%s\").NextTime(\"%s\") = \"%s\", got \"%s\"", test.expr, times.from, times.next, nextstr)
} }
} }
} }
} }