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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests.pl";
$ENV{'TZ'} = 'America/Chicago';
our %obj = ();
our %dmb = ();
our %dmt = ();
sub test {
my($label,$op,@args)=@_;
my $new;
if ($op eq 'new') {
my($type,@a) = @args;
if (@a && exists $obj{$a[0]}) {
my $o = $obj{$a[0]};
shift(@a);
unshift(@a,$o);
}
if ($type eq 'Base') {
$new = new Date::Manip::Base @a;
} elsif ($type eq 'TZ') {
$new = new Date::Manip::TZ @a;
} elsif ($type eq 'Date') {
$new = new Date::Manip::Date @a;
} elsif ($type eq 'Delta') {
$new = new Date::Manip::Delta @a;
} elsif ($type eq 'Recur') {
$new = new Date::Manip::Recur @a;
}
} elsif ($op eq 'new_config') {
my $o = $obj{$args[0]};
shift(@args);
$new = $o->new_config(@args);
} elsif ($op eq 'base') {
my $o = $obj{$args[0]};
shift(@args);
$new = $o->base(@args);
} elsif ($op eq 'tz') {
my $o = $obj{$args[0]};
shift(@args);
$new = $o->tz(@args);
} elsif ($op eq 'config') {
my $o = $obj{$args[0]};
shift(@args);
$o->config(@args);
return (0);
} elsif ($op eq 'get_config') {
my $o = $obj{$args[0]};
shift(@args);
my @ret = $o->get_config(@args);
if (@ret > 3) {
@ret = @ret[0..2];
}
return @ret;
} elsif (exists $obj{$op}) {
my $o = $obj{$op};
$new = $o->new(@args);
}
if (! defined $new) {
return (undef);
}
my($dmb,$dmt);
if (ref($new) eq 'Date::Manip::Base') {
$dmb = $new;
$dmt = '---';
} elsif (ref($new) eq 'Date::Manip::TZ') {
$dmb = $new->base();
$dmt = $new;
} else {
$dmb = $new->base();
$dmt = $new->tz();
}
$obj{$label} = $new;
my @ret;
@ret = (ref($new));
if (! exists $dmb{$dmb}) {
$dmb{$dmb} = $label;
}
push(@ret,$dmb{$dmb});
if ($dmt eq '---') {
push(@ret,$dmt);
} else {
if (! exists $dmt{$dmt}) {
$dmt{$dmt} = $label;
}
push(@ret,$dmt{$dmt});
}
return @ret;
}
my $tests="
### new CLASS
o0001 new Base
=>
Date::Manip::Base
o0001
---
o0002 new TZ
=>
Date::Manip::TZ
o0002
o0002
o0003 new Date
=>
Date::Manip::Date
o0003
o0003
o0004 new Delta
=>
Date::Manip::Delta
o0004
o0004
o0005 new Recur
=>
Date::Manip::Recur
o0005
o0005
### OBJ->new
o0006 o0001
=>
Date::Manip::Base
o0006
---
o0007 o0002
=>
Date::Manip::TZ
o0002
o0007
o0008 o0003
=>
Date::Manip::Date
o0003
o0003
o0009 o0004
=>
Date::Manip::Delta
o0004
o0004
o0010 o0005
=>
Date::Manip::Recur
o0005
o0005
### new CLASS OBJ
o0011 new Base o0001
=>
Date::Manip::Base
o0011
---
o0012 new Date o0001
=>
Date::Manip::Date
o0001
o0012
o0013 new Date o0002
=>
Date::Manip::Date
o0002
o0002
### new_config
o0014 new_config o0001
=>
Date::Manip::Base
o0014
---
o0015 new_config o0002
=>
Date::Manip::TZ
o0015
o0015
o0016 new_config o0003
=>
Date::Manip::Date
o0016
o0016
o0017 new_config o0004
=>
Date::Manip::Delta
o0017
o0017
o0018 new_config o0005
=>
Date::Manip::Recur
o0018
o0018
o0019 new_config o0003 now
=>
Date::Manip::Date
o0019
o0019
o0020 new_config o0003 [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0020
o0020
o0021 new_config o0003 now [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0021
o0021
### base/tz
o0022 base o0001
=>
__undef__
o0023 base o0002
=>
Date::Manip::Base
o0002
---
o0024 base o0003
=>
Date::Manip::Base
o0003
---
o0022 tz o0001
=>
__undef__
o0023 tz o0002
=>
__undef__
o0024 tz o0003
=>
Date::Manip::TZ
o0003
o0003
### misc
o0100 new Date now noiso8601
=>
Date::Manip::Date
o0100
o0100
o0101 new Date now [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0101
o0101
o0102 new Date now noiso8601 [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0102
o0102
o0103 new Date o0102 now noiso8601
=>
Date::Manip::Date
o0102
o0102
o0104 new Date o0102 now [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0104
o0104
o0105 new Date o0102 now noiso8601 [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0105
o0105
o0106 new TZ [ forcedate now,America/New_York ]
=>
Date::Manip::TZ
o0106
o0106
o0107 new TZ o0102 [ forcedate now,America/New_York ]
=>
Date::Manip::TZ
o0107
o0107
o0108 new Date o0101 now noiso8601 [ forcedate now,America/New_York ]
=>
Date::Manip::Date
o0108
o0108
o0109 new Base o0101 [ defaults 1 ]
=>
Date::Manip::Base
o0109
---
### config/get_config
- get_config o0001 yytoyyyy => 89
- config o0001 yytoyyyy c18 => 0
- get_config o0001 yytoyyyy => c18
- get_config o0002 yytoyyyy => 89
- config o0002 yytoyyyy c18 => 0
- get_config o0002 yytoyyyy => c18
- get_config o0003 yytoyyyy => 89
- config o0003 yytoyyyy c18 => 0
- get_config o0003 yytoyyyy => c18
- get_config o0004 yytoyyyy defaulttime => 89 midnight
- get_config o0004 => dateformat defaults defaulttime
";
$::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:
|