This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/HttpKernel/Debug/StopwatchTest.php

122 lines
3.4 KiB
PHP
Raw Normal View History

2011-10-17 09:25:52 +01:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Component\HttpKernel\Debug;
use Symfony\Component\HttpKernel\Debug\Stopwatch;
/**
* StopwatchTest
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class StopwatchTest extends \PHPUnit_Framework_TestCase
{
public function testStart()
{
$stopwatch = new Stopwatch();
$event = $stopwatch->start('foo', 'cat');
$this->assertInstanceof('Symfony\Component\HttpKernel\Debug\StopwatchEvent', $event);
$this->assertEquals('cat', $event->getCategory());
}
public function testStop()
{
$stopwatch = new Stopwatch();
$stopwatch->start('foo', 'cat');
2012-02-23 19:36:56 +00:00
usleep(20000);
2011-10-17 09:25:52 +01:00
$event = $stopwatch->stop('foo');
$this->assertInstanceof('Symfony\Component\HttpKernel\Debug\StopwatchEvent', $event);
$total = $event->getTotalTime();
2012-02-23 19:36:56 +00:00
$this->assertTrue($total > 10 && $total <= 29, $total.' should be 20 (between 10 and 29)');
2011-10-17 09:25:52 +01:00
}
public function testLap()
{
$stopwatch = new Stopwatch();
$stopwatch->start('foo', 'cat');
usleep(10000);
$event = $stopwatch->lap('foo');
usleep(10000);
$stopwatch->stop('foo');
$this->assertInstanceof('Symfony\Component\HttpKernel\Debug\StopwatchEvent', $event);
$total = $event->getTotalTime();
2012-02-23 19:36:56 +00:00
$this->assertTrue($total > 10 && $total <= 29, $total.' should be 20 (between 10 and 29)');
2011-10-17 09:25:52 +01:00
}
/**
* @expectedException \LogicException
*/
public function testStopWithoutStart()
{
$stopwatch = new Stopwatch();
$stopwatch->stop('foo');
}
public function testSection()
{
$stopwatch = new Stopwatch();
2012-02-06 14:51:54 +00:00
$stopwatch->openSection();
2011-10-17 09:25:52 +01:00
$stopwatch->start('foo', 'cat');
$stopwatch->stop('foo');
$stopwatch->start('bar', 'cat');
$stopwatch->stop('bar');
$stopwatch->stopSection('1');
2011-10-17 09:25:52 +01:00
2012-02-06 14:51:54 +00:00
$stopwatch->openSection();
2011-10-17 09:25:52 +01:00
$stopwatch->start('foobar', 'cat');
$stopwatch->stop('foobar');
$stopwatch->stopSection('2');
2012-02-06 14:51:54 +00:00
$stopwatch->openSection();
$stopwatch->start('foobar', 'cat');
$stopwatch->stop('foobar');
$stopwatch->stopSection('0');
2011-10-17 09:25:52 +01:00
// the section is an event by itself
$this->assertCount(3, $stopwatch->getSectionEvents('1'));
$this->assertCount(2, $stopwatch->getSectionEvents('2'));
$this->assertCount(2, $stopwatch->getSectionEvents('0'));
2011-10-17 09:25:52 +01:00
}
2012-02-06 14:51:54 +00:00
public function testReopenASection()
{
$stopwatch = new Stopwatch();
$stopwatch->openSection();
$stopwatch->start('foo', 'cat');
$stopwatch->stopSection('section');
$stopwatch->openSection('section');
$stopwatch->start('bar', 'cat');
$stopwatch->stopSection('section');
$events = $stopwatch->getSectionEvents('section');
$this->assertCount(3, $events);
$this->assertCount(2, $events['__section__']->getPeriods());
}
/**
* @expectedException \LogicException
*/
public function testReopenANewSectionShouldThrowAnException()
{
$stopwatch = new Stopwatch();
$stopwatch->openSection('section');
}
2011-10-17 09:25:52 +01:00
}