Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 35 additions & 45 deletions apps/updatenotification/tests/Notification/NotifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,59 +51,49 @@ protected function setUp(): void {
/**
* @param array $methods
*/
protected function getNotifier(array $methods = []): Notifier|MockObject {
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();
}
protected function getNotifier(): Notifier {
return new Notifier(
$this->urlGenerator,
$this->appConfig,
$this->notificationManager,
$this->l10nFactory,
$this->userSession,
$this->groupManager,
$this->appManager,
$this->serverVersion,
);
}

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],
];
public function testUpdateAlreadyInstalledCheckWithOlderInstalledVersion(): void {
$notifier = $this->getNotifier();

$notification = $this->createMock(INotification::class);
$notification->expects($this->once())
->method('getObjectId')
->willReturn('1.1.0');

self::invokePrivate($notifier, 'updateAlreadyInstalledCheck', [$notification, '1.0.0']);
$this->addToAssertionCount(1);
}

#[\PHPUnit\Framework\Attributes\DataProvider(methodName: 'dataUpdateAlreadyInstalledCheck')]
public function testUpdateAlreadyInstalledCheck(string $versionNotification, string $versionInstalled, bool $exception): void {
#[\PHPUnit\Framework\Attributes\DataProvider(methodName: 'dataAlreadyInstalledVersions')]
public function testUpdateAlreadyInstalledCheckThrows(string $versionInstalled): 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);
}
->willReturn('1.1.0');

$this->expectException(AlreadyProcessedException::class);

self::invokePrivate($notifier, 'updateAlreadyInstalledCheck', [$notification, $versionInstalled]);
}

public static function dataAlreadyInstalledVersions(): array {
return [
['1.1.0'],
['1.2.0'],
];
}
}
Loading