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
|
<?php
require_once __DIR__.'/Base.php';
use Helper\Dt;
class DatetimeHelperTest extends Base
{
public function testAge()
{
$h = new Dt($this->container);
$this->assertEquals('<15m', $h->age(0, 30));
$this->assertEquals('<30m', $h->age(0, 1000));
$this->assertEquals('<1h', $h->age(0, 3000));
$this->assertEquals('~2h', $h->age(0, 2*3600));
$this->assertEquals('1d', $h->age(0, 30*3600));
$this->assertEquals('2d', $h->age(0, 65*3600));
}
public function testGetDayHours()
{
$h = new Dt($this->container);
$slots = $h->getDayHours();
$this->assertNotEmpty($slots);
$this->assertCount(48, $slots);
$this->assertArrayHasKey('00:00', $slots);
$this->assertArrayHasKey('00:30', $slots);
$this->assertArrayHasKey('01:00', $slots);
$this->assertArrayHasKey('01:30', $slots);
$this->assertArrayHasKey('23:30', $slots);
$this->assertArrayNotHasKey('24:00', $slots);
}
public function testGetWeekDays()
{
$h = new Dt($this->container);
$slots = $h->getWeekDays();
$this->assertNotEmpty($slots);
$this->assertCount(7, $slots);
$this->assertContains('Monday', $slots);
$this->assertContains('Sunday', $slots);
}
public function testGetWeekDay()
{
$h = new Dt($this->container);
$this->assertEquals('Monday', $h->getWeekDay(1));
$this->assertEquals('Sunday', $h->getWeekDay(7));
}
}
|