backend = $this->createMock(CalDavBackend::class); $this->l10n = $this->createMock(IL10N::class); $this->config = $this->createMock(IConfig::class); $this->logger = $this->createMock(LoggerInterface::class); $this->manager = new CalendarManager( $this->backend, $this->l10n, $this->config, $this->logger ); } public function testSetupCalendarProvider(): void { $this->backend->expects($this->once()) ->method('getCalendarsForUser') ->with('principals/users/user123') ->willReturn([ ['id' => 123, 'uri' => 'blablub1'], ['id' => 456, 'uri' => 'blablub2'], ]); /** @var IManager | MockObject $calendarManager */ $calendarManager = $this->createMock(Manager::class); $registeredIds = []; $calendarManager->expects($this->exactly(2)) ->method('registerCalendar') ->willReturnCallback(function ($parameter) use (&$registeredIds): void { $this->assertInstanceOf(CalendarImpl::class, $parameter); $registeredIds[] = $parameter->getKey(); }); $this->manager->setupCalendarProvider($calendarManager, 'user123'); $this->assertEquals(['123','456'], $registeredIds); } }