Skip to content

Commit 7d0f6a9

Browse files
committed
Add test for expiration of entries when most of the memory is available
1 parent 0d550c6 commit 7d0f6a9

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

package.xml

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
<file name="apc_024.phpt" role="test" />
7575
<file name="apc_025.phpt" role="test" />
7676
<file name="apc_026.phpt" role="test" />
77+
<file name="apc_027.phpt" role="test" />
7778
<file name="apc_099.phpt" role="test" />
7879
<file name="apc54_014.phpt" role="test" />
7980
<file name="apc54_018.phpt" role="test" />

tests/apc_027.phpt

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
--TEST--
2+
Test expiration of entries when > 50% of memory is available
3+
--SKIPIF--
4+
<?php
5+
require_once(__DIR__ . '/skipif.inc');
6+
if (!function_exists('apcu_inc_request_time')) die('skip APC debug build required');
7+
?>
8+
--INI--
9+
apc.enabled=1
10+
apc.enable_cli=1
11+
apc.use_request_time=1
12+
apc.ttl=1
13+
apc.shm_size=1M
14+
--FILE--
15+
<?php
16+
17+
18+
apcu_store("key_01", 123, 100);
19+
apcu_store("key_02", str_repeat('x', 400000), 1);
20+
21+
apcu_inc_request_time(2);
22+
23+
var_dump(apcu_store("key_03", str_repeat('x', 900000), 1));
24+
var_dump(apcu_fetch("key_01"));
25+
var_dump(apcu_fetch("key_02"));
26+
var_dump(apcu_fetch("key_03") === str_repeat('x', 900000));
27+
28+
?>
29+
--EXPECT--
30+
bool(true)
31+
int(123)
32+
bool(false)
33+
bool(true)

0 commit comments

Comments
 (0)