VarDumperTestTrait.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. trait VarDumperTestTrait
  17. {
  18. public function assertDumpEquals($dump, $data, $message = '')
  19. {
  20. $this->assertSame(rtrim($dump), $this->getDump($data), $message);
  21. }
  22. public function assertDumpMatchesFormat($dump, $data, $message = '')
  23. {
  24. $this->assertStringMatchesFormat(rtrim($dump), $this->getDump($data), $message);
  25. }
  26. protected function getDump($data, $key = null)
  27. {
  28. $flags = getenv('DUMP_LIGHT_ARRAY') ? CliDumper::DUMP_LIGHT_ARRAY : 0;
  29. $flags |= getenv('DUMP_STRING_LENGTH') ? CliDumper::DUMP_STRING_LENGTH : 0;
  30. $cloner = new VarCloner();
  31. $cloner->setMaxItems(-1);
  32. $dumper = new CliDumper(null, null, $flags);
  33. $dumper->setColors(false);
  34. $data = $cloner->cloneVar($data)->withRefHandles(false);
  35. if (null !== $key && null === $data = $data->seek($key)) {
  36. return;
  37. }
  38. return rtrim($dumper->dump($data, true));
  39. }
  40. }