-
Notifications
You must be signed in to change notification settings - Fork 11.3k
/
Copy pathRedisCacheIntegrationTest.php
85 lines (75 loc) · 2.43 KB
/
RedisCacheIntegrationTest.php
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
<?php
namespace Illuminate\Tests\Cache;
use Illuminate\Cache\RateLimiter;
use Illuminate\Cache\RedisStore;
use Illuminate\Cache\Repository;
use Illuminate\Foundation\Testing\Concerns\InteractsWithRedis;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
class RedisCacheIntegrationTest extends TestCase
{
use InteractsWithRedis;
protected function setUp(): void
{
parent::setUp();
$this->setUpRedis();
}
protected function tearDown(): void
{
parent::tearDown();
$this->tearDownRedis();
}
/**
* @param string $driver
*/
#[DataProvider('redisDriverProvider')]
public function testRedisCacheAddTwice($driver)
{
$store = new RedisStore($this->redis[$driver]);
$repository = new Repository($store);
$this->assertTrue($repository->add('k', 'v', 3600));
$this->assertFalse($repository->add('k', 'v', 3600));
$this->assertGreaterThan(3500, $this->redis[$driver]->connection()->ttl('k'));
}
/**
* @param string $driver
*/
#[DataProvider('redisDriverProvider')]
public function testRedisCacheRateLimiter($driver)
{
$store = new RedisStore($this->redis[$driver]);
$repository = new Repository($store);
$rateLimiter = new RateLimiter($repository);
$this->assertFalse($rateLimiter->tooManyAttempts('key', 1));
$this->assertEquals(1, $rateLimiter->hit('key', 60));
$this->assertTrue($rateLimiter->tooManyAttempts('key', 1));
$this->assertFalse($rateLimiter->tooManyAttempts('key', 2));
}
/**
* Breaking change.
*
* @param string $driver
*/
#[DataProvider('redisDriverProvider')]
public function testRedisCacheAddFalse($driver)
{
$store = new RedisStore($this->redis[$driver]);
$repository = new Repository($store);
$repository->forever('k', false);
$this->assertFalse($repository->add('k', 'v', 60));
$this->assertEquals(-1, $this->redis[$driver]->connection()->ttl('k'));
}
/**
* Breaking change.
*
* @param string $driver
*/
#[DataProvider('redisDriverProvider')]
public function testRedisCacheAddNull($driver)
{
$store = new RedisStore($this->redis[$driver]);
$repository = new Repository($store);
$repository->forever('k', null);
$this->assertFalse($repository->add('k', 'v', 60));
}
}