keyManagerTest: remove code which is no longer needed

This commit is contained in:
Bjoern Schiessle 2015-03-31 20:32:50 +02:00 committed by Thomas Müller
parent 4efbcb0280
commit c9ca068427
1 changed files with 0 additions and 32 deletions

View File

@ -10,7 +10,6 @@
namespace OCA\Encryption\Tests;
use OC\Files\View;
use OCA\Encryption\KeyManager;
use Test\TestCase;
@ -27,26 +26,10 @@ class KeyManagerTest extends TestCase {
* @var string
*/
private static $testUser = 'test-keyManager-user.dot';
/**
* @var
*/
private $dummyKeys;
/**
* @var string
*/
private $userId;
/**
* @var string
*/
private $userPassword;
/**
* @var \OC\Files\View
*/
private $view;
/**
* @var string
*/
private $dataDir;
/** @var string */
private $systemKeyId;
@ -97,14 +80,6 @@ class KeyManagerTest extends TestCase {
$this->userId = 'user1';
$this->systemKeyId = 'systemKeyId';
$this->keyStorageMock = $this->getMock('OCP\Encryption\Keys\IStorage');
/*
$keyStorageMock->method('getUserKey')
->will($this->returnValue(false));
$keyStorageMock->method('setUserKey')
->will($this->returnValue(true));
*/
$this->cryptMock = $this->getMockBuilder('OCA\Encryption\Crypto\Crypt')
->disableOriginalConstructor()
->getMock();
@ -113,13 +88,6 @@ class KeyManagerTest extends TestCase {
->method('getAppValue')
->willReturn($this->systemKeyId);
$this->userMock = $this->getMock('OCP\IUserSession');
/*
$userMock
->method('getUID')
->will($this->returnValue('admin'));
*/
$this->sessionMock = $this->getMockBuilder('OCA\Encryption\Session')
->disableOriginalConstructor()
->getMock();