Skip to content

Commit 9a61d19

Browse files
authoredMar 2, 2022
Call reset on Stopwatch
1 parent ae3d009 commit 9a61d19

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed
 

‎src/ServerTiming.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class ServerTiming
2121
public function __construct(Stopwatch $stopwatch)
2222
{
2323
$this->stopwatch = $stopwatch;
24+
$this->reset();
2425
}
2526

2627
public function addMetric(string $metric): self
@@ -104,11 +105,11 @@ public function events(): array
104105
return $this->finishedEvents;
105106
}
106107

107-
public function reset(Stopwatch $stopwatch): void
108+
public function reset(): void
108109
{
109110
$this->finishedEvents = [];
110111
$this->startedEvents = [];
111-
$this->stopwatch = $stopwatch;
112+
$this->stopwatch->reset();
112113
}
113114

114115
}

‎src/ServerTimingServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function resetServerTiming(): void
4343
* @var ServerTiming $serverTiming
4444
*/
4545
$serverTiming = $this->app->get(ServerTiming::class);
46-
$serverTiming->reset(new \Symfony\Component\Stopwatch\Stopwatch());
46+
$serverTiming->reset();
4747
}
4848

4949
protected function setupOctane(): void

‎tests/ServerTimingTest.php

+19
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,25 @@ public function it_can_start_and_stop_events(): void
3636
$this->assertGreaterThanOrEqual(1000, $events['key']);
3737
}
3838

39+
/** @test */
40+
public function it_can_be_resetted(): void
41+
{
42+
$timing = new ServerTiming(new Stopwatch());
43+
$timing->start('key');
44+
sleep(1);
45+
$timing->stop('key');
46+
47+
$events = $timing->events();
48+
49+
$this->assertCount(1, $events);
50+
$this->assertTrue(array_key_exists('key', $events));
51+
$this->assertGreaterThanOrEqual(1000, $events['key']);
52+
53+
$timing->reset();
54+
55+
$this->assertCount(0, $timing->events());
56+
}
57+
3958
/** @test */
4059
public function it_can_start_and_stop_events_using_measure(): void
4160
{

0 commit comments

Comments
 (0)