urlGenerator = $this->createMock(IURLGenerator::class); $this->appConfig = $this->createMock(IAppConfig::class); $this->notificationManager = $this->createMock(IManager::class); $this->l10nFactory = $this->createMock(IFactory::class); $this->userSession = $this->createMock(IUserSession::class); $this->groupManager = $this->createMock(IGroupManager::class); $this->appManager = $this->createMock(IAppManager::class); $this->serverVersion = $this->createMock(ServerVersion::class); } /** * @param array $methods * @return Notifier|MockObject */ protected function getNotifier(array $methods = []): Notifier { if (empty($methods)) { return new Notifier( $this->urlGenerator, $this->appConfig, $this->notificationManager, $this->l10nFactory, $this->userSession, $this->groupManager, $this->appManager, $this->serverVersion, ); } { return $this->getMockBuilder(Notifier::class) ->setConstructorArgs([ $this->urlGenerator, $this->appConfig, $this->notificationManager, $this->l10nFactory, $this->userSession, $this->groupManager, $this->appManager, $this->serverVersion, ]) ->onlyMethods($methods) ->getMock(); } } public static function dataUpdateAlreadyInstalledCheck(): array { return [ ['1.1.0', '1.0.0', false], ['1.1.0', '1.1.0', true], ['1.1.0', '1.2.0', true], ]; } #[\PHPUnit\Framework\Attributes\DataProvider('dataUpdateAlreadyInstalledCheck')] public function testUpdateAlreadyInstalledCheck(string $versionNotification, string $versionInstalled, bool $exception): void { $notifier = $this->getNotifier(); $notification = $this->createMock(INotification::class); $notification->expects($this->once()) ->method('getObjectId') ->willReturn($versionNotification); try { self::invokePrivate($notifier, 'updateAlreadyInstalledCheck', [$notification, $versionInstalled]); $this->assertFalse($exception); } catch (\Exception $e) { $this->assertTrue($exception); $this->assertInstanceOf(AlreadyProcessedException::class, $e); } } }