This file is indexed.

/usr/share/php/tests/Horde_Feed/Horde/Feed/ReadTest.php is in php-horde-feed 2.0.1-4.

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
<?php
/**
 * @category Horde
 * @package Feed
 * @subpackage UnitTests
 */
class Horde_Feed_ReadTest extends PHPUnit_Framework_TestCase
{
    protected $_feedDir;

    public function setUp()
    {
        $this->_feedDir = __DIR__ . '/fixtures/';
    }

    /**
     * @dataProvider getValidAtomTests
     */
    public function testValidAtomFeeds($file)
    {
        $feed = Horde_Feed::readFile($this->_feedDir . $file);
        $this->assertInstanceOf('Horde_Feed_Atom', $feed);
    }

    public static function getValidAtomTests()
    {
        return array(
            array('AtomTestGoogle.xml'),
            array('AtomTestMozillazine.xml'),
            array('AtomTestOReilly.xml'),
            array('AtomTestPlanetPHP.xml'),
            array('AtomTestSample1.xml'),
            array('AtomTestSample2.xml'),
            array('AtomTestSample4.xml'),
        );
    }

    /**
     * @dataProvider getValidRssTests
     */
    public function testValidRssFeeds($file)
    {
        $feed = Horde_Feed::readFile($this->_feedDir . $file);
        $this->assertInstanceOf('Horde_Feed_Rss', $feed);
    }

    public static function getValidRssTests()
    {
        return array(
            array('RssTestHarvardLaw.xml'),
            array('RssTestPlanetPHP.xml'),
            array('RssTestSlashdot.xml'),
            array('RssTestCNN.xml'),
            array('RssTest091Sample1.xml'),
            array('RssTest092Sample1.xml'),
            array('RssTest100Sample1.xml'),
            array('RssTest100Sample2.xml'),
            array('RssTest200Sample1.xml'),
        );
    }

    public function testAtomWithUnbalancedTags()
    {
        $feed = Horde_Feed::readFile($this->_feedDir . 'AtomTestSample3.xml');
        $this->assertTrue($feed instanceof Horde_Feed_Base, 'Should be able to parse a feed with unmatched tags');
    }

    public function testNotAFeed()
    {
        try {
            $feed = Horde_Feed::readFile($this->_feedDir . 'NotAFeed.xml');
        } catch (Exception $e) {
            $this->assertInstanceOf('Horde_Feed_Exception', $e);
            return;
        }

        $this->fail('Expected a Horde_Feed_Exception when parsing content that is not a feed of any kind');
    }
}