Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

--TEST--
CacheXCache::response_manager() with reset()

--SKIPIF--
<?php
        if (!function_exists('xcache_set')) print 'skip XCache extension not available';
?>

--FILE--
<?php
        require_once dirname(__FILE__) . '/../cachecore.class.php';
        require_once dirname(__FILE__) . '/../cachexcache.class.php';

        $time = time();

        function fetch_data($url, $pass)
        {
                $http = curl_init($url);
                curl_setopt($http, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($http, CURLOPT_BINARYTRANSFER, true);

                if ($output = curl_exec($http))
                {
                        if ($pass !== false)
                        {
                                return $output;
                        }
                }

                return null;
        }

        $cache = new CacheXCache('test', null, 2);
        var_dump($cache->response_manager('fetch_data', array('http://cachecore.googlecode.com/svn/trunk/_tests/test_request.txt', true)));
        $start = $cache->timestamp();
        sleep(3);
        var_dump($cache->response_manager('fetch_data', array('http://cachecore.googlecode.com/svn/trunk/_tests/test_request.txt', false)));
        $end = $cache->timestamp();
        var_dump($start < $end);
?>

--EXPECT--
string(48) "abcdefghijklmnopqrstuvwxyz
0123456789
!@#$%^&*()"
string(48) "abcdefghijklmnopqrstuvwxyz
0123456789
!@#$%^&*()"
bool(false)

--CLEAN--
<?php
        require_once dirname(__FILE__) . '/../cachecore.class.php';
        require_once dirname(__FILE__) . '/../cachexcache.class.php';
        $cache = new CacheXCache('test', null, 2);
        $cache->delete();
?>