breakiter___construct_error.phpt 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --TEST--
  2. IntlRuleBasedBreakIterator::__construct(): arg errors
  3. --SKIPIF--
  4. <?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
  5. <?php if(version_compare(INTL_ICU_VERSION, '4.8') < 0) print 'skip ICU >= 4.8 only'; ?>
  6. --FILE--
  7. <?php
  8. ini_set("intl.error_level", E_WARNING);
  9. function print_exception($e) {
  10. echo "\nException: " . $e->getMessage() . " in " . $e->getFile() . " on line " . $e->getLine() . "\n";
  11. }
  12. //missing ; at the end:
  13. try {
  14. var_dump(new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+'));
  15. } catch (IntlException $e) {
  16. print_exception($e);
  17. }
  18. try {
  19. var_dump(new IntlRuleBasedBreakIterator());
  20. } catch (TypeError $e) {
  21. print_exception($e);
  22. }
  23. try {
  24. var_dump(new IntlRuleBasedBreakIterator(1,2,3));
  25. } catch (TypeError $e) {
  26. print_exception($e);
  27. }
  28. try {
  29. var_dump(new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+;', array()));
  30. } catch (TypeError $e) {
  31. print_exception($e);
  32. }
  33. try {
  34. var_dump(new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+;', true));
  35. } catch (IntlException $e) {
  36. print_exception($e);
  37. }
  38. --EXPECTF--
  39. Exception: IntlRuleBasedBreakIterator::__construct(): rbbi_create_instance: unable to create RuleBasedBreakIterator from rules (parse error on line 1, offset 31) in %s on line %d
  40. Exception: IntlRuleBasedBreakIterator::__construct() expects at least 1 parameter, 0 given in %s on line %d
  41. Exception: IntlRuleBasedBreakIterator::__construct() expects at most 2 parameters, 3 given in %s on line %d
  42. Exception: IntlRuleBasedBreakIterator::__construct() expects parameter 2 to be bool, array given in %s on line %d
  43. Exception: IntlRuleBasedBreakIterator::__construct(): rbbi_create_instance: unable to create instance from compiled rules in %s on line %d