getMock('\OCP\IConfig'); $m = new Manager($config); $this->assertFalse($m->isEnabled()); } public function testManagerIsDisabledIfEnabledButNoModules() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn(true); $m = new Manager($config); $this->assertFalse($m->isEnabled()); } public function testManagerIsDisabledIfDisabledButModules() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn(false); $em = $this->getMock('\OCP\Encryption\IEncryptionModule'); $em->expects($this->any())->method('getId')->willReturn(0); $em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0'); $m = new Manager($config); $m->registerEncryptionModule($em); $this->assertFalse($m->isEnabled()); } public function testManagerIsEnabled() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getSystemValue')->willReturn(true); $config->expects($this->any())->method('getAppValue')->willReturn('yes'); $m = new Manager($config); $this->assertTrue($m->isEnabled()); } /** * @expectedException \OC\Encryption\Exceptions\ModuleAlreadyExistsException * @expectedExceptionMessage Id "0" already used by encryption module "TestDummyModule0" */ public function testModuleRegistration() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn('yes'); $em = $this->getMock('\OCP\Encryption\IEncryptionModule'); $em->expects($this->any())->method('getId')->willReturn(0); $em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0'); $m = new Manager($config); $m->registerEncryptionModule($em); $this->assertSame(1, count($m->getEncryptionModules())); $m->registerEncryptionModule($em); } public function testModuleUnRegistration() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn(true); $em = $this->getMock('\OCP\Encryption\IEncryptionModule'); $em->expects($this->any())->method('getId')->willReturn(0); $em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0'); $m = new Manager($config); $m->registerEncryptionModule($em); $this->assertSame(1, count($m->getEncryptionModules()) ); $m->unregisterEncryptionModule($em); $this->assertEmpty($m->getEncryptionModules()); } /** * @expectedException \OC\Encryption\Exceptions\ModuleDoesNotExistsException * @expectedExceptionMessage Module with id: unknown does not exists. */ public function testGetEncryptionModuleUnknown() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn(true); $em = $this->getMock('\OCP\Encryption\IEncryptionModule'); $em->expects($this->any())->method('getId')->willReturn(0); $em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0'); $m = new Manager($config); $m->registerEncryptionModule($em); $this->assertSame(1, count($m->getEncryptionModules())); $m->getEncryptionModule('unknown'); } public function testGetEncryptionModule() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn(true); $em = $this->getMock('\OCP\Encryption\IEncryptionModule'); $em->expects($this->any())->method('getId')->willReturn(0); $em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0'); $m = new Manager($config); $m->registerEncryptionModule($em); $this->assertSame(1, count($m->getEncryptionModules())); $en0 = $m->getEncryptionModule(0); $this->assertEquals(0, $en0->getId()); } public function testGetDefaultEncryptionModule() { $config = $this->getMock('\OCP\IConfig'); $config->expects($this->any())->method('getAppValue')->willReturn(true); $em = $this->getMock('\OCP\Encryption\IEncryptionModule'); $em->expects($this->any())->method('getId')->willReturn(0); $em->expects($this->any())->method('getDisplayName')->willReturn('TestDummyModule0'); $m = new Manager($config); $m->registerEncryptionModule($em); $this->assertSame(1, count($m->getEncryptionModules())); $en0 = $m->getEncryptionModule(0); $this->assertEquals(0, $en0->getId()); } }