-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathAppTest.php
More file actions
87 lines (72 loc) · 2.07 KB
/
Copy pathAppTest.php
File metadata and controls
87 lines (72 loc) · 2.07 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
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Notifications\Tests\Unit;
use OCA\Notifications\App;
use OCA\Notifications\Handler;
use OCA\Notifications\Push;
use OCP\Notification\INotification;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Test\TestCase;
class AppTest extends TestCase {
protected Handler&MockObject $handler;
protected Push&MockObject $push;
protected INotification&MockObject $notification;
protected LoggerInterface&MockObject $logger;
protected App $app;
protected function setUp(): void {
parent::setUp();
$this->handler = $this->createMock(Handler::class);
$this->push = $this->createMock(Push::class);
$this->notification = $this->createMock(INotification::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->app = new App(
$this->handler,
$this->push,
$this->logger,
);
}
public static function dataNotify(): array {
return [
[23],
[42],
];
}
#[DataProvider(methodName: 'dataNotify')]
public function testNotify(int $id): void {
$this->handler->expects($this->once())
->method('add')
->with($this->notification)
->willReturn($id);
$this->push->expects($this->once())
->method('pushToDevice')
->with($id, $this->notification);
$this->app->notify($this->notification);
}
public static function dataGetCount(): array {
return [
[23],
[42],
];
}
#[DataProvider(methodName: 'dataGetCount')]
public function testGetCount(int $count): void {
$this->handler->expects($this->once())
->method('count')
->with($this->notification)
->willReturn($count);
$this->assertSame($count, $this->app->getCount($this->notification));
}
public function testMarkProcessed(): void {
$this->handler->expects($this->once())
->method('delete')
->with($this->notification);
$this->app->markProcessed($this->notification);
}
}