File: orig.eventslist.t

package info (click to toggle)
libdate-manip-perl 6.83-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,264 kB
  • sloc: perl: 245,655; sh: 54; makefile: 11
file content (111 lines) | stat: -rwxr-xr-x 1,769 bytes parent folder | download | duplicates (3)
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
102
103
104
105
106
107
108
109
110
111
#!/usr/bin/perl

use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests.pl";

sub test {
   my $ref = Events_List(@_);

   if (ref($ref) eq "ARRAY") {
      my @ret = ();
      my @tmp = @$ref;
      while (@tmp) {
         my $v = shift(@tmp);
         if (ref($v) eq "ARRAY") {
            unshift(@tmp,@$v);
         } else {
            push(@ret,$v);
         }
      }
      return @ret;
   }

   if (ref($ref) eq "HASH") {
      my @ret = ();
      foreach my $key (sort keys %$ref) {
         push(@ret,$key,$$ref{$key});
      }
      return @ret;
   }

   return ();
}

Date_Init("ForceDate=1997-03-08-12:30:00,America/New_York");
Date_Init("ConfigFile=OldEvents.cnf");

my $tests ="

2000-02-01 =>
   2000020100:00:00
   Event1
   Winter

2000-04-01 =>
   2000040100:00:00
   Spring

2000-04-01 0 =>
   2000040100:00:00
   Spring
   2000040112:00:00
   Event3
   Spring
   2000040113:00:00
   Spring

'2000-04-01 12:30' =>
   2000040112:30:00
   Event3
   Spring

'2000-04-01 13:30' =>
   2000040113:30:00
   Spring

2000-03-15 2000-04-10 =>
   2000031500:00:00
   Winter
   2000032200:00:00
   Spring
   2000040112:00:00
   Event3
   Spring
   2000040113:00:00
   Spring

2000-03-15 2000-04-10 1 =>
   Event3
   0:0:0:0:1:0:0
   Spring
   0:0:0:0:455:0:0
   Winter
   0:0:0:0:168:0:0

2000-03-15 2000-04-10 2 =>
   Event3+Spring
   0:0:0:0:1:0:0
   Spring
   0:0:0:0:454:0:0
   Winter
   0:0:0:0:168:0:0

";

$::ti->tests(func  => \&test,
             tests => $tests);
$::ti->done_testing();

#Local Variables:
#mode: cperl
#indent-tabs-mode: nil
#cperl-indent-level: 3
#cperl-continued-statement-offset: 2
#cperl-continued-brace-offset: 0
#cperl-brace-offset: 0
#cperl-brace-imaginary-offset: 0
#cperl-label-offset: 0
#End: