From e718cfd09d672b13ba5ab2f806b298434e5c3206 Mon Sep 17 00:00:00 2001 From: Daniel Convissor Date: Fri, 11 Feb 2011 01:33:45 +0000 Subject: [PATCH] Add DateInterval format() tests. --- ext/date/tests/DateInterval_format.phpt | 70 +++++++++++++++++++++++ ext/date/tests/DateInterval_format_a.phpt | 22 +++++++ 2 files changed, 92 insertions(+) create mode 100644 ext/date/tests/DateInterval_format.phpt create mode 100644 ext/date/tests/DateInterval_format_a.phpt diff --git a/ext/date/tests/DateInterval_format.phpt b/ext/date/tests/DateInterval_format.phpt new file mode 100644 index 0000000000..8088a0aa7c --- /dev/null +++ b/ext/date/tests/DateInterval_format.phpt @@ -0,0 +1,70 @@ +--TEST-- +DateInterval::format(), except %a +--DESCRIPTION-- +%a is covered in a separate test. +Don't want an XFAIL here to cause confusion if a real bug comes up. +--CREDITS-- +Daniel Convissor +# TestFest 2010 BKTK +--SKIPIF-- + +--FILE-- +diff($date2); + +echo $interval->format('Y=%Y') . "\n"; +echo $interval->format('M=%M') . "\n"; +echo $interval->format('D=%D') . "\n"; +echo $interval->format('H=%H') . "\n"; +echo $interval->format('I=%I') . "\n"; +echo $interval->format('S=%S') . "\n"; +echo $interval->format('R=%R') . "\n"; + +echo $interval->format('y=%y') . "\n"; +echo $interval->format('m=%m') . "\n"; +echo $interval->format('d=%d') . "\n"; +echo $interval->format('h=%h') . "\n"; +echo $interval->format('i=%i') . "\n"; +echo $interval->format('s=%s') . "\n"; +echo $interval->format('r=%r') . "\n"; + +echo "\n"; + +$interval = $date2->diff($date1); + +echo $interval->format('inverted R=%R') . "\n"; +echo $interval->format('inverted r=%r') . "\n"; + +echo "\n"; + +echo $interval->format('%=%%') . "\n"; + +// Invalid valid format character does not raise warnings. +echo $interval->format('x=%x') . "\n"; + +?> +--EXPECT-- +Y=01 +M=02 +D=03 +H=04 +I=05 +S=06 +R=+ +y=1 +m=2 +d=3 +h=4 +i=5 +s=6 +r= + +inverted R=- +inverted r=- + +%=% +x=%x diff --git a/ext/date/tests/DateInterval_format_a.phpt b/ext/date/tests/DateInterval_format_a.phpt new file mode 100644 index 0000000000..f82a2f6f6d --- /dev/null +++ b/ext/date/tests/DateInterval_format_a.phpt @@ -0,0 +1,22 @@ +--TEST-- +DateInterval::format(), %a +--CREDITS-- +Daniel Convissor +# TestFest 2010 BKTK +--SKIPIF-- + +--XFAIL-- +Windows VC6 libs' floor()/ceil() choke on floats +--FILE-- +diff($date2); + +echo $interval->format('a=%a') . "\n"; + +?> +--EXPECT-- +a=428 -- 2.40.0