summaryrefslogtreecommitdiffstats
path: root/apps/encryption/tests/KeyManagerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/encryption/tests/KeyManagerTest.php')
-rw-r--r--apps/encryption/tests/KeyManagerTest.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/encryption/tests/KeyManagerTest.php b/apps/encryption/tests/KeyManagerTest.php
index 7af9e39e95d..fd2cac6461b 100644
--- a/apps/encryption/tests/KeyManagerTest.php
+++ b/apps/encryption/tests/KeyManagerTest.php
@@ -79,7 +79,7 @@ class KeyManagerTest extends TestCase {
/** @var \OCP\IConfig|\PHPUnit_Framework_MockObject_MockObject */
private $configMock;
- public function setUp() {
+ protected function setUp(): void {
parent::setUp();
$this->userId = 'user1';
$this->systemKeyId = 'systemKeyId';
@@ -220,10 +220,10 @@ class KeyManagerTest extends TestCase {
];
}
- /**
- * @expectedException \OCA\Encryption\Exceptions\PrivateKeyMissingException
- */
+
public function testUserHasKeysMissingPrivateKey() {
+ $this->expectException(\OCA\Encryption\Exceptions\PrivateKeyMissingException::class);
+
$this->keyStorageMock->expects($this->exactly(2))
->method('getUserKey')
->willReturnCallback(function ($uid, $keyID, $encryptionModuleId) {
@@ -236,10 +236,10 @@ class KeyManagerTest extends TestCase {
$this->instance->userHasKeys($this->userId);
}
- /**
- * @expectedException \OCA\Encryption\Exceptions\PublicKeyMissingException
- */
+
public function testUserHasKeysMissingPublicKey() {
+ $this->expectException(\OCA\Encryption\Exceptions\PublicKeyMissingException::class);
+
$this->keyStorageMock->expects($this->exactly(2))
->method('getUserKey')
->willReturnCallback(function ($uid, $keyID, $encryptionModuleId){
@@ -536,10 +536,10 @@ class KeyManagerTest extends TestCase {
);
}
- /**
- * @expectedException \Exception
- */
+
public function testGetMasterKeyPasswordException() {
+ $this->expectException(\Exception::class);
+
$this->configMock->expects($this->once())->method('getSystemValue')->with('secret')
->willReturn('');