summaryrefslogtreecommitdiffstats
path: root/apps/encryption/tests/lib/crypto
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-04-28 17:29:10 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-04-28 20:21:53 +0200
commitdf428b76ac498110bde0bfec1ad726cf24c21cfa (patch)
tree36675bbc0c99deee2c11fb996fb8396b90266818 /apps/encryption/tests/lib/crypto
parent557b4a2cb0ae0367e5facb1e4be136de07ab8cff (diff)
downloadnextcloud-server-df428b76ac498110bde0bfec1ad726cf24c21cfa.tar.gz
nextcloud-server-df428b76ac498110bde0bfec1ad726cf24c21cfa.zip
skip update of encryption keys if file is not encrypted
Diffstat (limited to 'apps/encryption/tests/lib/crypto')
-rw-r--r--apps/encryption/tests/lib/crypto/encryptionTest.php49
1 files changed, 47 insertions, 2 deletions
diff --git a/apps/encryption/tests/lib/crypto/encryptionTest.php b/apps/encryption/tests/lib/crypto/encryptionTest.php
index 500433c77d4..2fbc7a111da 100644
--- a/apps/encryption/tests/lib/crypto/encryptionTest.php
+++ b/apps/encryption/tests/lib/crypto/encryptionTest.php
@@ -38,6 +38,9 @@ class EncryptionTest extends TestCase {
/** @var \PHPUnit_Framework_MockObject_MockObject */
private $utilMock;
+ /** @var \PHPUnit_Framework_MockObject_MockObject */
+ private $loggerMock;
+
public function setUp() {
parent::setUp();
@@ -50,8 +53,16 @@ class EncryptionTest extends TestCase {
$this->keyManagerMock = $this->getMockBuilder('OCA\Encryption\KeyManager')
->disableOriginalConstructor()
->getMock();
+ $this->loggerMock = $this->getMockBuilder('OCP\ILogger')
+ ->disableOriginalConstructor()
+ ->getMock();
- $this->instance = new Encryption($this->cryptMock, $this->keyManagerMock, $this->utilMock);
+ $this->instance = new Encryption(
+ $this->cryptMock,
+ $this->keyManagerMock,
+ $this->utilMock,
+ $this->loggerMock
+ );
}
/**
@@ -83,6 +94,9 @@ class EncryptionTest extends TestCase {
$this->cryptMock->expects($this->any())
->method('getLegacyCipher')
->willReturn($legacyCipher);
+ $this->cryptMock->expects($this->any())
+ ->method('generateFileKey')
+ ->willReturn('fileKey');
$result = $this->instance->begin('/user/files/foo.txt', 'user', $mode, $header, []);
@@ -99,5 +113,36 @@ class EncryptionTest extends TestCase {
);
}
+ /**
+ * @dataProvider dataTestUpdate
+ *
+ * @param string $fileKey
+ * @param boolean $expected
+ */
+ public function testUpdate($fileKey, $expected) {
+ $this->keyManagerMock->expects($this->once())
+ ->method('getFileKey')->willReturn($fileKey);
+
+ $this->keyManagerMock->expects($this->any())
+ ->method('getPublicKey')->willReturn('publicKey');
+
+ $this->keyManagerMock->expects($this->any())
+ ->method('addSystemKeys')
+ ->willReturnCallback(function($accessList, $publicKeys) {
+ return $publicKeys;
+ });
+
+ $this->assertSame($expected,
+ $this->instance->update('path', 'user1', ['users' => ['user1']])
+ );
+
+ }
+
+ public function dataTestUpdate() {
+ return array(
+ array('', false),
+ array('fileKey', true)
+ );
+ }
-} \ No newline at end of file
+}