Add a unit test for the decrypt method
This commit is contained in:
parent
7676166254
commit
4444db61b7
1 changed files with 11 additions and 1 deletions
|
@ -63,6 +63,10 @@ class EncryptionTest extends TestCase {
|
|||
$this->l10nMock = $this->getMockBuilder('OCP\IL10N')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
$this->l10nMock->expects($this->any())
|
||||
->method('t')
|
||||
->with($this->anything())
|
||||
->willReturnArgument(0);
|
||||
|
||||
$this->instance = new Encryption(
|
||||
$this->cryptMock,
|
||||
|
@ -227,7 +231,6 @@ class EncryptionTest extends TestCase {
|
|||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* by default the encryption module should encrypt regular files, files in
|
||||
* files_versions and files in files_trashbin
|
||||
*
|
||||
|
@ -252,4 +255,11 @@ class EncryptionTest extends TestCase {
|
|||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \OC\Encryption\Exceptions\DecryptionFailedException
|
||||
* @expectedExceptionMessage Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.
|
||||
*/
|
||||
public function testDecrypt() {
|
||||
$this->instance->decrypt('abc');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue