This file is indexed.

/usr/share/php/tests/Horde_History/Horde/History/Mock/MockTest.php is in php-horde-history 2.2.1-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
<?php
/**
 * Copyright 2010-2013 Horde LLC (http://www.horde.org/)
 *
 * @author     Michael J Rubinsky <mrubinsk@horde.org>
 * @category   Horde
 * @package    History
 * @subpackage UnitTests
 * @license    http://www.horde.org/licenses/lgpl21 LGPL 2.1
 */
class Horde_History_Mock_MockTest extends Horde_History_TestBase
{
    protected function setUp()
    {
        self::$history = new Horde_History_Mock('test');
    }

    protected function tearDown()
    {
        self::$history = null;
    }

    public function testCaching()
    {
        if (!class_exists('Horde_Cache_Storage_Mock')) {
            $this->markTestSkipped('Horde_Cache is not installed');
        }

        self::$history->setCache(new Horde_Cache(new Horde_Cache_Storage_Mock()));
        self::$history->log('appone:test_uid', array('who' => 'me', 'ts' => 1000, 'action' => 'test_action'));
        self::$history->getHistory('appone:test_uid');
        $count = self::$history->getCount;
        $this->assertGreaterThan(0, $count);
        self::$history->getHistory('appone:test_uid');
        $this->assertEquals($count, self::$history->getCount);
        self::$history->removeByNames(array('appone:test_uid'));
        $this->assertEquals(0, count(self::$history->getHistory('appone:test_uid')));
        $this->assertGreaterThan($count, self::$history->getCount);
    }
}