blob: eec3739ecb29daa68c84980f6325b1a37e4f837e (
plain) (
blame)
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
|
<?php
namespace React\Tests\Cache;
use React\Cache\ArrayCache;
class ArrayCacheTest extends TestCase
{
private $cache;
public function setUp()
{
$this->cache = new ArrayCache();
}
/** @test */
public function getShouldRejectPromiseForNonExistentKey()
{
$this->cache
->get('foo')
->then(
$this->expectCallableNever(),
$this->expectCallableOnce()
);
}
/** @test */
public function setShouldSetKey()
{
$this->cache
->set('foo', 'bar');
$success = $this->createCallableMock();
$success
->expects($this->once())
->method('__invoke')
->with('bar');
$this->cache
->get('foo')
->then($success);
}
/** @test */
public function removeShouldRemoveKey()
{
$this->cache
->set('foo', 'bar');
$this->cache
->remove('foo');
$this->cache
->get('foo')
->then(
$this->expectCallableNever(),
$this->expectCallableOnce()
);
}
}
|