From f03eb7ec3c130d19323f7fb4bdb5ba398f1b3e2d Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Wed, 3 Apr 2019 16:00:46 +0200 Subject: Remote wipe support This allows a user to mark a token for remote wipe. Clients that support this can then wipe the device properly. Signed-off-by: Roeland Jago Douma Signed-off-by: Christoph Wurst --- tests/Core/Controller/WipeControllerTest.php | 120 +++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 tests/Core/Controller/WipeControllerTest.php (limited to 'tests') diff --git a/tests/Core/Controller/WipeControllerTest.php b/tests/Core/Controller/WipeControllerTest.php new file mode 100644 index 00000000000..cc084890e70 --- /dev/null +++ b/tests/Core/Controller/WipeControllerTest.php @@ -0,0 +1,120 @@ + + * + * @author Roeland Jago Douma + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +namespace Tests\Core\Controller; + +use OC\Authentication\Exceptions\InvalidTokenException; +use OC\Authentication\Token\RemoteWipe; +use OC\Core\Controller\WipeController; +use OCP\AppFramework\Http; +use OCP\IRequest; +use PHPUnit\Framework\MockObject\MockObject; +use Test\TestCase; + +class WipeControllerTest extends TestCase { + + /** @var RemoteWipe|MockObject */ + private $remoteWipe; + + /** @var WipeController */ + private $controller; + + public function setUp() { + parent::setUp(); + + $this->remoteWipe = $this->createMock(RemoteWipe::class); + $this->controller = new WipeController( + 'core', + $this->createMock(IRequest::class), + $this->remoteWipe); + } + + public function dataTest() { + return [ + // valid token, could perform operation, valid result + [ true, true, true], + [ true, false, false], + [false, true, false], + [false, false, false], + ]; + } + + /** + * @param bool $valid + * @param bool $couldPerform + * @param bool $result + * + * @dataProvider dataTest + */ + public function testCheckWipe(bool $valid, bool $couldPerform, bool $result) { + if (!$valid) { + $this->remoteWipe->method('start') + ->with('mytoken') + ->willThrowException(new InvalidTokenException()); + } else { + $this->remoteWipe->method('start') + ->with('mytoken') + ->willReturn($couldPerform); + } + + $result = $this->controller->checkWipe('mytoken'); + + if (!$valid || !$couldPerform) { + $this->assertSame(Http::STATUS_NOT_FOUND, $result->getStatus()); + $this->assertSame([], $result->getData()); + } else { + $this->assertSame(Http::STATUS_OK, $result->getStatus()); + $this->assertSame(['wipe' => true], $result->getData()); + } + } + + /** + * @param bool $valid + * @param bool $couldPerform + * @param bool $result + * + * @dataProvider dataTest + */ + public function testWipeDone(bool $valid, bool $couldPerform, bool $result) { + if (!$valid) { + $this->remoteWipe->method('finish') + ->with('mytoken') + ->willThrowException(new InvalidTokenException()); + } else { + $this->remoteWipe->method('finish') + ->with('mytoken') + ->willReturn($couldPerform); + } + + $result = $this->controller->wipeDone('mytoken'); + + if (!$valid || !$couldPerform) { + $this->assertSame(Http::STATUS_NOT_FOUND, $result->getStatus()); + $this->assertSame([], $result->getData()); + } else { + $this->assertSame(Http::STATUS_OK, $result->getStatus()); + $this->assertSame([], $result->getData()); + } + } +} -- cgit v1.2.3