summaryrefslogtreecommitdiff
path: root/plugins/Minify/extlib/minify/min_unit_tests/test_Minify_Cache_Memcache.php
blob: b0223aa702b388637e82b364e4a3cfaec25e124d (plain)
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
<?php
require_once '_inc.php';

require_once 'Minify/Cache/Memcache.php';

function test_Minify_Cache_Memcache()
{
    $prefix = 'Minify_Cache_Memcache : ';
    if (! function_exists('memcache_set')) {
        return;
    }
    $mc = new Memcache;
    if (! @$mc->connect('localhost', 11211)) {
        return;
    }
    
    $data = str_repeat(md5('testing'), 160);
    $id = 'Minify_test_cache';
    
    $cache = new Minify_Cache_Memcache($mc);
    
    assertTrue(true === $cache->store($id, $data), $prefix . 'store');
    
    assertTrue(strlen($data) === $cache->getSize($id), $prefix . 'getSize');
    
    assertTrue(true === $cache->isValid($id, $_SERVER['REQUEST_TIME'] - 10), $prefix . 'isValid');
    
    ob_start();
    $cache->display($id);
    $displayed = ob_get_contents();
    ob_end_clean();
    
    assertTrue($data === $displayed, $prefix . 'display');
    
    assertTrue($data === $cache->fetch($id), $prefix . 'fetch');
}

test_Minify_Cache_Memcache();