This file is indexed.

/usr/share/php/tests/Horde_Date/Horde/Date/Repeater/WeekendTest.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
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
 * @category   Horde
 * @package    Date
 * @subpackage UnitTests
 */

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

    public function testNextFuture()
    {
        $weekend = new Horde_Date_Repeater_Weekend();
        $weekend->now = $this->now;

        $nextWeekend = $weekend->next('future');
        $this->assertEquals('2006-08-19 00:00:00', (string)$nextWeekend->begin);
        $this->assertEquals('2006-08-21 00:00:00', (string)$nextWeekend->end);
    }

    public function testNextPast()
    {
        $weekend = new Horde_Date_Repeater_Weekend();
        $weekend->now = $this->now;

        $lastWeekend = $weekend->next('past');
        $this->assertEquals('2006-08-12 00:00:00', (string)$lastWeekend->begin);
        $this->assertEquals('2006-08-14 00:00:00', (string)$lastWeekend->end);
    }

    public function testThisFuture()
    {
        $weekend = new Horde_Date_Repeater_Weekend();
        $weekend->now = $this->now;

        $thisWeekend = $weekend->this('future');
        $this->assertEquals('2006-08-19 00:00:00', (string)$thisWeekend->begin);
        $this->assertEquals('2006-08-21 00:00:00', (string)$thisWeekend->end);
    }

    public function testThisPast()
    {
        $weekend = new Horde_Date_Repeater_Weekend();
        $weekend->now = $this->now;

        $thisWeekend = $weekend->this('past');
        $this->assertEquals('2006-08-12 00:00:00', (string)$thisWeekend->begin);
        $this->assertEquals('2006-08-14 00:00:00', (string)$thisWeekend->end);
    }

    public function testThisNone()
    {
        $weekend = new Horde_Date_Repeater_Weekend();
        $weekend->now = $this->now;

        $thisWeekend = $weekend->this('none');
        $this->assertEquals('2006-08-19 00:00:00', (string)$thisWeekend->begin);
        $this->assertEquals('2006-08-21 00:00:00', (string)$thisWeekend->end);
    }

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

        $offsetSpan = $weekend->offset($span, 3, 'future');
        $this->assertEquals('2006-09-02 00:00:00', (string)$offsetSpan->begin);
        $this->assertEquals('2006-09-02 00:00:01', (string)$offsetSpan->end);

        $offsetSpan = $weekend->offset($span, 1, 'past');
        $this->assertEquals('2006-08-12 00:00:00', (string)$offsetSpan->begin);
        $this->assertEquals('2006-08-12 00:00:01', (string)$offsetSpan->end);

        $offsetSpan = $weekend->offset($span, 0, 'future');
        $this->assertEquals('2006-08-12 00:00:00', (string)$offsetSpan->begin);
        $this->assertEquals('2006-08-12 00:00:01', (string)$offsetSpan->end);
    }

}