generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathEventTest.php
136 lines (105 loc) · 3.9 KB
/
EventTest.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
<?php
namespace RenokiCo\PhpK8s\Test;
use RenokiCo\PhpK8s\Exceptions\KubernetesAPIException;
use RenokiCo\PhpK8s\K8s;
use RenokiCo\PhpK8s\Kinds\K8sEvent;
use RenokiCo\PhpK8s\ResourcesList;
class EventTest extends TestCase
{
public function test_event_api_interaction()
{
$this->runCreationTests();
$this->runGetAllTests();
$this->runGetTests();
$this->runWatchAllTests();
$this->runWatchTests();
$this->runDeletionTests();
}
public function runCreationTests()
{
$mysql = K8s::container()
->setName('mysql')
->setImage('public.ecr.aws/docker/library/mysql', '5.7')
->setPorts([
['name' => 'mysql', 'protocol' => 'TCP', 'containerPort' => 3306],
])
->addPort(3307, 'TCP', 'mysql-alt')
->setEnv(['MYSQL_ROOT_PASSWORD' => 'test']);
$pod = $this->cluster->pod()
->setName('mysql')
->setLabels(['tier' => 'backend', 'deployment-name' => 'mysql'])
->setContainers([$mysql]);
$dep = $this->cluster->deployment()
->setName('mysql')
->setLabels(['tier' => 'backend'])
->setAnnotations(['mysql/annotation' => 'yes'])
->setSelectors(['matchLabels' => ['tier' => 'backend']])
->setReplicas(1)
->setUpdateStrategy('RollingUpdate')
->setMinReadySeconds(0)
->setTemplate($pod);
$dep = $dep->createOrUpdate();
$event = $dep->newEvent()
->setMessage('This is a test message for events.')
->setReason('SomeReason')
->setType('Normal')
->setName('mysql-test');
$this->assertFalse($event->isSynced());
$this->assertFalse($event->exists());
$event = $event->emitOrUpdate();
$this->assertTrue($event->isSynced());
$this->assertTrue($event->exists());
$this->assertInstanceOf(K8sEvent::class, $event);
$matchedEvent = $dep->getEvents()->first(function ($ev) use ($event) {
return $ev->getName() === $event->getName();
});
$this->assertInstanceOf(K8sEvent::class, $matchedEvent);
$this->assertTrue($matchedEvent->is($event));
}
public function runGetAllTests()
{
$events = $this->cluster->getAllEvents();
$this->assertInstanceOf(ResourcesList::class, $events);
foreach ($events as $ev) {
$this->assertInstanceOf(K8sEvent::class, $ev);
$this->assertNotNull($ev->getName());
}
}
public function runGetTests()
{
$event = $this->cluster->getEventByName('mysql-test');
$this->assertInstanceOf(K8sEvent::class, $event);
$this->assertTrue($event->isSynced());
}
public function runDeletionTests()
{
$event = $this->cluster->getEventByName('mysql-test');
$this->assertTrue($event->delete());
while ($event->exists()) {
dump("Awaiting for horizontal pod autoscaler {$event->getName()} to be deleted...");
sleep(1);
}
while ($event->exists()) {
dump("Awaiting for event {$event->getName()} to be deleted...");
sleep(1);
}
$this->expectException(KubernetesAPIException::class);
$this->cluster->getEventByName('mysql-test');
}
public function runWatchAllTests()
{
$watch = $this->cluster->event()->watchAll(function ($type, $event) {
if ($event->getName() === 'mysql-test') {
return true;
}
}, ['timeoutSeconds' => 10]);
$this->assertTrue($watch);
}
public function runWatchTests()
{
$watch = $this->cluster->event()->watchByName('mysql-test', function ($type, $event) {
return $event->getName() === 'mysql-test';
}, ['timeoutSeconds' => 10]);
$this->assertTrue($watch);
}
}