ReflectionProperty_setValue_error.phpt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. --TEST--
  2. Test ReflectionProperty::setValue() error cases.
  3. --FILE--
  4. <?php
  5. class TestClass {
  6. public $pub;
  7. public $pub2 = 5;
  8. static public $stat = "static property";
  9. protected $prot = 4;
  10. private $priv = "keepOut";
  11. }
  12. class AnotherClass {
  13. }
  14. $instance = new TestClass();
  15. $instanceWithNoProperties = new AnotherClass();
  16. $propInfo = new ReflectionProperty('TestClass', 'pub2');
  17. echo "Too few args:\n";
  18. var_dump($propInfo->setValue());
  19. var_dump($propInfo->setValue($instance));
  20. echo "\nToo many args:\n";
  21. var_dump($propInfo->setValue($instance, "NewValue", true));
  22. echo "\nWrong type of arg:\n";
  23. var_dump($propInfo->setValue(true, "NewValue"));
  24. $propInfo = new ReflectionProperty('TestClass', 'stat');
  25. echo "\nStatic property / too many args:\n";
  26. var_dump($propInfo->setValue($instance, "NewValue", true));
  27. echo "\nStatic property / too few args:\n";
  28. var_dump($propInfo->setValue("A new value"));
  29. var_dump(TestClass::$stat);
  30. var_dump($propInfo->setValue());
  31. var_dump(TestClass::$stat);
  32. echo "\nStatic property / wrong type of arg:\n";
  33. var_dump($propInfo->setValue(true, "Another new value"));
  34. var_dump(TestClass::$stat);
  35. echo "\nProtected property:\n";
  36. try {
  37. $propInfo = new ReflectionProperty('TestClass', 'prot');
  38. var_dump($propInfo->setValue($instance, "NewValue"));
  39. }
  40. catch(Exception $exc) {
  41. echo $exc->getMessage();
  42. }
  43. echo "\n\nInstance without property:\n";
  44. $propInfo = new ReflectionProperty('TestClass', 'pub2');
  45. var_dump($propInfo->setValue($instanceWithNoProperties, "NewValue"));
  46. var_dump($instanceWithNoProperties->pub2);
  47. ?>
  48. --EXPECTF--
  49. Too few args:
  50. Warning: ReflectionProperty::setValue() expects exactly 2 parameters, 0 given in %s on line %d
  51. NULL
  52. Warning: ReflectionProperty::setValue() expects exactly 2 parameters, 1 given in %s on line %d
  53. NULL
  54. Too many args:
  55. Warning: ReflectionProperty::setValue() expects exactly 2 parameters, 3 given in %s on line %d
  56. NULL
  57. Wrong type of arg:
  58. Warning: ReflectionProperty::setValue() expects parameter 1 to be object, boolean given in %s on line %d
  59. NULL
  60. Static property / too many args:
  61. Warning: ReflectionProperty::setValue() expects exactly 2 parameters, 3 given in %s on line %d
  62. NULL
  63. Static property / too few args:
  64. NULL
  65. string(11) "A new value"
  66. Warning: ReflectionProperty::setValue() expects exactly 2 parameters, 0 given in %s on line %d
  67. NULL
  68. string(11) "A new value"
  69. Static property / wrong type of arg:
  70. NULL
  71. string(17) "Another new value"
  72. Protected property:
  73. Cannot access non-public member TestClass::prot
  74. Instance without property:
  75. NULL
  76. string(8) "NewValue"