PHP 8.2.30
Preview: MemcacheProfilerStorageTest.php Size: 1.21 KB
/opt/alt/php55/usr/share/pear/test/HttpKernel/Symfony/Component/HttpKernel/Tests/Profiler/MemcacheProfilerStorageTest.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\HttpKernel\Tests\Profiler;

use Symfony\Component\HttpKernel\Profiler\MemcacheProfilerStorage;
use Symfony\Component\HttpKernel\Tests\Profiler\Mock\MemcacheMock;

class MemcacheProfilerStorageTest extends AbstractProfilerStorageTest
{
    protected static $storage;

    protected function setUp()
    {
        $memcacheMock = new MemcacheMock();
        $memcacheMock->addServer('127.0.0.1', 11211);

        self::$storage = new MemcacheProfilerStorage('memcache://127.0.0.1:11211', '', '', 86400);
        self::$storage->setMemcache($memcacheMock);

        if (self::$storage) {
            self::$storage->purge();
        }
    }

    protected function tearDown()
    {
        if (self::$storage) {
            self::$storage->purge();
            self::$storage = false;
        }
    }

    /**
     * @return \Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface
     */
    protected function getStorage()
    {
        return self::$storage;
    }
}

Directory Contents

Dirs: 1 × Files: 8

Name Size Perms Modified Actions
Mock DIR
- drwxr-xr-x 2024-03-03 22:54:40
Edit Download
10.47 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.73 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.22 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.21 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
4.92 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.58 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.18 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.33 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).