generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPolicySoftCacheTest.php
159 lines (114 loc) · 3.81 KB
/
PolicySoftCacheTest.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
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
<?php
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Auth\User;
use Illuminate\Support\Facades\Gate;
use Innoge\LaravelPolicySoftCache\Contracts\SoftCacheable;
it('caches policy calls with SoftCacheable interface', function () {
Config::set('policy-soft-cache.cache_all_policies', false);
$user = new User();
$testModel = new TestModel();
$testModel->setAttribute('id', 1);
Gate::policy(TestModel::class, PolicyWithSoftCache::class);
$user->can('view', $testModel);
$user->can('view', $testModel);
expect(PolicyWithSoftCache::$called)->toBe(1);
PolicyWithSoftCache::$called = 0;
Config::set('policy-soft-cache.cache_all_policies', true);
});
it('does not cache policy calls when ability does not exist', function () {
Config::set('policy-soft-cache.cache_all_policies', false);
$user = new User();
$testModel = new TestModel();
$testModel->setAttribute('id', 1);
Gate::policy(TestModel::class, PolicyWithSoftCache::class);
$user->can('foo', $testModel);
$user->can('foo', $testModel);
expect(PolicyWithSoftCache::$called)->toBe(0);
PolicyWithSoftCache::$called = 0;
Config::set('policy-soft-cache.cache_all_policies', true);
});
it('does not cache policy calls without SoftCacheable interface', function () {
Config::set('policy-soft-cache.cache_all_policies', false);
$user = new User();
$testModel = new TestModel();
$testModel->setAttribute('id', 1);
Gate::policy(TestModel::class, PolicyWithoutSoftCache::class);
$user->can('view', $testModel);
$user->can('view', $testModel);
expect(PolicyWithoutSoftCache::$called)
->toBe(2);
PolicyWithoutSoftCache::$called = 0;
Config::set('policy-soft-cache.cache_all_policies', true);
});
it('caches all policy calls by default', function () {
$user = new User();
$testModel = new TestModel();
$testModel->setAttribute('id', 1);
Gate::policy(TestModel::class, PolicyWithoutSoftCache::class);
$user->can('view', $testModel);
$user->can('view', $testModel);
expect(PolicyWithoutSoftCache::$called)->toBe(1);
PolicyWithoutSoftCache::$called = 0;
});
it('does not break normal gate calls', function () {
$user = new User();
$user->can('foo');
expect(true)->toBeTrue();
});
it('does not break if the action does not require a model instance', function () {
$user = new User();
Gate::policy(TestModel::class, PolicyWithoutRequiredModel::class);
$user->can('create', [TestModel::class, 1]);
expect(true)->toBeTrue();
});
it('caches correct value if it depends on the user class', function () {
$user = new User();
$customUser = new CustomUser();
$testModel = new TestModel();
Gate::policy(TestModel::class, PolicyWithDifferingCustomUserLogic::class);
$userCanView = $user->can('view', $testModel);
expect($userCanView)->toBeTrue();
$customUserCanView = $customUser->can('view', $testModel);
expect($customUserCanView)->toBeFalse();
});
class PolicyWithSoftCache implements SoftCacheable
{
public static int $called = 0;
public function view(User $user, TestModel $model): bool
{
static::$called++;
return true;
}
}
class PolicyWithoutSoftCache
{
public static int $called = 0;
public function view(User $user, TestModel $model): bool
{
static::$called++;
return true;
}
}
class PolicyWithoutRequiredModel
{
public function create(User $user, int $value): bool
{
return true;
}
}
class TestModel extends Model
{
}
class CustomUser extends User
{
}
class PolicyWithDifferingCustomUserLogic implements SoftCacheable
{
public function view(User|CustomUser $user, TestModel $model): bool
{
if ($user instanceof CustomUser) {
return false;
}
return true;
}
}