-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples_test.go
101 lines (78 loc) · 2.44 KB
/
examples_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package gocron_test
import (
"fmt"
"time"
"github.com/Gilthoniel/gocron"
)
func ExampleSchedule_Next_everyFifteenSeconds() {
schedule := gocron.MustParse("*/15 * * * ? *")
next := schedule.Next(time.Date(2023, time.June, 4, 0, 0, 0, 0, time.UTC))
fmt.Println(next)
next = schedule.Next(next)
fmt.Println(next)
// Output:
// 2023-06-04 00:00:15 +0000 UTC
// 2023-06-04 00:00:30 +0000 UTC
}
func ExampleSchedule_Next_usingTimezone() {
schedule := gocron.MustParse("*/15 * * * * *")
next := schedule.Next(time.Date(2023, time.June, 4, 0, 0, 0, 0, time.FixedZone("CEST", 120)))
fmt.Println(next)
next = schedule.Next(next)
fmt.Println(next)
// Output:
// 2023-06-04 00:00:15 +0002 CEST
// 2023-06-04 00:00:30 +0002 CEST
}
func ExampleSchedule_Next_everyLastFridayOfTheMonthAtMidnight() {
schedule := gocron.MustParse("0 0 0 ? * 5L")
next := schedule.Next(time.Date(2023, time.June, 4, 0, 0, 0, 0, time.UTC))
fmt.Println(next)
next = schedule.Next(next)
fmt.Println(next)
// Output:
// 2023-06-30 00:00:00 +0000 UTC
// 2023-07-28 00:00:00 +0000 UTC
}
func ExampleSchedule_Upcoming_everyLastSundayOfAprilAtThreePM() {
schedule := gocron.MustParse("0 0 15 ? 4 0L")
iter := schedule.Upcoming(time.Date(2023, time.June, 4, 0, 0, 0, 0, time.UTC))
for i := 0; i < 5 && iter.HasNext(); i++ {
next := iter.Next()
fmt.Println(next)
}
// Output:
// 2024-04-28 15:00:00 +0000 UTC
// 2025-04-27 15:00:00 +0000 UTC
// 2026-04-26 15:00:00 +0000 UTC
// 2027-04-25 15:00:00 +0000 UTC
// 2028-04-30 15:00:00 +0000 UTC
}
func ExampleSchedule_Upcoming_everySecondToLastDayOfEveryTwoMonths() {
schedule := gocron.MustParse("0 0 0 L-2 */2 ?")
iter := schedule.Upcoming(time.Date(2023, time.June, 4, 0, 0, 0, 0, time.UTC))
for i := 0; i < 5 && iter.HasNext(); i++ {
next := iter.Next()
fmt.Println(next)
}
// Output:
// 2023-07-30 00:00:00 +0000 UTC
// 2023-09-29 00:00:00 +0000 UTC
// 2023-11-29 00:00:00 +0000 UTC
// 2024-01-30 00:00:00 +0000 UTC
// 2024-03-30 00:00:00 +0000 UTC
}
func ExampleSchedule_Upcoming_everyThirdThursdayOfEachMonth() {
schedule := gocron.MustParse("0 0 0 ? * 4#3")
iter := schedule.Upcoming(time.Date(2023, time.June, 4, 0, 0, 0, 0, time.UTC))
for i := 0; i < 5 && iter.HasNext(); i++ {
next := iter.Next()
fmt.Println(next)
}
// Output:
// 2023-06-15 00:00:00 +0000 UTC
// 2023-07-20 00:00:00 +0000 UTC
// 2023-08-17 00:00:00 +0000 UTC
// 2023-09-21 00:00:00 +0000 UTC
// 2023-10-19 00:00:00 +0000 UTC
}