PHP 8.2.30
Preview: SqliteProfilerStorageTest.php Size: 1.33 KB
/opt/alt/php55/usr/share/pear/test/HttpKernel/Symfony/Component/HttpKernel/Tests/Profiler/SqliteProfilerStorageTest.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\SqliteProfilerStorage;

class SqliteProfilerStorageTest extends AbstractProfilerStorageTest
{
    protected static $dbFile;
    protected static $storage;

    public static function setUpBeforeClass()
    {
        self::$dbFile = tempnam(sys_get_temp_dir(), 'sf2_sqlite_storage');
        if (file_exists(self::$dbFile)) {
            @unlink(self::$dbFile);
        }
        self::$storage = new SqliteProfilerStorage('sqlite:'.self::$dbFile);
    }

    public static function tearDownAfterClass()
    {
        @unlink(self::$dbFile);
    }

    protected function setUp()
    {
        if (!class_exists('SQLite3') && (!class_exists('PDO') || !in_array('sqlite', \PDO::getAvailableDrivers()))) {
            $this->markTestSkipped('This test requires SQLite support in your environment');
        }
        self::$storage->purge();
    }

    /**
     * @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).