PHP 8.2.30
Preview: MemcachedProfilerStorageTest.php Size: 1.22 KB
//opt/alt/php53/usr/share/pear/test/HttpKernel/Symfony/Component/HttpKernel/Tests/Profiler/MemcachedProfilerStorageTest.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\MemcachedProfilerStorage;
use Symfony\Component\HttpKernel\Tests\Profiler\Mock\MemcachedMock;

class MemcachedProfilerStorageTest extends AbstractProfilerStorageTest
{
    protected static $storage;

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

        self::$storage = new MemcachedProfilerStorage('memcached://127.0.0.1:11211', '', '', 86400);
        self::$storage->setMemcached($memcachedMock);

        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:55:08
Edit Download
10.47 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
2.73 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.22 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.21 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
4.92 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.58 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.18 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.33 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download

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