1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
<?php
namespace Twig\Tests\Profiler\Dumper;
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use PHPUnit\Framework\TestCase;
use Twig\Profiler\Profile;
abstract class ProfilerTestCase extends TestCase
{
protected function getProfile()
{
$profile = new Profile('main');
$subProfiles = [
$this->getIndexProfile(
[
$this->getEmbeddedBlockProfile(),
$this->getEmbeddedTemplateProfile(
[
$this->getIncludedTemplateProfile(),
]
),
$this->getMacroProfile(),
$this->getEmbeddedTemplateProfile(
[
$this->getIncludedTemplateProfile(),
]
),
]
),
];
$p = new \ReflectionProperty($profile, 'profiles');
$p->setAccessible(true);
$p->setValue($profile, $subProfiles);
return $profile;
}
private function getIndexProfile(array $subProfiles = [])
{
return $this->generateProfile('main', 1, 'template', 'index.twig', $subProfiles);
}
private function getEmbeddedBlockProfile(array $subProfiles = [])
{
return $this->generateProfile('body', 0.0001, 'block', 'embedded.twig', $subProfiles);
}
private function getEmbeddedTemplateProfile(array $subProfiles = [])
{
return $this->generateProfile('main', 0.0001, 'template', 'embedded.twig', $subProfiles);
}
private function getIncludedTemplateProfile(array $subProfiles = [])
{
return $this->generateProfile('main', 0.0001, 'template', 'included.twig', $subProfiles);
}
private function getMacroProfile(array $subProfiles = [])
{
return $this->generateProfile('foo', 0.0001, 'macro', 'index.twig', $subProfiles);
}
/**
* @param string $name
* @param float $duration
* @param string $type
* @param string $templateName
*
* @return Profile
*/
private function generateProfile($name, $duration, $type, $templateName, array $subProfiles = [])
{
$profile = new Profile($templateName, $type, $name);
$p = new \ReflectionProperty($profile, 'profiles');
$p->setAccessible(true);
$p->setValue($profile, $subProfiles);
$starts = new \ReflectionProperty($profile, 'starts');
$starts->setAccessible(true);
$starts->setValue($profile, [
'wt' => 0,
'mu' => 0,
'pmu' => 0,
]);
$ends = new \ReflectionProperty($profile, 'ends');
$ends->setAccessible(true);
$ends->setValue($profile, [
'wt' => $duration,
'mu' => 0,
'pmu' => 0,
]);
return $profile;
}
}
|