-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGroupTestScope.php
More file actions
140 lines (104 loc) · 4.47 KB
/
Copy pathGroupTestScope.php
File metadata and controls
140 lines (104 loc) · 4.47 KB
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
<?php
namespace Utopia\Tests\Scopes;
use Exception;
use Utopia\Pools\Pool;
use Utopia\Pools\Group;
trait GroupTestScope
{
abstract protected function getAdapter(): \Utopia\Pools\Adapter;
abstract protected function execute(callable $callback): mixed;
protected Group $groupObject;
protected function setUpGroup(): void
{
$this->groupObject = new Group();
}
public function testGroupAdd(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$this->groupObject->add(new Pool($this->getAdapter(), 'test', 1, fn () => 'x'));
$this->assertInstanceOf(Pool::class, $this->groupObject->get('test'));
});
}
public function testGroupGet(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$this->groupObject->add(new Pool($this->getAdapter(), 'test', 1, fn () => 'x'));
$this->assertInstanceOf(Pool::class, $this->groupObject->get('test'));
$this->expectException(Exception::class);
$this->assertInstanceOf(Pool::class, $this->groupObject->get('testx'));
});
}
public function testGroupRemove(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$this->groupObject->add(new Pool($this->getAdapter(), 'test', 1, fn () => 'x'));
$this->assertInstanceOf(Pool::class, $this->groupObject->get('test'));
$this->groupObject->remove('test');
$this->expectException(Exception::class);
$this->assertInstanceOf(Pool::class, $this->groupObject->get('test'));
});
}
public function testGroupReset(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$this->groupObject->add(new Pool($this->getAdapter(), 'test', 5, fn () => 'x'));
$this->assertSame(5, $this->groupObject->get('test')->count());
$this->groupObject->get('test')->pop();
$this->groupObject->get('test')->pop();
$this->groupObject->get('test')->pop();
$this->assertSame(2, $this->groupObject->get('test')->count());
$this->groupObject->reclaim();
$this->assertSame(5, $this->groupObject->get('test')->count());
});
}
public function testGroupReconnectAttempts(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$this->groupObject->add(new Pool($this->getAdapter(), 'test', 5, fn () => 'x'));
$this->assertSame(3, $this->groupObject->get('test')->getReconnectAttempts());
$this->groupObject->setReconnectAttempts(5);
$this->assertSame(5, $this->groupObject->get('test')->getReconnectAttempts());
});
}
public function testGroupReconnectSleep(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$this->groupObject->add(new Pool($this->getAdapter(), 'test', 5, fn () => 'x'));
$this->assertSame(1, $this->groupObject->get('test')->getReconnectSleep());
$this->groupObject->setReconnectSleep(2);
$this->assertSame(2, $this->groupObject->get('test')->getReconnectSleep());
});
}
public function testGroupUse(): void
{
$this->execute(function (): void {
$this->setUpGroup();
$pool1 = new Pool($this->getAdapter(), 'pool1', 1, fn () => '1');
$pool2 = new Pool($this->getAdapter(), 'pool2', 1, fn () => '2');
$pool3 = new Pool($this->getAdapter(), 'pool3', 1, fn () => '3');
$this->groupObject->add($pool1);
$this->groupObject->add($pool2);
$this->groupObject->add($pool3);
$this->assertSame(1, $pool1->count());
$this->assertSame(1, $pool2->count());
$this->assertSame(1, $pool3->count());
// @phpstan-ignore argument.type
$this->groupObject->use(['pool1', 'pool3'], function ($one, $three) use ($pool1, $pool2, $pool3): void {
$this->assertSame('1', $one);
$this->assertSame('3', $three);
$this->assertSame(0, $pool1->count());
$this->assertSame(1, $pool2->count());
$this->assertSame(0, $pool3->count());
});
$this->assertSame(1, $pool1->count());
$this->assertSame(1, $pool2->count());
$this->assertSame(1, $pool3->count());
});
}
}