News Feed
Jobs Feed
Sections




News Archive
David Otton's Blog:
php//memory, Unit Tests
November 18, 2008 @ 15:42:01

In looking to test his fputscsv functionality, David Otton found a simple way to measure its performance by using streams.

Then I realised I could use PHP's (fairly) new IO streams to dump the function's output to a temporary buffer, and read it back in for comparison. Not perfect, but it removes concerns about file mutexes, permissions, unique filenames, etc. and speeds up the tests, as they never touch disc.

He uses a custom stream and points it to php://memory to store and read the data from. Code is included in the post as well as example usage. It runs an assert that the value pushed into another memory chunk is the same as the first one (ensuring that the results of his fputcsv calls are valid).

0 comments voice your opinion now!
memory stream test fputcsv unittest assert


blog comments powered by Disqus

Similar Posts

Ilia Alshanetsky's Blog: PHP 5.2.0 RC3 Released!

Chris Hartjes' Blog: Zend_Service_Audioscrobbler Update

Professional PHP Blog: php|architect Test Pattern

Felix Geisendörfer's Blog: Containable 2.0 BETA

Chris Hartjes' Blog: Moving on, and a Testing Mini-Manifesto


Community Events









Don't see your event here?
Let us know!


functional interview code object framework database development language community release zendframework2 event example phpunit api testing unittest composer introduction opinion

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework