1--TEST-- 2gmp_export() basic tests 3--SKIPIF-- 4<?php if (!extension_loaded("gmp")) echo "skip"; ?> 5--FILE-- 6<?php 7 8// Tests taken from GMPs own test suite. 9 10// format is [output, size, options, expected] 11$export = [ 12 ['0',1,GMP_BIG_ENDIAN,''], 13 ['0',2,GMP_BIG_ENDIAN,''], 14 ['0',3,GMP_BIG_ENDIAN,''], 15 ['12345678',1,GMP_BIG_ENDIAN,'12345678'], 16 ['12345678',4,GMP_BIG_ENDIAN,'12345678'], 17 ['12345678',4,GMP_LSW_FIRST | GMP_BIG_ENDIAN,'12345678'], 18 ['12345678',1,GMP_LSW_FIRST | GMP_LITTLE_ENDIAN,'78563412'], 19 ['12345678',4,GMP_LITTLE_ENDIAN,'78563412'], 20 ['12345678',4,GMP_LSW_FIRST | GMP_LITTLE_ENDIAN,'78563412'], 21 ['123456789ABC',2,GMP_BIG_ENDIAN,'123456789abc'], 22 ['123456789ABC',2,GMP_LSW_FIRST | GMP_BIG_ENDIAN,'9abc56781234'], 23 ['123456789ABC',2,GMP_LITTLE_ENDIAN,'34127856bc9a'], 24 ['123456789ABC',2,GMP_LSW_FIRST | GMP_LITTLE_ENDIAN,'bc9a78563412'], 25 ['112233445566778899AABBCC',4,GMP_BIG_ENDIAN,'112233445566778899aabbcc'], 26 ['112233445566778899AABBCC',4,GMP_LSW_FIRST | GMP_BIG_ENDIAN,'99aabbcc5566778811223344'], 27 ['112233445566778899AABBCC',4,GMP_LITTLE_ENDIAN,'4433221188776655ccbbaa99'], 28 ['112233445566778899AABBCC',4,GMP_LSW_FIRST | GMP_LITTLE_ENDIAN,'ccbbaa998877665544332211'], 29 ['100120023003400450056006700780089009A00AB00BC00C',8,GMP_BIG_ENDIAN,'100120023003400450056006700780089009a00ab00bc00c'], 30 ['100120023003400450056006700780089009A00AB00BC00C',8,GMP_LSW_FIRST | GMP_BIG_ENDIAN,'9009a00ab00bc00c50056006700780081001200230034004'], 31 ['100120023003400450056006700780089009A00AB00BC00C',8,GMP_LITTLE_ENDIAN,'044003300220011008800770066005500cc00bb00aa00990'], 32 ['100120023003400450056006700780089009A00AB00BC00C',8,GMP_LSW_FIRST | GMP_LITTLE_ENDIAN,'0cc00bb00aa0099008800770066005500440033002200110'] 33]; 34 35$passed = true; 36foreach ($export as $k => $test) { 37 $gmp = gmp_init($test[0], 16); 38 $str = gmp_export($gmp, $test[1], $test[2]); 39 if (is_string($str)) { 40 $result = bin2hex($str); 41 if ($result !== $test[3]) { 42 echo "$k: '$result' !== '{$test[3]}'\n"; 43 $passed = false; 44 } 45 } else { 46 $type = gettype($str); 47 echo "$k: $type !== '{$test[3]}'\n"; 48 } 49} 50 51var_dump($passed); 52 53// Invalid arguments (zpp failure) 54var_dump(gmp_export()); 55 56// Invalid word sizes 57var_dump(gmp_export(123, -1)); 58var_dump(gmp_export(123, 0)); 59 60// Invalid options 61var_dump(gmp_export(123, 1, GMP_MSW_FIRST | GMP_LSW_FIRST)); 62var_dump(gmp_export(123, 1, GMP_BIG_ENDIAN | GMP_LITTLE_ENDIAN)); 63--EXPECTF-- 64bool(true) 65 66Warning: gmp_export() expects at least 1 parameter, 0 given in %s on line %d 67NULL 68 69Warning: gmp_export(): Word size must be positive, -1 given in %s on line %d 70bool(false) 71 72Warning: gmp_export(): Word size must be positive, 0 given in %s on line %d 73bool(false) 74 75Warning: gmp_export(): Invalid options: Conflicting word orders in %s on line %d 76bool(false) 77 78Warning: gmp_export(): Invalid options: Conflicting word endianness in %s on line %d 79bool(false) 80