Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / perl5 / t / lib / timelocal.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6 }
7
8 use Time::Local;
9
10 # Set up time values to test
11 @time =
12   (
13    #year,mon,day,hour,min,sec 
14    [1970,  1,  2, 00, 00, 00],
15    [1980,  2, 28, 12, 00, 00],
16    [1980,  2, 29, 12, 00, 00],
17    [1999, 12, 31, 23, 59, 59],
18    [2000,  1,  1, 00, 00, 00],
19    [2010, 10, 12, 14, 13, 12],
20   );
21
22 # use vmsish 'time' makes for oddness around the Unix epoch
23 if ($^O eq 'VMS') { $time[0][2]++ }
24
25 print "1..", @time * 2 + 5, "\n";
26
27 $count = 1;
28 for (@time) {
29     my($year, $mon, $mday, $hour, $min, $sec) = @$_;
30     $year -= 1900;
31     $mon --;
32     my $time = timelocal($sec,$min,$hour,$mday,$mon,$year);
33     # print scalar(localtime($time)), "\n";
34     my($s,$m,$h,$D,$M,$Y) = localtime($time);
35
36     if ($s == $sec &&
37         $m == $min &&
38         $h == $hour &&
39         $D == $mday &&
40         $M == $mon &&
41         $Y == $year
42        ) {
43         print "ok $count\n";
44     } else {
45         print "not ok $count\n";
46     }
47     $count++;
48
49     # Test gmtime function
50     $time = timegm($sec,$min,$hour,$mday,$mon,$year);
51     ($s,$m,$h,$D,$M,$Y) = gmtime($time);
52
53     if ($s == $sec &&
54         $m == $min &&
55         $h == $hour &&
56         $D == $mday &&
57         $M == $mon &&
58         $Y == $year
59        ) {
60         print "ok $count\n";
61     } else {
62         print "not ok $count\n";
63     }
64     $count++;
65 }
66
67 #print "Testing that the differences between a few dates makes sence...\n";
68
69 timelocal(0,0,1,1,0,90) - timelocal(0,0,0,1,0,90) == 3600
70   or print "not ";
71 print "ok ", $count++, "\n";
72
73 timelocal(1,2,3,1,0,100) - timelocal(1,2,3,31,11,99) == 24 * 3600 
74   or print "not ";
75 print "ok ", $count++, "\n";
76
77 # Diff beween Jan 1, 1970 and Mar 1, 1970 = (31 + 28 = 59 days)
78 timegm(0,0,0, 1, 2, 70) - timegm(0,0,0, 1, 0, 70) == 59 * 24 * 3600
79   or print "not ";
80 print "ok ", $count++, "\n";
81
82
83 #print "Testing timelocal.pl module too...\n";
84 package test;
85 require 'timelocal.pl';
86 timegm(0,0,0,1,0,70) == main::timegm(0,0,0,1,0,70) or print "not ";
87 print "ok ", $main::count++, "\n";
88
89 timelocal(1,2,3,4,5,78) == main::timelocal(1,2,3,4,5,78) or print "not ";
90 print "ok ", $main::count++, "\n";