aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Notification
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-11-27 15:27:18 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-27 15:27:18 +0100
commit3a7cf40aaa678bea1df143d2982d603b7a334eec (patch)
tree63c1e3ad7f7f401d14411a4d44c523632906afc9 /tests/lib/Notification
parent0568b012672d650c6b5a49e72c4028dde5463c60 (diff)
downloadnextcloud-server-3a7cf40aaa678bea1df143d2982d603b7a334eec.tar.gz
nextcloud-server-3a7cf40aaa678bea1df143d2982d603b7a334eec.zip
Mode to modern phpunit
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/Notification')
-rw-r--r--tests/lib/Notification/ActionTest.php11
-rw-r--r--tests/lib/Notification/ManagerTest.php8
-rw-r--r--tests/lib/Notification/NotificationTest.php44
3 files changed, 38 insertions, 25 deletions
diff --git a/tests/lib/Notification/ActionTest.php b/tests/lib/Notification/ActionTest.php
index 5103babd0e2..1923f2305e1 100644
--- a/tests/lib/Notification/ActionTest.php
+++ b/tests/lib/Notification/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends TestCase {
/** @var IAction */
protected $action;
- public function setUp(): void {
+ protected function setUp(): void {
parent::setUp();
$this->action = new Action();
}
@@ -64,9 +64,10 @@ class ActionTest extends TestCase {
* @dataProvider dataSetLabelInvalid
* @param mixed $label
*
- * @expectedException \InvalidArgumentException
*/
public function testSetLabelInvalid($label) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->action->setLabel($label);
}
@@ -98,9 +99,10 @@ class ActionTest extends TestCase {
* @dataProvider dataSetParsedLabelInvalid
* @param mixed $label
*
- * @expectedException \InvalidArgumentException
*/
public function testSetParsedLabelInvalid($label) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->action->setParsedLabel($label);
}
@@ -141,9 +143,10 @@ class ActionTest extends TestCase {
* @param mixed $link
* @param mixed $type
*
- * @expectedException \InvalidArgumentException
*/
public function testSetLinkInvalid($link, $type) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->action->setLink($link, $type);
}
diff --git a/tests/lib/Notification/ManagerTest.php b/tests/lib/Notification/ManagerTest.php
index 5de0b572607..6ca83b4b367 100644
--- a/tests/lib/Notification/ManagerTest.php
+++ b/tests/lib/Notification/ManagerTest.php
@@ -40,7 +40,7 @@ class ManagerTest extends TestCase {
/** @var ILogger|MockObject */
protected $logger;
- public function setUp(): void {
+ protected function setUp(): void {
parent::setUp();
$this->validator = $this->createMock(IValidator::class);
$this->logger = $this->createMock(ILogger::class);
@@ -119,10 +119,10 @@ class ManagerTest extends TestCase {
$manager->notify($notification);
}
- /**
- * @expectedException \InvalidArgumentException
- */
+
public function testNotifyInvalid() {
+ $this->expectException(\InvalidArgumentException::class);
+
/** @var \OCP\Notification\INotification|\PHPUnit_Framework_MockObject_MockObject $notification */
$notification = $this->getMockBuilder(INotification::class)
->disableOriginalConstructor()
diff --git a/tests/lib/Notification/NotificationTest.php b/tests/lib/Notification/NotificationTest.php
index 6b021ceb6d3..c70fa1ec7df 100644
--- a/tests/lib/Notification/NotificationTest.php
+++ b/tests/lib/Notification/NotificationTest.php
@@ -35,7 +35,7 @@ class NotificationTest extends TestCase {
/** @var IValidator|\PHPUnit_Framework_MockObject_MockObject */
protected $validator;
- public function setUp(): void {
+ protected function setUp(): void {
parent::setUp();
$this->validator = $this->createMock(IValidator::class);
$this->notification = new Notification($this->validator);
@@ -85,9 +85,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetAppInvalid
* @param mixed $app
*
- * @expectedException \InvalidArgumentException
*/
public function testSetAppInvalid($app) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setApp($app);
}
@@ -114,9 +115,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetUserInvalid
* @param mixed $user
*
- * @expectedException \InvalidArgumentException
*/
public function testSetUserInvalid($user) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setUser($user);
}
@@ -156,10 +158,11 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetDateTimeZero
* @param \DateTime $dateTime
*
- * @expectedException \InvalidArgumentException
* @expectedMessage 'The given date time is invalid'
*/
public function testSetDateTimeZero($dateTime) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setDateTime($dateTime);
}
@@ -198,10 +201,11 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetObjectIdInvalid
* @param mixed $id
*
- * @expectedException \InvalidArgumentException
* @expectedMessage 'The given object id is invalid'
*/
public function testSetObjectIdInvalid($id) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setObject('object', $id);
}
@@ -234,9 +238,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetSubjectInvalidSubject
* @param mixed $subject
*
- * @expectedException \InvalidArgumentException
*/
public function testSetSubjectInvalidSubject($subject) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setSubject($subject, []);
}
@@ -262,9 +267,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetParsedSubjectInvalid
* @param mixed $subject
*
- * @expectedException \InvalidArgumentException
*/
public function testSetParsedSubjectInvalid($subject) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setParsedSubject($subject);
}
@@ -297,9 +303,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetMessageInvalidMessage
* @param mixed $message
*
- * @expectedException \InvalidArgumentException
*/
public function testSetMessageInvalidMessage($message) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setMessage($message, []);
}
@@ -325,9 +332,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetParsedMessageInvalid
* @param mixed $message
*
- * @expectedException \InvalidArgumentException
*/
public function testSetParsedMessageInvalid($message) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setParsedMessage($message);
}
@@ -353,9 +361,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetLinkInvalid
* @param mixed $link
*
- * @expectedException \InvalidArgumentException
*/
public function testSetLinkInvalid($link) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setLink($link);
}
@@ -381,9 +390,10 @@ class NotificationTest extends TestCase {
* @dataProvider dataSetIconInvalid
* @param mixed $icon
*
- * @expectedException \InvalidArgumentException
*/
public function testSetIconInvalid($icon) {
+ $this->expectException(\InvalidArgumentException::class);
+
$this->notification->setIcon($icon);
}
@@ -407,10 +417,10 @@ class NotificationTest extends TestCase {
$this->assertEquals([], $this->notification->getParsedActions());
}
- /**
- * @expectedException \InvalidArgumentException
- */
+
public function testAddActionInvalid() {
+ $this->expectException(\InvalidArgumentException::class);
+
/** @var \OCP\Notification\IAction|\PHPUnit_Framework_MockObject_MockObject $action */
$action = $this->createMock(IAction::class);
$action->expects($this->once())
@@ -453,10 +463,10 @@ class NotificationTest extends TestCase {
$this->assertEquals([], $this->notification->getActions());
}
- /**
- * @expectedException \InvalidArgumentException
- */
+
public function testAddParsedActionInvalid() {
+ $this->expectException(\InvalidArgumentException::class);
+
/** @var \OCP\Notification\IAction|\PHPUnit_Framework_MockObject_MockObject $action */
$action = $this->createMock(IAction::class);
$action->expects($this->once())