Annotation of embedaddon/php/ext/mbstring/tests/mb_strripos_variation3_Bug45923.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test mb_strripos() function : usage variations - pass different data types as $offset arg
        !             3: --SKIPIF--
        !             4: <?php
        !             5: extension_loaded('mbstring') or die('skip');
        !             6: function_exists('mb_strripos') or die("skip mb_strripos() is not available in this build");
        !             7: ?>
        !             8: --FILE--
        !             9: <?php
        !            10: /* Prototype  : int mb_strripos(string haystack, string needle [, int offset [, string encoding]])
        !            11:  * Description: Finds position of last occurrence of a string within another, case insensitive 
        !            12:  * Source code: ext/mbstring/mbstring.c
        !            13:  * Alias to functions: 
        !            14:  */
        !            15: 
        !            16: /*
        !            17:  * Pass mb_strripos different data types as $offset arg to test behaviour
        !            18:  */
        !            19: 
        !            20: echo "*** Testing mb_strripos() : usage variations ***\n";
        !            21: 
        !            22: // Initialise function arguments not being substituted
        !            23: $needle = b'A';
        !            24: $haystack = b'string_val';
        !            25: $encoding = 'utf-8';
        !            26: 
        !            27: //get an unset variable
        !            28: $unset_var = 10;
        !            29: unset ($unset_var);
        !            30: 
        !            31: // get a class
        !            32: class classA
        !            33: {
        !            34:   public function __toString() {
        !            35:     return b"Class A object";
        !            36:   }
        !            37: }
        !            38: 
        !            39: // heredoc string
        !            40: $heredoc = b<<<EOT
        !            41: hello world
        !            42: EOT;
        !            43: 
        !            44: // get a resource variable
        !            45: $fp = fopen(__FILE__, "r");
        !            46: 
        !            47: // unexpected values to be passed to $offest argument
        !            48: $inputs = array(
        !            49: 
        !            50:        // int data
        !            51: /*1*/  0,
        !            52:        1,
        !            53:        12345,
        !            54:        -2345,
        !            55: 
        !            56:        // float data
        !            57: /*5*/  12.5,
        !            58:        -12.5,
        !            59:        12.3456789000e10,
        !            60:        12.3456789000E-10,
        !            61:        .5,
        !            62: 
        !            63:        // null data
        !            64: /*10*/ NULL,
        !            65:        null,
        !            66: 
        !            67:        // boolean data
        !            68: /*12*/ true,
        !            69:        false,
        !            70:        TRUE,
        !            71:        FALSE,
        !            72:        
        !            73:        // empty data
        !            74: /*16*/ "",
        !            75:        '',
        !            76: 
        !            77:        // string data
        !            78: /*18*/ b"string",
        !            79:        b'string',
        !            80:        $heredoc,
        !            81:        
        !            82:        // object data
        !            83: /*21*/ new classA(),
        !            84: 
        !            85:        // undefined data
        !            86: /*22*/ @$undefined_var,
        !            87: 
        !            88:        // unset data
        !            89: /*23*/ @$unset_var,
        !            90: 
        !            91:        // resource variable
        !            92: /*24*/ $fp
        !            93: );
        !            94: 
        !            95: // loop through each element of $inputs to check the behavior of mb_strripos()
        !            96: $iterator = 1;
        !            97: foreach($inputs as $input) {
        !            98:   echo "\n-- Iteration $iterator --\n";
        !            99:   var_dump( mb_strripos($haystack, $needle, $input, $encoding));
        !           100:   $iterator++;
        !           101: };
        !           102: 
        !           103: fclose($fp);
        !           104: 
        !           105: echo "Done";
        !           106: ?>
        !           107: --EXPECTF--
        !           108: *** Testing mb_strripos() : usage variations ***
        !           109: 
        !           110: -- Iteration 1 --
        !           111: int(8)
        !           112: 
        !           113: -- Iteration 2 --
        !           114: int(8)
        !           115: 
        !           116: -- Iteration 3 --
        !           117: 
        !           118: Warning: mb_strripos(): Offset is greater than the length of haystack string in %s on line %d
        !           119: bool(false)
        !           120: 
        !           121: -- Iteration 4 --
        !           122: 
        !           123: Warning: mb_strripos(): Offset is greater than the length of haystack string in %s on line %d
        !           124: bool(false)
        !           125: 
        !           126: -- Iteration 5 --
        !           127: 
        !           128: Warning: mb_strripos(): Offset is greater than the length of haystack string in %s on line %d
        !           129: bool(false)
        !           130: 
        !           131: -- Iteration 6 --
        !           132: 
        !           133: Warning: mb_strripos(): Offset is greater than the length of haystack string in %s on line %d
        !           134: bool(false)
        !           135: 
        !           136: -- Iteration 7 --
        !           137: 
        !           138: Warning: mb_strripos(): Offset is greater than the length of haystack string in %s on line %d
        !           139: bool(false)
        !           140: 
        !           141: -- Iteration 8 --
        !           142: int(8)
        !           143: 
        !           144: -- Iteration 9 --
        !           145: int(8)
        !           146: 
        !           147: -- Iteration 10 --
        !           148: int(8)
        !           149: 
        !           150: -- Iteration 11 --
        !           151: int(8)
        !           152: 
        !           153: -- Iteration 12 --
        !           154: int(8)
        !           155: 
        !           156: -- Iteration 13 --
        !           157: int(8)
        !           158: 
        !           159: -- Iteration 14 --
        !           160: int(8)
        !           161: 
        !           162: -- Iteration 15 --
        !           163: int(8)
        !           164: 
        !           165: -- Iteration 16 --
        !           166: 
        !           167: Warning: mb_strripos() expects parameter 3 to be long, string given in %s on line %d
        !           168: bool(false)
        !           169: 
        !           170: -- Iteration 17 --
        !           171: 
        !           172: Warning: mb_strripos() expects parameter 3 to be long, string given in %s on line %d
        !           173: bool(false)
        !           174: 
        !           175: -- Iteration 18 --
        !           176: 
        !           177: Warning: mb_strripos() expects parameter 3 to be long, string given in %s on line %d
        !           178: bool(false)
        !           179: 
        !           180: -- Iteration 19 --
        !           181: 
        !           182: Warning: mb_strripos() expects parameter 3 to be long, string given in %s on line %d
        !           183: bool(false)
        !           184: 
        !           185: -- Iteration 20 --
        !           186: 
        !           187: Warning: mb_strripos() expects parameter 3 to be long, string given in %s on line %d
        !           188: bool(false)
        !           189: 
        !           190: -- Iteration 21 --
        !           191: 
        !           192: Warning: mb_strripos() expects parameter 3 to be long, object given in %s on line %d
        !           193: bool(false)
        !           194: 
        !           195: -- Iteration 22 --
        !           196: int(8)
        !           197: 
        !           198: -- Iteration 23 --
        !           199: int(8)
        !           200: 
        !           201: -- Iteration 24 --
        !           202: 
        !           203: Warning: mb_strripos() expects parameter 3 to be long, resource given in %s on line %d
        !           204: bool(false)
        !           205: Done
        !           206: 

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