Annotation of embedaddon/php/ext/xml/tests/utf8_decode_error.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test utf8_decode() function : error conditions 
                      3: --SKIPIF--
                      4: <?php 
                      5: if (!extension_loaded("xml")) {
                      6:        print "skip - XML extension not loaded"; 
                      7: }       
                      8: ?>
                      9: --FILE--
                     10: <?php
                     11: /* Prototype  : proto string utf8_decode(string data)
                     12:  * Description: Converts a UTF-8 encoded string to ISO-8859-1 
                     13:  * Source code: ext/xml/xml.c
                     14:  * Alias to functions: 
                     15:  */
                     16: 
                     17: echo "*** Testing utf8_decode() : error conditions ***\n";
                     18: 
                     19: // Zero arguments
                     20: echo "\n-- Testing utf8_decode() function with Zero arguments --\n";
                     21: var_dump( utf8_decode() );
                     22: 
                     23: //Test utf8_decode with one more than the expected number of arguments
                     24: echo "\n-- Testing utf8_decode() function with more than expected no. of arguments --\n";
                     25: $data = 'string_val';
                     26: $extra_arg = 10;
                     27: var_dump( utf8_decode($data, $extra_arg) );
                     28: 
                     29: echo "Done";
                     30: ?>
                     31: --EXPECTF--
                     32: *** Testing utf8_decode() : error conditions ***
                     33: 
                     34: -- Testing utf8_decode() function with Zero arguments --
                     35: 
                     36: Warning: utf8_decode() expects exactly 1 parameter, 0 given in %s on line %d
                     37: NULL
                     38: 
                     39: -- Testing utf8_decode() function with more than expected no. of arguments --
                     40: 
                     41: Warning: utf8_decode() expects exactly 1 parameter, 2 given in %s on line %d
                     42: NULL
                     43: Done
                     44: 

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