X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=test%2Fcalendar_event_test.pl;h=abbd74cce8632f0a67595605da87c5c658ceb891;hp=0defafa220fdc24bb0b72054a52d908db1e10f8f;hb=6eb61ecd4ad9bfa6b1765965a05d7a5ff0d38aff;hpb=e2c29de7756a1d982be0b3758ce95aac2c4d88d4 diff --git a/test/calendar_event_test.pl b/test/calendar_event_test.pl index 0defafa..abbd74c 100755 --- a/test/calendar_event_test.pl +++ b/test/calendar_event_test.pl @@ -3,12 +3,17 @@ use lib '../src'; use strict; use warnings; +use POSIX (); use Data::Dumper; use Time::Local; use Test::More; use PVE::CalendarEvent; +# Time tests should run in a controlled setting +$ENV{TZ} = 'UTC'; +POSIX::tzset(); + my $alldays = [0,1,2,3,4,5,6]; my $tests = [ [ @@ -183,6 +188,7 @@ foreach my $test (@$tests) { my $timespec; eval { $timespec = PVE::CalendarEvent::parse_calendar_event($t); }; my $err = $@; + delete $timespec->{utc}; if ($expect->{error}) { chomp $err if $err; @@ -197,11 +203,36 @@ foreach my $test (@$tests) { foreach my $nt (@$nextsync) { my ($last, $expect_next) = @$nt; - my $msg = "next event '$t' $last => ${expect_next}"; - my $next = PVE::CalendarEvent::compute_next_event($timespec, $last, 1); + $timespec->{utc} = 1; + my $next = PVE::CalendarEvent::compute_next_event($timespec, $last); is($next, $expect_next, $msg); } }; +sub tztest { + my ($calspec, $last) = @_; + my $spec = PVE::CalendarEvent::parse_calendar_event($calspec); + return PVE::CalendarEvent::compute_next_event($spec, $last); +} + +# Test loop termination at CEST/CET switch (cannot happen here in UTC) +is(tztest('mon..fri', timelocal(0, 0, 0, 28, 9, 2018)), + timelocal(0, 0, 0, 29, 9, 2018)); +is(tztest('mon..fri UTC', timelocal(0, 0, 0, 28, 9, 2018)), + timelocal(0, 0, 0, 29, 9, 2018)); + +# Now in the affected time zone +$ENV{TZ} = ':Europe/Vienna'; +POSIX::tzset(); +is(tztest('mon..fri', timelocal(0, 0, 0, 28, 9, 2018)), + timelocal(0, 0, 0, 29, 9, 2018)); +# Specifically requesting UTC in the calendar spec means the resulting output +# time as seen locally (timelocal() as opposed to timegm()) is shifted by 1 +# hour. +is(tztest('mon..fri UTC', timelocal(0, 0, 0, 28, 9, 2018)), + timelocal(0, 0, 1, 29, 9, 2018)); +$ENV{TZ} = 'UTC'; +POSIX::tzset(); + done_testing();