VarDumperTestTrait.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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($expected, $data, $filter = 0, $message = '')
  19. {
  20. $this->assertSame($this->prepareExpectation($expected, $filter), $this->getDump($data, null, $filter), $message);
  21. }
  22. public function assertDumpMatchesFormat($expected, $data, $filter = 0, $message = '')
  23. {
  24. $this->assertStringMatchesFormat($this->prepareExpectation($expected, $filter), $this->getDump($data, null, $filter), $message);
  25. }
  26. protected function getDump($data, $key = null, $filter = 0)
  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, $filter)->withRefHandles(false);
  35. if (null !== $key && null === $data = $data->seek($key)) {
  36. return;
  37. }
  38. return rtrim($dumper->dump($data, true));
  39. }
  40. private function prepareExpectation($expected, $filter)
  41. {
  42. if (!\is_string($expected)) {
  43. $expected = $this->getDump($expected, null, $filter);
  44. }
  45. return rtrim($expected);
  46. }
  47. }