convert_uudecode_basic.phpt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --TEST--
  2. Test convert_uudecode() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : string convert_uudecode ( string $data )
  6. * Description: Decode a uuencoded string
  7. * Source code: ext/standard/uuencode.c
  8. */
  9. echo "*** Testing convert_uudecode() : basic functionality ***\n";
  10. // array with different values for $string
  11. $strings = array (
  12. //double quoted strings
  13. "123",
  14. "abc",
  15. "1a2b3c",
  16. "Here is a simple string to test convert_uuencode/decode",
  17. "\t This String contains \t\t some control characters\r\n",
  18. "\x90\x91\x00\x93\x94\x90\x91\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f",
  19. //single quoted strings
  20. '123',
  21. 'abc',
  22. '1a2b3c',
  23. '\t This String contains \t\t some control characters\r\n',
  24. );
  25. // loop through with each element of the $strings array to test convert_uudecode() function
  26. $count = 1;
  27. foreach($strings as $string) {
  28. $encode = convert_uuencode($string);
  29. $decode = convert_uudecode($encode);
  30. if ($decode != $string) {
  31. var_dump($encode, $decode, $string);
  32. exit("TEST FAILED on iteration $count\n");
  33. }
  34. $count ++;
  35. }
  36. echo "TEST PASSED\n";
  37. ?>
  38. ===DONE===
  39. --EXPECTF--
  40. *** Testing convert_uudecode() : basic functionality ***
  41. TEST PASSED
  42. ===DONE===