Annotation of embedaddon/php/ext/date/tests/DateTime_setTimezone_variation1.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test DateTime::setTimezone() function : usage variation - Passing unexpected values to first argument $timezone.
                      3: --FILE--
                      4: <?php
                      5: /* Prototype  : public DateTime DateTime::setTimezone  ( DateTimeZone $timezone  )
                      6:  * Description: Sets the time zone for the DateTime object
                      7:  * Source code: ext/date/php_date.c
                      8:  * Alias to functions: date_timezone_set
                      9:  */
                     10: 
                     11: echo "*** Testing DateTime::setTimezone() : usage variation -  unexpected values to first argument \$timezone***\n";
                     12: 
                     13: //Set the default time zone 
                     14: date_default_timezone_set("Europe/London");
                     15: 
                     16: //get an unset variable
                     17: $unset_var = 10;
                     18: unset ($unset_var);
                     19: 
                     20: // define some classes
                     21: class classWithToString
                     22: {
                     23:        public function __toString() {
                     24:                return "Class A object";
                     25:        }
                     26: }
                     27: 
                     28: class classWithoutToString
                     29: {
                     30: }
                     31: 
                     32: // heredoc string
                     33: $heredoc = <<<EOT
                     34: hello world
                     35: EOT;
                     36: 
                     37: // add arrays
                     38: $index_array = array (1, 2, 3);
                     39: $assoc_array = array ('one' => 1, 'two' => 2);
                     40: 
                     41: // resource
                     42: $file_handle = fopen(__FILE__, 'r');
                     43: 
                     44: //array of values to iterate over
                     45: $inputs = array(
                     46: 
                     47:       // int data
                     48:       'int 0' => 0,
                     49:       'int 1' => 1,
                     50:       'int 12345' => 12345,
                     51:       'int -12345' => -12345,
                     52: 
                     53:       // float data
                     54:       'float 10.5' => 10.5,
                     55:       'float -10.5' => -10.5,
                     56:       'float .5' => .5,
                     57: 
                     58:       // array data
                     59:       'empty array' => array(),
                     60:       'int indexed array' => $index_array,
                     61:       'associative array' => $assoc_array,
                     62:       'nested arrays' => array('foo', $index_array, $assoc_array),
                     63: 
                     64:       // null data
                     65:       'uppercase NULL' => NULL,
                     66:       'lowercase null' => null,
                     67: 
                     68:       // boolean data
                     69:       'lowercase true' => true,
                     70:       'lowercase false' =>false,
                     71:       'uppercase TRUE' =>TRUE,
                     72:       'uppercase FALSE' =>FALSE,
                     73: 
                     74:       // empty data
                     75:       'empty string DQ' => "",
                     76:       'empty string SQ' => '',
                     77: 
                     78:       // string data
                     79:       'string DQ' => "string",
                     80:       'string SQ' => 'string',
                     81:       'mixed case string' => "sTrInG",
                     82:       'heredoc' => $heredoc,
                     83: 
                     84:       // object data
                     85:       'instance of classWithToString' => new classWithToString(),
                     86:       'instance of classWithoutToString' => new classWithoutToString(),
                     87: 
                     88:       // undefined data
                     89:       'undefined var' => @$undefined_var,
                     90: 
                     91:       // unset data
                     92:       'unset var' => @$unset_var,
                     93:       
                     94:       // resource 
                     95:       'resource' => $file_handle
                     96: );
                     97: 
                     98: $object = new DateTime("2009-01-30 17:57:32");
                     99: 
                    100: foreach($inputs as $variation =>$timezone) {
                    101:       echo "\n-- $variation --\n";
                    102:       var_dump( $object->setTimezone($timezone) );
                    103: };
                    104: 
                    105: // closing the resource
                    106: fclose( $file_handle );
                    107: 
                    108: ?>
                    109: ===DONE===
                    110: --EXPECTF--
                    111: *** Testing DateTime::setTimezone() : usage variation -  unexpected values to first argument $timezone***
                    112: 
                    113: -- int 0 --
                    114: 
                    115: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, integer given in %s on line %d
                    116: bool(false)
                    117: 
                    118: -- int 1 --
                    119: 
                    120: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, integer given in %s on line %d
                    121: bool(false)
                    122: 
                    123: -- int 12345 --
                    124: 
                    125: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, integer given in %s on line %d
                    126: bool(false)
                    127: 
                    128: -- int -12345 --
                    129: 
                    130: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, integer given in %s on line %d
                    131: bool(false)
                    132: 
                    133: -- float 10.5 --
                    134: 
                    135: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, double given in %s on line %d
                    136: bool(false)
                    137: 
                    138: -- float -10.5 --
                    139: 
                    140: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, double given in %s on line %d
                    141: bool(false)
                    142: 
                    143: -- float .5 --
                    144: 
                    145: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, double given in %s on line %d
                    146: bool(false)
                    147: 
                    148: -- empty array --
                    149: 
                    150: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, array given in %s on line %d
                    151: bool(false)
                    152: 
                    153: -- int indexed array --
                    154: 
                    155: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, array given in %s on line %d
                    156: bool(false)
                    157: 
                    158: -- associative array --
                    159: 
                    160: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, array given in %s on line %d
                    161: bool(false)
                    162: 
                    163: -- nested arrays --
                    164: 
                    165: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, array given in %s on line %d
                    166: bool(false)
                    167: 
                    168: -- uppercase NULL --
                    169: 
                    170: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, null given in %s on line %d
                    171: bool(false)
                    172: 
                    173: -- lowercase null --
                    174: 
                    175: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, null given in %s on line %d
                    176: bool(false)
                    177: 
                    178: -- lowercase true --
                    179: 
                    180: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, boolean given in %s on line %d
                    181: bool(false)
                    182: 
                    183: -- lowercase false --
                    184: 
                    185: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, boolean given in %s on line %d
                    186: bool(false)
                    187: 
                    188: -- uppercase TRUE --
                    189: 
                    190: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, boolean given in %s on line %d
                    191: bool(false)
                    192: 
                    193: -- uppercase FALSE --
                    194: 
                    195: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, boolean given in %s on line %d
                    196: bool(false)
                    197: 
                    198: -- empty string DQ --
                    199: 
                    200: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, string given in %s on line %d
                    201: bool(false)
                    202: 
                    203: -- empty string SQ --
                    204: 
                    205: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, string given in %s on line %d
                    206: bool(false)
                    207: 
                    208: -- string DQ --
                    209: 
                    210: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, string given in %s on line %d
                    211: bool(false)
                    212: 
                    213: -- string SQ --
                    214: 
                    215: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, string given in %s on line %d
                    216: bool(false)
                    217: 
                    218: -- mixed case string --
                    219: 
                    220: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, string given in %s on line %d
                    221: bool(false)
                    222: 
                    223: -- heredoc --
                    224: 
                    225: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, string given in %s on line %d
                    226: bool(false)
                    227: 
                    228: -- instance of classWithToString --
                    229: 
                    230: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, object given in %s on line %d
                    231: bool(false)
                    232: 
                    233: -- instance of classWithoutToString --
                    234: 
                    235: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, object given in %s on line %d
                    236: bool(false)
                    237: 
                    238: -- undefined var --
                    239: 
                    240: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, null given in %s on line %d
                    241: bool(false)
                    242: 
                    243: -- unset var --
                    244: 
                    245: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, null given in %s on line %d
                    246: bool(false)
                    247: 
                    248: -- resource --
                    249: 
                    250: Warning: DateTime::setTimezone() expects parameter 1 to be DateTimeZone, resource given in %s on line %d
                    251: bool(false)
                    252: ===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>