summaryrefslogtreecommitdiffstats
path: root/apps/encryption/tests/lib/crypto/encryptionTest.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-04-27 15:23:14 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-04-30 12:04:02 +0200
commit4a6808a0f4ea1a441599627fca6679513c93af95 (patch)
tree50b1ed3d55b1dc4788178d6828efbce3a9f54922 /apps/encryption/tests/lib/crypto/encryptionTest.php
parentcf4a6874fb3b699e4d2ca85e2a6aa68f9288a609 (diff)
downloadnextcloud-server-4a6808a0f4ea1a441599627fca6679513c93af95.tar.gz
nextcloud-server-4a6808a0f4ea1a441599627fca6679513c93af95.zip
Simplify the test
Diffstat (limited to 'apps/encryption/tests/lib/crypto/encryptionTest.php')
-rw-r--r--apps/encryption/tests/lib/crypto/encryptionTest.php14
1 files changed, 3 insertions, 11 deletions
diff --git a/apps/encryption/tests/lib/crypto/encryptionTest.php b/apps/encryption/tests/lib/crypto/encryptionTest.php
index 70e48a2eab8..aa28a8b44a4 100644
--- a/apps/encryption/tests/lib/crypto/encryptionTest.php
+++ b/apps/encryption/tests/lib/crypto/encryptionTest.php
@@ -19,7 +19,7 @@
*
*/
-namespace OCA\Encryption\Tests\Crypto;
+namespace OCA\Encryption\Tests\lib\Crypto;
use OCA\Encryption\Exceptions\PublicKeyMissingException;
use Test\TestCase;
@@ -92,16 +92,8 @@ class EncryptionTest extends TestCase {
*/
public function endTest() {
// prepare internal variables
- $class = get_class($this->instance);
- $module = new \ReflectionClass($class);
- $isWriteOperation = $module->getProperty('isWriteOperation');
- $writeCache = $module->getProperty('writeCache');
- $isWriteOperation->setAccessible(true);
- $writeCache->setAccessible(true);
- $isWriteOperation->setValue($this->instance, true);
- $writeCache->setValue($this->instance, '');
- $isWriteOperation->setAccessible(false);
- $writeCache->setAccessible(false);
+ \Test_Helper::invokePrivate($this->instance, 'isWriteOperation', [true]);
+ \Test_Helper::invokePrivate($this->instance, 'writeCache', ['']);
$this->keyManagerMock->expects($this->any())
->method('getPublicKey')