This file is indexed.

/usr/share/php/tests/Horde_Date/Horde/Date/Repeater/YearTest.php is in php-horde-date 2.0.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<?php
/**
 * @category   Horde
 * @package    Date
 * @subpackage UnitTests
 */

/**
 * @category   Horde
 * @package    Date
 * @subpackage UnitTests
 */
class Horde_Date_Repeater_YearTest extends PHPUnit_Framework_TestCase
{
    public function setUp()
    {
        $this->now = new Horde_Date('2006-08-16 14:00:00');
    }

    public function testNextFuture()
    {
        $years = new Horde_Date_Repeater_Year();
        $years->now = $this->now;

        $nextYear = $years->next('future');
        $this->assertEquals('2007-01-01', $nextYear->begin->format('Y-m-d'));
        $this->assertEquals('2008-01-01', $nextYear->end->format('Y-m-d'));

        $nextNextYear = $years->next('future');
        $this->assertEquals('2008-01-01', $nextNextYear->begin->format('Y-m-d'));
        $this->assertEquals('2009-01-01', $nextNextYear->end->format('Y-m-d'));
    }

    public function testNextPast()
    {
        $years = new Horde_Date_Repeater_Year();
        $years->now = $this->now;

        $lastYear = $years->next('past');
        $this->assertEquals('2005-01-01', $lastYear->begin->format('Y-m-d'));
        $this->assertEquals('2006-01-01', $lastYear->end->format('Y-m-d'));

        $lastLastYear = $years->next('past');
        $this->assertEquals('2004-01-01', $lastLastYear->begin->format('Y-m-d'));
        $this->assertEquals('2005-01-01', $lastLastYear->end->format('Y-m-d'));
    }

    public function testThis()
    {
        $years = new Horde_Date_Repeater_Year();
        $years->now = $this->now;

        $thisYear = $years->this('future');
        $this->assertEquals('2006-08-17', $thisYear->begin->format('Y-m-d'));
        $this->assertEquals('2007-01-01', $thisYear->end->format('Y-m-d'));

        $thisYear = $years->this('past');
        $this->assertEquals('2006-01-01', $thisYear->begin->format('Y-m-d'));
        $this->assertEquals('2006-08-16', $thisYear->end->format('Y-m-d'));
    }

    public function testOffset()
    {
        $span = new Horde_Date_Span($this->now, $this->now->add(1));
        $years = new Horde_Date_Repeater_Year();

        $offsetSpan = $years->offset($span, 3, 'future');
        $this->assertEquals('2009-08-16 14:00:00', (string)$offsetSpan->begin);
        $this->assertEquals('2009-08-16 14:00:01', (string)$offsetSpan->end);

        $offsetSpan = $years->offset($span, 10, 'past');
        $this->assertEquals('1996-08-16 14:00:00', (string)$offsetSpan->begin);
        $this->assertEquals('1996-08-16 14:00:01', (string)$offsetSpan->end);
    }

}