Add assertions for NotificationTest

This commit is contained in:
Philipp Holzer 2021-12-10 17:32:41 +01:00
parent 245d194f87
commit f6e09204e9
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
1 changed files with 9 additions and 1 deletions

View File

@ -78,7 +78,15 @@ XML;
$notification = new Notification(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json']);
$response = $notification->run();
$this->toJson($response);
$json = $this->toJson($response);
self::assertIsArray($json);
foreach ($json as $note) {
self::assertIsInt($note->id);
self::assertIsInt($note->uid);
self::assertIsString($note->msg);
}
self::assertEquals(['Content-type' => ['application/json'], ICanCreateResponses::X_HEADER => ['json']], $response->getHeaders());
}