forked from solariumphp/solarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimingTest.php
75 lines (62 loc) · 1.52 KB
/
TimingTest.php
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
<?php
namespace Solarium\Tests\Component\Result\Debug;
use PHPUnit\Framework\TestCase;
use Solarium\Component\Result\Debug\Timing;
use Solarium\Component\Result\Debug\TimingPhase;
class TimingTest extends TestCase
{
/**
* @var Timing
*/
protected $result;
protected $time;
protected $phases;
public function setUp(): void
{
$this->time = 14;
$this->phases = [
'key1' => new TimingPhase('dummy1', null, []),
'key2' => new TimingPhase('dummy2', null, []),
];
$this->result = new Timing($this->time, $this->phases);
}
public function testGetTime()
{
$this->assertEquals(
$this->time,
$this->result->getTime()
);
}
public function testGetPhase()
{
$this->assertEquals(
$this->phases['key1'],
$this->result->getPhase('key1')
);
}
public function testGetPhaseWithInvalidKey()
{
$this->assertNull(
$this->result->getPhase('invalidkey')
);
}
public function testGetPhases()
{
$this->assertEquals(
$this->phases,
$this->result->getPhases()
);
}
public function testIterator()
{
$items = [];
foreach ($this->result as $key => $item) {
$items[$key] = $item;
}
$this->assertEquals($this->phases, $items);
}
public function testCount()
{
$this->assertSameSize($this->phases, $this->result);
}
}