PATH:
opt
/
alt
/
tests
/
alt-php55-pecl-memcached_2.2.0-1.el8
/
tests
--TEST-- Memcached store, fetch & touch expired key --XFAIL-- https://code.google.com/p/memcached/issues/detail?id=275 --SKIPIF-- <?php if (!extension_loaded("memcached")) print "skip"; if (!method_exists("memcached", "touch")) die ("skip memcached::touch is not available"); ?> --FILE-- <?php include dirname (__FILE__) . '/config.inc'; function run_expiry_test ($m) { $key = uniqid ('will_expire_'); $set = $m->set($key, "foo", 2); $v = $m->get($key); if (!$set || $v != 'foo') { echo "Error setting key to \"foo\" with 2s expiry.\n"; return; } sleep(1); $res = $m->touch($key, 2); $v = $m->get($key); if(!$res || $v != 'foo') { echo "Error touching key for another 2s expiry.\n"; var_dump($res); var_dump($m->getResultMessage()); var_dump($v); return; } sleep(3); $v = $m->get($key); if ($v !== Memcached::GET_ERROR_RETURN_VALUE) { echo "Wanted:\n"; var_dump(Memcached::GET_ERROR_RETURN_VALUE); echo "from get of expired value. Got:\n"; var_dump($v); return; } echo "All OK" . PHP_EOL; } $m = memc_get_instance (array ( Memcached::OPT_BINARY_PROTOCOL => true )); echo '-- binary protocol' . PHP_EOL; run_expiry_test ($m); $m = memc_get_instance (); echo '-- text protocol' . PHP_EOL; run_expiry_test ($m); echo "DONE TEST\n"; ?> --EXPECT-- -- binary protocol All OK -- text protocol All OK DONE TEST
[-] options.phpt
[edit]
[-] check_if_persistent.phpt
[edit]
[-] expire.phpt
[edit]
[-] getserverlist.phpt
[edit]
[-] types_json.phpt
[edit]
[-] check_if_pristine.phpt
[edit]
[-] callback_exception.phpt
[edit]
[-] sasl_basic.phpt
[edit]
[-] construct_persistent.phpt
[edit]
[-] testdata.res
[edit]
[-] vbucket.phpt
[edit]
[-] session_badconf_emptyprefix.phpt
[edit]
[-] deletemultitypes.phpt
[edit]
[-] session_badconf_prefix.phpt
[edit]
[-] types_msgpack.phpt
[edit]
[-] invalid_options.phpt
[edit]
[-] session_badconf_servers.phpt
[edit]
[-] invoke_callback_twice.phpt
[edit]
[-] types.inc
[edit]
[-] bug_16084.phpt
[edit]
[-] setoptions.phpt
[edit]
[-] callback_exception_2.phpt
[edit]
[-] invoke_callback.phpt
[edit]
[-] types_msgpack_multi.phpt
[edit]
[-] session_badconf_locktime.phpt
[edit]
[-] construct.phpt
[edit]
[-] 001.phpt
[edit]
[-] invoke_callback_2.phpt
[edit]
[-] clone.phpt
[edit]
[-] no-not-found.phpt
[edit]
[-] incrdecr_invalid_key.phpt
[edit]
[-] config.inc
[edit]
[-] deleted.phpt
[edit]
[+]
..
[-] bad_construct.phpt
[edit]
[-] getserverbykey.phpt
[edit]
[-] keys.phpt
[edit]