Advertisement

Testing untestable code - phpday

Head of Technology at bitExpert AG
May. 14, 2011
Advertisement

More Related Content

Advertisement

More from Stephan Hochdörfer(20)

Testing untestable code - phpday

  1. Testing untestable code Stephan Hochdörfer, bitExpert AG
  2. Testing untestable code About me  Stephan Hochdörfer, bitExpert AG  Department Manager Research Labs  enjoying PHP since 1999  S.Hochdoerfer@bitExpert.de  @shochdoerfer
  3. Testing untestable code No excuse for writing bad code!
  4. Testing untestable code Not to freak out!
  5. Testing untestable code Creativity matters!
  6. Testing untestable code "There is no secret to writing tests, there are only secrets to write testable code!" Miško Hevery
  7. Testing untestable code What is „untestable code“?
  8. Testing untestable code Wrong object construction “new” is evil! s
  9. Testing untestable code Tight coupling
  10. Testing untestable code Uncertainty
  11. Testing untestable code "...our test strategy requires us to have more control [...] of the sut." Gerard Meszaros, xUnit Test Patterns: Refactoring Test Code
  12. Testing untestable code In a perfect world... Unittest Unittest SUT SUT
  13. Testing untestable code Legacy code is not perfect... Dependency Dependency Unittest Unittest SUT SUT Dependency Dependency
  14. Testing untestable code ... Legacy code is not perfect... Dependency Dependency Unittest Unittest SUT SUT Dependency Dependency ...
  15. Testing untestable code ... Legacy code is not perfect... Dependency Dependency Unittest Unittest SUT SUT Dependency Dependency ...
  16. Testing untestable code How to get „testable“ code?
  17. Testing untestable code How to get „testable“ code? Refactoring
  18. Testing untestable code "Before you start refactoring, check that you have a solid suite of tests." Martin Fowler, Refactoring
  19. Testing untestable code Hope? - Nope...
  20. Testing untestable code Which path to take?
  21. Testing untestable code Which path to take? Do not change existing code!
  22. Testing untestable code Examples Object construction External resources Language issues
  23. Testing untestable code Object construction <?php class Car { private $Engine; public function __construct($sEngine) { $this->Engine = Engine::getByType($sEngine); } }
  24. Testing untestable code Object construction - Autoload <?php function run_autoload($psClass) { $sFileToInclude = strtolower($psClass).'.php'; if(strtolower($psClass) == 'engine') { $sFileToInclude = '/custom/mocks/'. $sFileToInclude; } include($sFileToInclude); } // Testcase spl_autoload_register('run_autoload'); $oCar = new Car('Diesel');
  25. Testing untestable code Object construction <?php include('Engine.php'); class Car { private $Engine; public function __construct($sEngine) { $this->Engine = Engine::getByType($sEngine); } }
  26. Testing untestable code Object construction - include_path <?php ini_set('include_path', '/custom/mocks/'.PATH_SEPARATOR. ini_get('include_path')); // Testcase include('car.php'); $oCar = new Car('Diesel'); echo $oCar->run();
  27. Testing untestable code Object construction – Stream Wrapper <?php class CustomWrapper { private $_handler; function stream_open($path, $mode, $options, &$opened_path) { stream_wrapper_restore('file'); // @TODO: modify $path before fopen $this->_handler = fopen($path, $mode); stream_wrapper_unregister('file'); stream_wrapper_register('file', 'CustomWrapper'); return true; } }
  28. Testing untestable code Object construction – Stream Wrapper stream_wrapper_unregister('file'); stream_wrapper_register('file', 'CustomWrapper');
  29. Testing untestable code Object construction – Stream Wrapper <?php class CustomWrapper { private $_handler ; function stream_read( $count ) { $content = fread($this->_handler, $count ); $content = str_replace ('Engine::getByType' , ' Abstract Engine::get' , $content ); return $content ; } }
  30. Testing untestable code Object construction – Namespaces <?php class Car { private $Engine; public function __construct($sEngine) { $this->Engine = CarEngine:: getByType($sEngine); } }
  31. Testing untestable code External resources
  32. Testing untestable code External resources Database Webservice Filesystem Mailserver
  33. Testing untestable code External resources – Mock database
  34. Testing untestable code External resources – Mock database Provide own implementation
  35. Testing untestable code External resources – Mock database ZF example: $db = new Custom_Db_Adapter(array()); Zend_Db_Table::setDefaultAdapter($db);
  36. Testing untestable code External resources – Mock database PHPUnit_Extensions_Database_TestCase
  37. Testing untestable code External resources – Mock database Proxy for your SQL Server
  38. Testing untestable code External resources – Mock webservice
  39. Testing untestable code External resources – Mock webservice Provide own implementation
  40. Testing untestable code External resources – Mock webservice Host redirect via /etc/hosts
  41. Testing untestable code External resources – Mock filesystem
  42. Testing untestable code External resources – Mock filesystem <?php // set up test environmemt vfsStream::setup('exampleDir'); // create directory in test enviroment mkdir(vfsStream::url('exampleDir').'/sample/'); // check if directory was created echo vfsStreamWrapper::getRoot()->hasChild('sample');
  43. Testing untestable code External resources – Mock Mailserver
  44. Testing untestable code External resources – Mock Mailserver Use fake mail server
  45. Testing untestable code External resources – Mock Mailserver $ cat /etc/php5/php.ini | grep sendmail_path sendmail_path=/usr/local/bin/logmail $ cat /usr/local/bin/logmail cat >> /tmp/logmail.log
  46. Testing untestable code Dealing with language issues
  47. Testing untestable code Dealing with language issues Testing your privates?
  48. Testing untestable code Dealing with language issues <?php class CustomWrapper { private $_handler; function stream_read($count) { $content = fread($this->_handler, $count); $content = str_replace( 'private function', 'public function', $content ); return $content; }
  49. Testing untestable code Dealing with language issues $myClass = new MyClass(); $reflectionClass = new ReflectionClass('MyClass'); $reflectionMethod = $reflectionClass-> getMethod('mydemo'); $reflectionMethod->setAccessible(true); $reflectionMethod->invoke($myClass);
  50. Testing untestable code Dealing with language issues Overwrite internal functions?
  51. Testing untestable code Dealing with language issues pecl install runkit-0.9
  52. Testing untestable code Dealing with language issues - Runkit <?php ini_set('runkit.internal_override', '1'); runkit_function_redefine('mail','','return true;'); ?>
  53. Testing untestable code What else?
  54. Testing untestable code What else? Generative Programming
  55. Testing untestable code Generative Programming Configuration Configuration 1 ... n Implementation Implementation Generator Generator Product components components Product Generator Generator application application
  56. Testing untestable code Generative Programming Configuration Configuration Application Application Implementation Implementation Generator Generator components components Testcases Testcases Generator Generator application application
  57. Testing untestable code Generative Programming A frame is a data structure for representing knowledge.
  58. Testing untestable code A Frame instance <?php class Car { private $Engine; public function __construct($sEngine) { $this->Engine = <!{Factory}!>:: getByType($sEngine); } }
  59. Testing untestable code The Frame controller public class MyFrameController extends SimpleFrameController { public void execute(Frame frame, FeatureConfig config) { if(config.hasFeature("unittest")) { frame.setSlot("Factory", "FactoryMock"); } else { frame.setSlot("Factory", "EngineFactory"); } } }
  60. Testing untestable code Generated result - Testcase <?php class Car { private $Engine; public function __construct($sEngine) { $this->Engine = FactoryMock:: getByType($sEngine); } }
  61. Testing untestable code Generated result - Application <?php class Car { private $Engine; public function __construct($sEngine) { $this->Engine = EngineFactory:: getByType($sEngine); } }
  62. Testing untestable code What is possible?
  63. Testing untestable code What is possible? Show / hide parts of the code
  64. Testing untestable code What is possible? Change content of global vars!
  65. Testing untestable code What is possible? Define pre- or postfixes!
  66. Testing untestable code Is it worth it?
  67. Testing untestable code Conclusions Change your mindset to write testable code!
  68. Testing untestable code Conclusions PHP is a swiss-army knife. Use it that way!
  69. http://joind.in/3026
Advertisement