Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid timestamps for HOURLY interval RRULEs when DST change occurs #64

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions dst_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
package rrule

import (
"testing"
"time"
)

func TestDST_HourlyDSTStart(t *testing.T) {
sydLoc, _ := time.LoadLocation("Australia/Sydney")
r, _ := NewRRule(ROption{Freq: HOURLY, Interval: 1, Count: 3,
Dtstart: time.Date(2022, 10, 2, 1, 0, 0, 0, sydLoc),
})
got := r.All()
want := []string{
"2022-10-02 01:00:00 +1000 AEST",
"2022-10-02 03:00:00 +1100 AEDT",
"2022-10-02 04:00:00 +1100 AEDT",
}
for i, g := range got {
if g.String() != want[i] {
t.Errorf("got: %v, want: %v", g, want[i])
}
}
var utcTimes []time.Time
for _, dt := range got {
utcTimes = append(utcTimes, dt.UTC())
}
want = []string{
"2022-10-01 15:00:00 +0000 UTC",
"2022-10-01 16:00:00 +0000 UTC",
"2022-10-01 17:00:00 +0000 UTC",
}

for i, g := range utcTimes {
if g.String() != want[i] {
t.Errorf("got: %v, want: %v", g, want[i])
}
}
}

func TestDST_HourlyDSTEnd(t *testing.T) {
sydLoc, _ := time.LoadLocation("Australia/Sydney")
r, _ := NewRRule(ROption{Freq: HOURLY, Interval: 1, Count: 3,
Dtstart: time.Date(2023, 4, 2, 1, 0, 0, 0, sydLoc),
})
got := r.All()
want := []string{
"2023-04-02 01:00:00 +1100 AEDT",
"2023-04-02 02:00:00 +1100 AEDT",
"2023-04-02 02:00:00 +1000 AEST",
}
for i, g := range got {
if g.String() != want[i] {
t.Errorf("got: %v, want: %v", g, want[i])
}
}

var utcTimes []time.Time
for _, dt := range got {
utcTimes = append(utcTimes, dt.UTC())
}
want = []string{
"2023-04-01 14:00:00 +0000 UTC",
"2023-04-01 15:00:00 +0000 UTC",
"2023-04-01 16:00:00 +0000 UTC",
}
for i, g := range utcTimes {
if g.String() != want[i] {
t.Errorf("got: %v, want: %v", g, want[i])
}
}
}