use OC\Encryption\EncryptionWrapper;
+use OC\Encryption\Manager;
+use OC\Memcache\ArrayCache;
+use OCP\ILogger;
use Test\TestCase;
class EncryptionWrapperTest extends TestCase {
public function setUp() {
parent::setUp();
- $this->arrayCache = $this->getMock('OC\Memcache\ArrayCache');
- $this->manager = $this->getMockBuilder('OC\Encryption\Manager')
- ->disableOriginalConstructor()->getMock();
- $this->logger = $this->getMock('OCP\ILogger');
+ $this->arrayCache = $this->createMock(ArrayCache::class);
+ $this->manager = $this->createMock(Manager::class);
+ $this->logger = $this->createMock(ILogger::class);
+ $this->logger = $this->createMock(ILogger::class);
$this->instance = new EncryptionWrapper($this->arrayCache, $this->manager, $this->logger);
}
namespace Test\Encryption;
use OC\Encryption\Manager;
+use OC\Encryption\Util;
+use OC\Files\View;
+use OC\Memcache\ArrayCache;
+use OCP\Encryption\IEncryptionModule;
+use OCP\IConfig;
+use OCP\IL10N;
+use OCP\ILogger;
use Test\TestCase;
class ManagerTest extends TestCase {
public function setUp() {
parent::setUp();
- $this->config = $this->getMock('\OCP\IConfig');
- $this->logger = $this->getMock('\OCP\ILogger');
- $this->l10n = $this->getMock('\OCP\Il10n');
- $this->view = $this->getMock('\OC\Files\View');
- $this->util = $this->getMockBuilder('\OC\Encryption\Util')->disableOriginalConstructor()->getMock();
- $this->arrayCache = $this->getMock('OC\Memcache\ArrayCache');
+ $this->config = $this->createMock(IConfig::class);
+ $this->logger = $this->createMock(ILogger::class);
+ $this->l10n = $this->createMock(IL10N::class);
+ $this->view = $this->createMock(View::class);
+ $this->util = $this->createMock(Util::class);
+ $this->arrayCache = $this->createMock(ArrayCache::class);
$this->manager = new Manager($this->config, $this->logger, $this->l10n, $this->view, $this->util, $this->arrayCache);
}
public function testManagerIsDisabledIfDisabledButModules() {
$this->config->expects($this->any())->method('getAppValue')->willReturn(false);
- $em = $this->getMock('\OCP\Encryption\IEncryptionModule');
+ $em = $this->createMock(IEncryptionModule::class);
$em->expects($this->any())->method('getId')->willReturn('id');
$em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0');
$this->manager->registerEncryptionModule('id', 'TestDummyModule0', function() use ($em) {return $em;});
// }
protected function addNewEncryptionModule(Manager $manager, $id) {
- $encryptionModule = $this->getMock('\OCP\Encryption\IEncryptionModule');
+ $encryptionModule = $this->createMock(IEncryptionModule::class);
$encryptionModule->expects($this->any())
->method('getId')
->willReturn('ID' . $id);
namespace Test\Encryption;
use OC\Encryption\Util;
+use OCP\Encryption\IEncryptionModule;
use Test\TestCase;
class UtilTest extends TestCase {
*/
public function testCreateHeader($expected, $header, $moduleId) {
- $em = $this->getMock('\OCP\Encryption\IEncryptionModule');
+ $em = $this->createMock(IEncryptionModule::class);
$em->expects($this->any())->method('getId')->willReturn($moduleId);
$result = $this->util->createHeader($header, $em);
$header = array('header1' => 1, 'header2' => 2, 'oc_encryption_module' => 'foo');
- $em = $this->getMock('\OCP\Encryption\IEncryptionModule');
+ $em = $this->createMock(IEncryptionModule::class);
$em->expects($this->any())->method('getId')->willReturn('moduleId');
$this->util->createHeader($header, $em);