[PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt branches/PHP_5_3/ext/date/tests/bug55253.phpt branches/PHP_5_4/ext/date/tests/bug.add.zone2.phpt branches/PHP_5_4/ext/da

2011-07-20 Thread Daniel Convissor
danielc  Wed, 20 Jul 2011 18:24:14 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=313484

Log:
Rename and enhance test for bug 55253 now that bugs web is up.

Bug: https://bugs.php.net/55253 (Open) DateTime::add() and sub() result -1 hour 
on objects with time zone type 2
  
Changed paths:
D   php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt
A + php/php-src/branches/PHP_5_3/ext/date/tests/bug55253.phpt
(from 
php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt:r312286)
D   php/php-src/branches/PHP_5_4/ext/date/tests/bug.add.zone2.phpt
A + php/php-src/branches/PHP_5_4/ext/date/tests/bug55253.phpt
(from 
php/php-src/branches/PHP_5_4/ext/date/tests/bug.add.zone2.phpt:r313482)
D   php/php-src/trunk/ext/date/tests/bug.add.zone2.phpt
A + php/php-src/trunk/ext/date/tests/bug55253.phpt
(from php/php-src/trunk/ext/date/tests/bug.add.zone2.phpt:r312289)

Deleted: php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt
===
--- php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt	2011-07-20 17:40:18 UTC (rev 313483)
+++ php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt	2011-07-20 18:24:14 UTC (rev 313484)
@@ -1,33 +0,0 @@
---TEST--
-DateTime::add() mistakenly modifies objects having zone type 2
---CREDITS--
-Daniel Convissor dani...@php.net
---XFAIL--
-Bug exists
---FILE--
-?php
-
-date_default_timezone_set('America/New_York');
-
-$interval = new DateInterval('PT2H1M');
-
-$date3 = new DateTime('2010-10-04 02:18:48');
-$date2 = new DateTime('2010-10-04 02:18:48 EDT');
-
-echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
-echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
-
-echo $interval-format('Add %h hours %i minutes') . \n;
-$date3-add($interval);
-$date2-add($interval);
-
-echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
-echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
-
-?
---EXPECT--
-Zone Type 3: 2010-10-04 02:18:48 EDT
-Zone Type 2: 2010-10-04 02:18:48 EDT
-Add 2 hours 1 minutes
-Zone Type 3: 2010-10-04 04:19:48 EDT
-Zone Type 2: 2010-10-04 04:19:48 EDT

Copied: php/php-src/branches/PHP_5_3/ext/date/tests/bug55253.phpt (from rev 312286, php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt)
===
--- php/php-src/branches/PHP_5_3/ext/date/tests/bug55253.phpt	(rev 0)
+++ php/php-src/branches/PHP_5_3/ext/date/tests/bug55253.phpt	2011-07-20 18:24:14 UTC (rev 313484)
@@ -0,0 +1,47 @@
+--TEST--
+DateTime::add() and sub() result -1 hour on objects with time zone type 2
+--CREDITS--
+Daniel Convissor dani...@php.net
+--XFAIL--
+Bug 55253 exists
+--FILE--
+?php
+
+date_default_timezone_set('America/New_York');
+
+$interval = new DateInterval('PT2H1M');
+
+$date3 = new DateTime('2010-10-04 02:18:48');
+$date2 = new DateTime('2010-10-04 02:18:48 EDT');
+
+echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
+echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
+
+echo $interval-format('Add %h hours %i minutes') . \n;
+$date3-add($interval);
+$date2-add($interval);
+
+echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
+echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
+
+// Try subtracting from expected result.
+$date3 = new DateTime('2010-10-04 04:19:48');
+$date2 = new DateTime('2010-10-04 04:19:48 EDT');
+
+echo $interval-format('Subtract %h hours %i minutes from expected') . \n;
+$date3-sub($interval);
+$date2-sub($interval);
+
+echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
+echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
+
+?
+--EXPECT--
+Zone Type 3: 2010-10-04 02:18:48 EDT
+Zone Type 2: 2010-10-04 02:18:48 EDT
+Add 2 hours 1 minutes
+Zone Type 3: 2010-10-04 04:19:48 EDT
+Zone Type 2: 2010-10-04 04:19:48 EDT
+Subtract 2 hours 1 minutes from expected
+Zone Type 3: 2010-10-04 02:18:48 EDT
+Zone Type 2: 2010-10-04 02:18:48 EDT

Deleted: php/php-src/branches/PHP_5_4/ext/date/tests/bug.add.zone2.phpt
===
--- php/php-src/branches/PHP_5_4/ext/date/tests/bug.add.zone2.phpt	2011-07-20 17:40:18 UTC (rev 313483)
+++ php/php-src/branches/PHP_5_4/ext/date/tests/bug.add.zone2.phpt	2011-07-20 18:24:14 UTC (rev 313484)
@@ -1,33 +0,0 @@
---TEST--
-DateTime::add() mistakenly modifies objects having zone type 2
---CREDITS--
-Daniel Convissor dani...@php.net
---XFAIL--
-Bug exists
---FILE--
-?php
-
-date_default_timezone_set('America/New_York');
-
-$interval = new DateInterval('PT2H1M');
-
-$date3 = new DateTime('2010-10-04 02:18:48');
-$date2 = new DateTime('2010-10-04 02:18:48 EDT');
-
-echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
-echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
-
-echo $interval-format('Add %h hours %i minutes') . 

[PHP-CVS] svn: /php/php-src/branches/PHP_5_3/ext/date/tests/ bug.add.zone2.phpt

2011-06-17 Thread Daniel Convissor
danielc  Sat, 18 Jun 2011 01:00:56 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=312248

Log:
Provide test for DateTime::add() issue (for discussion on internals, 
bugs.php.net is down).

Changed paths:
A   php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt

Added: php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt
===
--- php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt  
(rev 0)
+++ php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt  
2011-06-18 01:00:56 UTC (rev 312248)
@@ -0,0 +1,33 @@
+--TEST--
+DateTime::add() mistakenly modifies objects having zone type 2
+--CREDITS--
+Daniel Convissor dani...@php.net
+--XFAIL--
+Bug exists
+--FILE--
+?php
+
+date_default_timezone_set('America/New_York');
+
+$interval = new DateInterval('PT2H1M');
+
+$date3 = new DateTime('2010-10-04 02:18:48');
+$date2 = new DateTime('2010-10-04 02:18:48 EDT');
+
+echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
+echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
+
+echo $interval-format('Add %h hours %i minutes') . \n;
+$date3-add($interval);
+$date2-add($interval);
+
+echo 'Zone Type 3: ' . $date3-format('Y-m-d H:i:s T') . \n;
+echo 'Zone Type 2: ' . $date2-format('Y-m-d H:i:s T') . \n;
+
+?
+--EXPECT--
+Zone Type 3: 2010-10-04 02:18:48 EDT
+Zone Type 2: 2010-10-04 02:18:48 EDT
+Add 2 hours 1 minutes
+Zone Type 3: 2010-10-04 04:19:48 EDT
+Zone Type 2: 2010-10-04 04:19:48 EDT


Property changes on: 
php/php-src/branches/PHP_5_3/ext/date/tests/bug.add.zone2.phpt
___
Added: svn:executable
   + *

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php