]> source.dussan.org Git - nextcloud-server.git/commitdiff
Comment duplicate test methods
authorThomas Müller <thomas.mueller@tmit.eu>
Fri, 27 Mar 2015 09:07:59 +0000 (10:07 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Apr 2015 11:30:27 +0000 (13:30 +0200)
tests/lib/encryption/managertest.php

index e5a1898515a9009769f1e9f3d9e746f0d648305f..4fcbc3b99830ac9c05020ee953bca0964d73f9c0 100644 (file)
@@ -112,61 +112,61 @@ class ManagerTest extends TestCase {
                $this->assertEquals(0, $en0->getId());
        }
 
-       /**
-        * @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('getSystemValue')->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->assertTrue($m->isEnabled());
-               $m->registerEncryptionModule($em);
-       }
-
-       public function testModuleUnRegistration() {
-               $config = $this->getMock('\OCP\IConfig');
-               $config->expects($this->any())->method('getSystemValue')->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->assertTrue($m->isEnabled());
-               $m->unregisterEncryptionModule($em);
-               $this->assertFalse($m->isEnabled());
-       }
-
-       /**
-        * @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('getSystemValue')->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->assertTrue($m->isEnabled());
-               $m->getEncryptionModule('unknown');
-       }
-
-       public function testGetEncryptionModule() {
-               $config = $this->getMock('\OCP\IConfig');
-               $config->expects($this->any())->method('getSystemValue')->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->assertTrue($m->isEnabled());
-               $en0 = $m->getEncryptionModule(0);
-               $this->assertEquals(0, $en0->getId());
-       }
+//     /**
+//      * @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('getSystemValue')->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->assertTrue($m->isEnabled());
+//             $m->registerEncryptionModule($em);
+//     }
+//
+//     public function testModuleUnRegistration() {
+//             $config = $this->getMock('\OCP\IConfig');
+//             $config->expects($this->any())->method('getSystemValue')->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->assertTrue($m->isEnabled());
+//             $m->unregisterEncryptionModule($em);
+//             $this->assertFalse($m->isEnabled());
+//     }
+//
+//     /**
+//      * @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('getSystemValue')->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->assertTrue($m->isEnabled());
+//             $m->getEncryptionModule('unknown');
+//     }
+//
+//     public function testGetEncryptionModule() {
+//             $config = $this->getMock('\OCP\IConfig');
+//             $config->expects($this->any())->method('getSystemValue')->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->assertTrue($m->isEnabled());
+//             $en0 = $m->getEncryptionModule(0);
+//             $this->assertEquals(0, $en0->getId());
+//     }
 }