1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
<?php
namespace Illuminate\Tests\Cache;
use Illuminate\Cache\MemcachedStore;
use Illuminate\Support\Carbon;
use Memcached;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use stdClass;
class CacheMemcachedStoreTest extends TestCase
{
public function tearDown(): void
{
m::close();
parent::tearDown();
}
public function testGetReturnsNullWhenNotFound()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$memcache = $this->getMockBuilder(stdClass::class)->setMethods(['get', 'getResultCode'])->getMock();
$memcache->expects($this->once())->method('get')->with($this->equalTo('foo:bar'))->willReturn(null);
$memcache->expects($this->once())->method('getResultCode')->willReturn(1);
$store = new MemcachedStore($memcache, 'foo');
$this->assertNull($store->get('bar'));
}
public function testMemcacheValueIsReturned()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$memcache = $this->getMockBuilder(stdClass::class)->setMethods(['get', 'getResultCode'])->getMock();
$memcache->expects($this->once())->method('get')->willReturn('bar');
$memcache->expects($this->once())->method('getResultCode')->willReturn(0);
$store = new MemcachedStore($memcache);
$this->assertSame('bar', $store->get('foo'));
}
public function testMemcacheGetMultiValuesAreReturnedWithCorrectKeys()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$memcache = $this->getMockBuilder(stdClass::class)->setMethods(['getMulti', 'getResultCode'])->getMock();
$memcache->expects($this->once())->method('getMulti')->with(
['foo:foo', 'foo:bar', 'foo:baz']
)->willReturn([
'fizz', 'buzz', 'norf',
]);
$memcache->expects($this->once())->method('getResultCode')->willReturn(0);
$store = new MemcachedStore($memcache, 'foo');
$this->assertEquals([
'foo' => 'fizz',
'bar' => 'buzz',
'baz' => 'norf',
], $store->many([
'foo', 'bar', 'baz',
]));
}
public function testSetMethodProperlyCallsMemcache()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
Carbon::setTestNow($now = Carbon::now());
$memcache = $this->getMockBuilder(Memcached::class)->setMethods(['set'])->getMock();
$memcache->expects($this->once())->method('set')->with($this->equalTo('foo'), $this->equalTo('bar'), $this->equalTo($now->timestamp + 60))->willReturn(true);
$store = new MemcachedStore($memcache);
$result = $store->put('foo', 'bar', 60);
$this->assertTrue($result);
Carbon::setTestNow();
}
public function testIncrementMethodProperlyCallsMemcache()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
/* @link https://github.com/php-memcached-dev/php-memcached/pull/468 */
if (version_compare(phpversion(), '8.0.0', '>=')) {
$this->markTestSkipped('Test broken due to parse error in PHP Memcached.');
}
$memcached = m::mock(Memcached::class);
$memcached->shouldReceive('increment')->with('foo', 5)->once()->andReturn(5);
$store = new MemcachedStore($memcached);
$store->increment('foo', 5);
}
public function testDecrementMethodProperlyCallsMemcache()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
/* @link https://github.com/php-memcached-dev/php-memcached/pull/468 */
if (version_compare(phpversion(), '8.0.0', '>=')) {
$this->markTestSkipped('Test broken due to parse error in PHP Memcached.');
}
$memcached = m::mock(Memcached::class);
$memcached->shouldReceive('decrement')->with('foo', 5)->once()->andReturn(0);
$store = new MemcachedStore($memcached);
$store->decrement('foo', 5);
}
public function testStoreItemForeverProperlyCallsMemcached()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$memcache = $this->getMockBuilder(Memcached::class)->setMethods(['set'])->getMock();
$memcache->expects($this->once())->method('set')->with($this->equalTo('foo'), $this->equalTo('bar'), $this->equalTo(0))->willReturn(true);
$store = new MemcachedStore($memcache);
$result = $store->forever('foo', 'bar');
$this->assertTrue($result);
}
public function testForgetMethodProperlyCallsMemcache()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$memcache = $this->getMockBuilder(Memcached::class)->setMethods(['delete'])->getMock();
$memcache->expects($this->once())->method('delete')->with($this->equalTo('foo'));
$store = new MemcachedStore($memcache);
$store->forget('foo');
}
public function testFlushesCached()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$memcache = $this->getMockBuilder(Memcached::class)->setMethods(['flush'])->getMock();
$memcache->expects($this->once())->method('flush')->willReturn(true);
$store = new MemcachedStore($memcache);
$result = $store->flush();
$this->assertTrue($result);
}
public function testGetAndSetPrefix()
{
if (! class_exists(Memcached::class)) {
$this->markTestSkipped('Memcached module not installed');
}
$store = new MemcachedStore(new Memcached, 'bar');
$this->assertSame('bar:', $store->getPrefix());
$store->setPrefix('foo');
$this->assertSame('foo:', $store->getPrefix());
$store->setPrefix(null);
$this->assertEmpty($store->getPrefix());
}
}
|