File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,24 @@ public function testIsMeetingRunning(): void
264264 $ this ->assertEquals (false , $ result ->isRunning ());
265265 }
266266
267+ public function testIsMeetingExisting (): void
268+ {
269+ $ meetingId = $ this ->faker ->uuid ;
270+
271+ // check existence of non-existing meeting
272+ $ isMeetingExisting = $ this ->bbb ->isMeetingExisting ($ meetingId );
273+ $ this ->assertFalse ($ isMeetingExisting );
274+
275+ // create meeting
276+ $ createMeetingResponse = $ this ->bbb ->createMeeting (new CreateMeetingParameters ($ meetingId , $ this ->faker ->word ));
277+ $ this ->assertEquals ('SUCCESS ' , $ createMeetingResponse ->getReturnCode ());
278+ $ this ->assertTrue ($ createMeetingResponse ->success ());
279+
280+ // check existence of existing meeting
281+ $ isMeetingExisting = $ this ->bbb ->isMeetingExisting ($ meetingId );
282+ $ this ->assertTrue ($ isMeetingExisting );
283+ }
284+
267285 // Get Meetings
268286
269287 public function testGetMeetingsUrl (): void
You can’t perform that action at this time.
0 commit comments