This file is indexed.

/usr/share/php/kohana3.2/modules/cache/tests/cache/arithmetic/ApcTest.php is in libkohana3.2-mod-cache-php 3.2.0-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
<?php
include_once(Kohana::find_file('tests/cache/arithmetic', 'CacheArithmeticMethods'));

/**
*  @package    Kohana/Cache/Memcache
 * @category   Test
 * @author     Kohana Team
 * @copyright  (c) 2009-2010 Kohana Team
 * @license    http://kohanaphp.com/license
 */
class Kohana_ApcTest extends Kohana_CacheArithmeticMethodsTest {

	/**
	 * This method MUST be implemented by each driver to setup the `Cache`
	 * instance for each test.
	 * 
	 * This method should do the following tasks for each driver test:
	 * 
	 *  - Test the Cache instance driver is available, skip test otherwise
	 *  - Setup the Cache instance
	 *  - Call the parent setup method, `parent::setUp()`
	 *
	 * @return  void
	 */
	public function setUp()
	{
		parent::setUp();

		if ( ! extension_loaded('apc'))
		{
			$this->markTestSkipped('APC PHP Extension is not available');
		}

		if (ini_get('apc.enable_cli') != '1')
		{
			$this->markTestSkipped('Unable to test APC in CLI mode. To fix '.
				'place "apc.enable_cli=1" in your php.ini file');
		}

		$this->cache(Cache::instance('apc'));
	}

	/**
	 * Tests the [Cache::set()] method, testing;
	 * 
	 *  - The value is cached
	 *  - The lifetime is respected
	 *  - The returned value type is as expected
	 *  - The default not-found value is respected
	 * 
	 * This test doesn't test the TTL as there is a known bug/feature
	 * in APC that prevents the same request from killing cache on timeout.
	 * 
	 * @link   http://pecl.php.net/bugs/bug.php?id=16814
	 * 
	 * @dataProvider provider_set_get
	 *
	 * @param   array    data 
	 * @param   mixed    expected 
	 * @return  void
	 */
	public function test_set_get(array $data, $expected)
	{
		if ($data['wait'] !== FALSE)
		{
			$this->markTestSkipped('Unable to perform TTL test in CLI, see: '.
				'http://pecl.php.net/bugs/bug.php?id=16814 for more info!');
		}

		parent::test_set_get($data, $expected);
	}

} // End Kohana_ApcTest