VarDumperTestCase.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\VarDumper\Test;
  11. use Symfony\Component\VarDumper\Cloner\VarCloner;
  12. use Symfony\Component\VarDumper\Dumper\CliDumper;
  13. /**
  14. * @author Nicolas Grekas <p@tchwork.com>
  15. */
  16. abstract class VarDumperTestCase extends \PHPUnit_Framework_TestCase
  17. {
  18. public function assertDumpEquals($dump, $data, $message = '')
  19. {
  20. $this->assertSame(rtrim($dump), $this->getVarDumperDump($data), $message);
  21. }
  22. public function assertDumpMatchesFormat($dump, $data, $message = '')
  23. {
  24. $this->assertStringMatchesFormat(rtrim($dump), $this->getVarDumperDump($data), $message);
  25. }
  26. private function getVarDumperDump($data)
  27. {
  28. $h = fopen('php://memory', 'r+b');
  29. $cloner = new VarCloner();
  30. $dumper = new CliDumper($h);
  31. $dumper->setColors(false);
  32. $dumper->dump($cloner->cloneVar($data)->withRefHandles(false));
  33. $data = stream_get_contents($h, -1, 0);
  34. fclose($h);
  35. return rtrim($data);
  36. }
  37. }