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

class RedisProfilerStorageTest extends AbstractProfilerStorageTest
{
    protected static $storage;

    protected function setUp()
    {
        $redisMock = new RedisMock();
        $redisMock->connect('127.0.0.1', 6379);

        self::$storage = new RedisProfilerStorage('redis://127.0.0.1:6379', '', '', 86400);
        self::$storage->setRedis($redisMock);

        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).