-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathBigBlueButtonTest.php
More file actions
643 lines (536 loc) · 24.2 KB
/
BigBlueButtonTest.php
File metadata and controls
643 lines (536 loc) · 24.2 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
<?php
/*
* BigBlueButton open source conferencing system - https://www.bigbluebutton.org/.
*
* Copyright (c) 2016-2025 BigBlueButton Inc. and by respective authors (see below).
*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 3.0 of the License, or (at your option) any later
* version.
*
* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with BigBlueButton; if not, see <https://www.gnu.org/licenses/>.
*/
namespace BigBlueButton;
use BigBlueButton\Core\ApiMethod;
use BigBlueButton\Core\DocumentFile;
use BigBlueButton\Core\DocumentUrl;
use BigBlueButton\Enum\Feature;
use BigBlueButton\Parameters\CreateMeetingParameters;
use BigBlueButton\Parameters\DeleteRecordingsParameters;
use BigBlueButton\Parameters\EndMeetingParameters;
use BigBlueButton\Parameters\GetMeetingInfoParameters;
use BigBlueButton\Parameters\GetRecordingsParameters;
use BigBlueButton\Parameters\HooksCreateParameters;
use BigBlueButton\Parameters\HooksDestroyParameters;
use BigBlueButton\Parameters\InsertDocumentParameters;
use BigBlueButton\Parameters\IsMeetingRunningParameters;
use BigBlueButton\Parameters\PublishRecordingsParameters;
use BigBlueButton\Parameters\SendChatMessageParameters;
use BigBlueButton\TestServices\EnvLoader;
use BigBlueButton\TestServices\Fixtures;
use BigBlueButton\TestServices\ParamsIterator;
/**
* Class BigBlueButtonTest.
*
* @internal
*/
class BigBlueButtonTest extends TestCase
{
protected BigBlueButton $bbb;
/**
* Setup test class.
*/
public function setUp(): void
{
parent::setUp();
EnvLoader::loadEnvironmentVariables();
$this->bbb = new BigBlueButton();
}
public function tearDown(): void
{
parent::tearDown();
// close all existing meetings
$meetingsResponse = $this->bbb->getMeetings();
$this->assertTrue($meetingsResponse->success(), $meetingsResponse->getMessage());
$meetings = $meetingsResponse->getMeetings();
foreach ($meetings as $meeting) {
$endMeetingParameters = new EndMeetingParameters($meeting->getMeetingId(), $meeting->getModeratorPassword());
$endMeetingResponse = $this->bbb->endMeeting($endMeetingParameters);
$this->assertEquals('SUCCESS', $endMeetingResponse->getReturnCode());
}
}
// API Version
/**
* Test API version call.
*/
public function testApiVersion(): void
{
$apiVersion = $this->bbb->getApiVersion();
$this->assertEquals('SUCCESS', $apiVersion->getReturnCode());
$this->assertEquals('2.0', $apiVersion->getVersion());
$this->assertTrue($apiVersion->success());
}
// Create Meeting
/**
* @deprecated test will be removed together with the deprecated function from BigBlueButton::class
*
* Test create meeting URL
*/
public function testCreateMeetingUrl(): void
{
$params = Fixtures::generateCreateParams();
$url = $this->bbb->getCreateMeetingUrl(Fixtures::getCreateMeetingParametersMock($params));
$paramsIterator = new ParamsIterator('testCreateMeetingUrl');
$paramsIterator->iterate($params, $url);
}
/**
* Test create meeting.
*/
public function testCreateMeeting(): void
{
$createMeetingParams = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$result = $this->bbb->createMeeting($createMeetingParams);
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
/**
* Test create meeting with a presentation URL.
*/
public function testCreateMeetingWithPresentationUrl(): void
{
$params = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$params->addPresentation('https://picsum.photos/3840/2160/?random');
$result = $this->bbb->createMeeting($params);
$this->assertCount(1, $params->getPresentations());
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
/**
* Test create meeting with a presentation URL and filename.
*/
public function testCreateMeetingWithPresentationUrlAndFileName(): void
{
$params = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$params->addPresentation('https://picsum.photos/3840/2160/?random', null, 'placeholder.png');
$result = $this->bbb->createMeeting($params);
$this->assertCount(1, $params->getPresentations());
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
/**
* Test create meeting with a presentation embedded.
*/
public function testCreateMeetingWithPresentationEmbedded(): void
{
$content = file_get_contents(Fixtures::IMAGE_PATH . 'bbb_logo.png');
$this->assertIsString($content);
$params = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$params->addPresentation('bbb_logo.png', $content);
$result = $this->bbb->createMeeting($params);
$this->assertCount(1, $params->getPresentations());
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
/**
* Test create meeting with a multiple presentations.
*/
public function testCreateMeetingWithMultiPresentations(): void
{
$content = file_get_contents(Fixtures::IMAGE_PATH . 'bbb_logo.png');
$this->assertIsString($content);
$params = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$params->addPresentation('https://picsum.photos/3840/2160/?random', null, 'presentation.png');
$params->addPresentation('logo.png', $content);
$result = $this->bbb->createMeeting($params);
$this->assertCount(2, $params->getPresentations());
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
/**
* Test create meeting with Document (Url).
*/
public function testCreateMeetingWithDocumentUrl(): void
{
// ARRANGE
$url = 'https://picsum.photos/3840/2160/?random';
$filename = 'picture.jpg';
$document = new DocumentUrl($url, $filename);
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingParameters->addDocument($document);
// ACT
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
// ASSERT
$this->assertCount(1, $createMeetingParameters->getDocuments());
$this->assertTrue($createMeetingResponse->success());
}
/**
* Test create meeting with Document (File).
*/
public function testCreateMeetingWithDocumentFile(): void
{
// ARRANGE
$filepath = Fixtures::IMAGE_PATH . 'bbb_logo.png';
$filename = 'picture.png';
$document = new DocumentFile($filepath, $filename);
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingParameters->addDocument($document);
// ACT
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
// ASSERT
$this->assertCount(1, $createMeetingParameters->getDocuments());
$this->assertTrue($createMeetingResponse->success());
}
/**
* Test create meeting with Document (URL and File).
*/
public function testCreateMeetingWithDocumentUrlAndFile(): void
{
// ARRANGE
// file 1
$url = 'https://picsum.photos/3840/2160/?random';
$filename = 'picture.jpg';
$documentUrl = new DocumentUrl($url, $filename);
// file 2
$filepath = Fixtures::IMAGE_PATH . 'bbb_logo.png';
$filename = 'picture.png';
$documentFile = new DocumentFile($filepath, $filename);
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingParameters
->addDocument($documentFile)
->addDocument($documentUrl)
;
// ACT
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
// ASSERT
$this->assertCount(2, $createMeetingParameters->getDocuments());
$this->assertTrue($createMeetingResponse->success());
}
// Insert Document
/**
* Test insert document (URL) into existing meeting.
*/
public function testInsertDocumentUrl(): void
{
// ARRANGE
$url = 'https://picsum.photos/3840/2160/?random';
$filename = 'picture.jpg';
$document = new DocumentUrl($url, $filename);
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
$insertDocumentParameters = new InsertDocumentParameters((string) $createMeetingParameters->getMeetingId());
$insertDocumentParameters->addDocument($document);
// PRE-CHECK
$this->assertCount(1, $insertDocumentParameters->getDocuments());
$this->assertTrue($createMeetingResponse->success());
// ACT
$insertDocumentResponse = $this->bbb->insertDocument($insertDocumentParameters);
// ASSERT
if (!$this->isFeatureDisabled(Feature::PRESENTATION, $createMeetingParameters)) {
$this->assertTrue($insertDocumentResponse->success());
} else {
$this->assertTrue($insertDocumentResponse->failed());
}
}
/**
* Test insert document (FILE) into existing meeting.
*/
public function testInsertDocumentFile(): void
{
// ARRANGE
$filepath = Fixtures::IMAGE_PATH . 'bbb_logo.png';
$filename = 'picture.png';
$document = new DocumentFile($filepath, $filename);
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
$insertDocumentParameters = new InsertDocumentParameters((string) $createMeetingParameters->getMeetingId());
$insertDocumentParameters->addDocument($document);
// PRE-CHECK
$this->assertCount(1, $insertDocumentParameters->getDocuments());
$this->assertTrue($createMeetingResponse->success());
// ACT
$insertDocumentResponse = $this->bbb->insertDocument($insertDocumentParameters);
// ASSERT
if (!$this->isFeatureDisabled(Feature::PRESENTATION, $createMeetingParameters)) {
$this->assertTrue($insertDocumentResponse->success());
} else {
$this->assertTrue($insertDocumentResponse->failed());
}
}
/**
* Test insert document (URL and FILE) into existing meeting.
*/
public function testInsertDocumentUrlAndFile(): void
{
// ARRANGE
$url = 'https://picsum.photos/3840/2160/?random';
$filename = 'picture.jpg';
$documentUrl = new DocumentUrl($url, $filename);
// file 2
$filepath = Fixtures::IMAGE_PATH . 'bbb_logo.png';
$filename = 'picture.png';
$documentFile = new DocumentFile($filepath, $filename);
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
$insertDocumentParameters = new InsertDocumentParameters((string) $createMeetingParameters->getMeetingId());
$insertDocumentParameters
->addDocument($documentUrl)
->addDocument($documentFile)
;
// PRE-CHECK
$this->assertCount(2, $insertDocumentParameters->getDocuments());
$this->assertTrue($createMeetingResponse->success());
// ACT
$insertDocumentResponse = $this->bbb->insertDocument($insertDocumentParameters);
// ASSERT
if (!$this->isFeatureDisabled(Feature::PRESENTATION, $createMeetingParameters)) {
$this->assertTrue($insertDocumentResponse->success());
} else {
$this->assertTrue($insertDocumentResponse->failed());
}
}
public function testSendChatMessage(): void
{
$createMeetingParameters = Fixtures::getCreateMeetingParametersMock(Fixtures::generateCreateParams());
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
$sendChatMessageParameters = new SendChatMessageParameters($createMeetingResponse->getMeetingId(), $this->faker->sentence());
$sendChatMessageParameters->setUserName($this->faker->userName());
$sendChatMessageResponse = $this->bbb->sendChatMessage($sendChatMessageParameters);
$this->assertTrue($sendChatMessageResponse->success());
}
// Join Meeting
/**
* @deprecated test will be removed together with the deprecated function from BigBlueButton::class
*
* Test create join meeting URL
*/
public function testCreateJoinMeetingUrl(): void
{
$joinMeetingParams = Fixtures::generateJoinMeetingParams();
$joinMeetingMock = Fixtures::getJoinMeetingMock($joinMeetingParams);
$url = $this->bbb->getJoinMeetingURL($joinMeetingMock);
$paramsIterator = new ParamsIterator('testCreateJoinMeetingUrl');
$paramsIterator->iterate($joinMeetingParams, $url);
}
/**
* @expectedException \Exception
*
* @expectedExceptionMessage String could not be parsed as XML
*/
public function testJoinMeeting(): void
{
// create a meeting that can be joined
$createMeetingParameters = new CreateMeetingParameters($this->faker->uuid(), $this->faker->word());
$createMeetingResponse = $this->bbb->createMeeting($createMeetingParameters);
$this->assertEquals('SUCCESS', $createMeetingResponse->getReturnCode());
$this->assertTrue($createMeetingResponse->success());
// prepare to join the meeting
$joinMeetingParams = Fixtures::generateJoinMeetingParams();
$joinMeetingMock = Fixtures::getJoinMeetingMock($joinMeetingParams);
// adapt to join the above created meeting
$joinMeetingMock->setRedirect(false);
$joinMeetingMock->setMeetingId($createMeetingResponse->getMeetingId());
$joinMeetingMock->setCreationTime($createMeetingResponse->getCreationTime());
// join the meeting
$joinMeetingResponse = $this->bbb->joinMeeting($joinMeetingMock);
$this->assertEquals(
'SUCCESS',
$joinMeetingResponse->getReturnCode(),
$joinMeetingResponse->getRawXml()->message->__toString()
);
$this->assertTrue($joinMeetingResponse->success());
$this->assertNotEmpty($joinMeetingResponse->getAuthToken());
$this->assertNotEmpty($joinMeetingResponse->getUserId());
$this->assertNotEmpty($joinMeetingResponse->getSessionToken());
$this->assertNotEmpty($joinMeetingResponse->getGuestStatus());
$this->assertNotEmpty($joinMeetingResponse->getUrl());
}
// End Meeting
/**
* @deprecated test will be removed together with the deprecated function from BigBlueButton::class
*
* Test generate end meeting URL
*/
public function testCreateEndMeetingUrl(): void
{
$params = Fixtures::generateEndMeetingParams();
$url = $this->bbb->getEndMeetingURL(Fixtures::getEndMeetingMock($params));
$paramsIterator = new ParamsIterator('testCreateEndMeetingUrl');
$paramsIterator->iterate($params, $url);
}
public function testEndMeeting(): void
{
$meeting = $this->createRealMeeting($this->bbb);
$endMeeting = new EndMeetingParameters($meeting->getMeetingId(), $meeting->getModeratorPassword());
$result = $this->bbb->endMeeting($endMeeting);
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
public function testEndNonExistingMeeting(): void
{
$params = Fixtures::generateEndMeetingParams();
$result = $this->bbb->endMeeting(Fixtures::getEndMeetingMock($params));
$this->assertEquals('FAILED', $result->getReturnCode());
$this->assertTrue($result->failed());
}
// Is Meeting Running / Existing
public function testIsMeetingRunning(): void
{
$result = $this->bbb->isMeetingRunning(new IsMeetingRunningParameters($this->faker->uuid));
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
$this->assertEquals(false, $result->isRunning());
}
public function testIsMeetingExisting(): void
{
$meetingId = $this->faker->uuid;
// check existence of non-existing meeting
$isMeetingExisting = $this->bbb->isMeetingExisting($meetingId);
$this->assertFalse($isMeetingExisting);
// create meeting
$createMeetingResponse = $this->bbb->createMeeting(new CreateMeetingParameters($meetingId, $this->faker->word));
$this->assertEquals('SUCCESS', $createMeetingResponse->getReturnCode());
$this->assertTrue($createMeetingResponse->success());
// check existence of existing meeting
$isMeetingExisting = $this->bbb->isMeetingExisting($meetingId);
$this->assertTrue($isMeetingExisting);
}
// Get Meetings
/**
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
*/
public function testGetMeetingsUrl(): void
{
$url = $this->bbb->getMeetingsUrl();
$this->assertStringContainsString(ApiMethod::GET_MEETINGS, $url);
}
public function testGetMeetings(): void
{
// create some meetings
$createMeetingResponse = $this->createRealMeeting($this->bbb);
$this->assertEquals('SUCCESS', $createMeetingResponse->getReturnCode());
$result = $this->bbb->getMeetings();
$this->assertNotEmpty($result->getMeetings());
}
// Get meeting info
/**
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
*/
public function testGetMeetingInfoUrl(): void
{
$meeting = $this->createRealMeeting($this->bbb);
$url = $this->bbb->getMeetingInfoUrl(new GetMeetingInfoParameters($meeting->getMeetingId()));
$this->assertStringContainsString('=' . urlencode($meeting->getMeetingId()), $url);
}
public function testGetMeetingInfo(): void
{
$meeting = $this->createRealMeeting($this->bbb);
$result = $this->bbb->getMeetingInfo(new GetMeetingInfoParameters($meeting->getMeetingId()));
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
// Get Recordings
/**
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
*/
public function testGetRecordingsUrl(): void
{
$url = $this->bbb->getRecordingsUrl(new GetRecordingsParameters());
$this->assertStringContainsString(ApiMethod::GET_RECORDINGS, $url);
}
public function testGetRecordings(): void
{
$result = $this->bbb->getRecordings(new GetRecordingsParameters());
$this->assertEquals('SUCCESS', $result->getReturnCode());
$this->assertTrue($result->success());
}
/**
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
*/
public function testPublishRecordingsUrl(): void
{
$url = $this->bbb->getPublishRecordingsUrl(new PublishRecordingsParameters($this->faker->sha1, true));
$this->assertStringContainsString(ApiMethod::PUBLISH_RECORDINGS, $url);
}
public function testPublishRecordings(): void
{
$result = $this->bbb->publishRecordings(new PublishRecordingsParameters('non-existing-id-' . $this->faker->sha1, true));
$this->assertEquals('FAILED', $result->getReturnCode());
$this->assertTrue($result->failed());
}
/**
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
*/
public function testDeleteRecordingsUrl(): void
{
$url = $this->bbb->getDeleteRecordingsUrl(new DeleteRecordingsParameters($this->faker->sha1));
$this->assertStringContainsString(ApiMethod::DELETE_RECORDINGS, $url);
}
public function testDeleteRecordings(): void
{
$result = $this->bbb->deleteRecordings(new DeleteRecordingsParameters('non-existing-id-' . $this->faker->sha1));
$this->assertEquals('FAILED', $result->getReturnCode());
$this->assertTrue($result->failed());
}
/**
* @deprecated Test will be removed together with the deprecated function from BigBlueButton::class
*/
public function testUpdateRecordingsUrl(): void
{
$params = Fixtures::generateUpdateRecordingsParams();
$url = $this->bbb->getUpdateRecordingsUrl(Fixtures::getUpdateRecordingsParamsMock($params));
$paramsIterator = new ParamsIterator('testUpdateRecordingsUrl');
$paramsIterator->iterate($params, $url);
}
public function testUpdateRecordings(): void
{
$params = Fixtures::generateUpdateRecordingsParams();
$result = $this->bbb->updateRecordings(Fixtures::getUpdateRecordingsParamsMock($params));
$this->assertEquals('FAILED', $result->getReturnCode());
$this->assertTrue($result->failed());
}
// Hooks: create
public function testHooksCreate(): void
{
// create a hook
$hooksCreateParameters = new HooksCreateParameters($this->faker->url);
$hooksCreateResponse = $this->bbb->hooksCreate($hooksCreateParameters);
$this->assertTrue($hooksCreateResponse->success(), $hooksCreateResponse->getMessage());
}
public function testHooksList(): void
{
// create a hook
$hooksListResponse = $this->bbb->hooksList();
$this->assertTrue($hooksListResponse->success(), $hooksListResponse->getMessage());
}
public function testHooksDestroy(): void
{
// create a hook
$hooksCreateParameters = new HooksCreateParameters($this->faker->url);
$hooksCreateResponse = $this->bbb->hooksCreate($hooksCreateParameters);
$this->assertTrue($hooksCreateResponse->success(), $hooksCreateResponse->getMessage());
$hookId = $hooksCreateResponse->getHookId();
$this->assertNotNull($hookId);
// destroy existing hook
$hooksDestroyParameters = new HooksDestroyParameters($hookId);
$hooksCreateResponse = $this->bbb->hooksDestroy($hooksDestroyParameters);
$this->assertTrue($hooksCreateResponse->success(), $hooksCreateResponse->getMessage());
// destroy non-existing hook
$hooksDestroyParameters = new HooksDestroyParameters($this->faker->numberBetween(10000, 99999));
$hooksCreateResponse = $this->bbb->hooksDestroy($hooksDestroyParameters);
$this->assertFalse($hooksCreateResponse->success(), $hooksCreateResponse->getMessage());
}
/**
* Checks whether a feature is disabled in meeting parameters.
*/
protected function isFeatureDisabled(Feature $feature, CreateMeetingParameters $createMeetingParameters): bool
{
return in_array($feature, $createMeetingParameters->getDisabledFeatures())
&& !in_array($feature, $createMeetingParameters->getDisabledFeaturesExclude());
}
}