banker/tests/Driver/MemcachedDriverTest.php

43 lines
1004 B
PHP
Raw Normal View History

2016-10-19 09:57:06 -04:00
<?php declare(strict_types=1);
/**
* Banker
*
* A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
2016-10-19 09:57:06 -04:00
*
2021-02-05 17:05:56 -05:00
* PHP version 7.4+
2016-10-19 09:57:06 -04:00
*
* @package Banker
* @author Timothy J. Warren <tim@timshomepage.net>
2021-02-05 17:05:56 -05:00
* @copyright 2016 - 2021 Timothy J. Warren
2016-10-19 09:57:06 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2021-02-05 17:05:56 -05:00
* @version 3.2.0
2016-10-19 09:57:06 -04:00
* @link https://git.timshomepage.net/timw4mail/banker
*/
2016-09-05 16:43:37 -04:00
namespace Aviat\Banker\Tests\Driver;
use Aviat\Banker\Driver\MemcachedDriver;
class MemcachedDriverTest extends DriverTestBase {
2019-12-10 11:00:46 -05:00
public function setUp(): void
2016-09-05 16:43:37 -04:00
{
2021-02-05 13:47:37 -05:00
if ( ! class_exists('Memcached'))
{
$this->markTestSkipped();
return;
}
2017-03-01 12:04:01 -05:00
$config = [
'host' => '127.0.0.1',
'port' => 11211
];
2019-12-10 11:00:46 -05:00
if (array_key_exists('MEMCACHED_HOST', $_ENV))
2017-03-01 12:04:01 -05:00
{
$config['host'] = $_ENV['MEMCACHED_HOST'];
2021-02-05 16:03:15 -05:00
$config['port'] = $_ENV['MEMCACHED_PORT'] ?? 11211;
2017-03-01 12:04:01 -05:00
}
2019-12-10 11:00:46 -05:00
2017-03-01 12:04:01 -05:00
$this->driver = new MemcachedDriver($config);
2016-09-05 16:43:37 -04:00
$this->driver->flush();
}
}