123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- <?php
- /**
- * @author Christoph Wurst <christoph@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace Test\Settings\Controller;
- use OC\AppFramework\Http;
- use OC\Authentication\Exceptions\InvalidTokenException;
- use OC\Authentication\Token\DefaultToken;
- use OC\Authentication\Token\IProvider;
- use OC\Authentication\Token\IToken;
- use OC\Settings\Controller\AuthSettingsController;
- use OCP\AppFramework\Http\JSONResponse;
- use OCP\IRequest;
- use OCP\ISession;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\Security\ISecureRandom;
- use OCP\Session\Exceptions\SessionNotAvailableException;
- use Test\TestCase;
- class AuthSettingsControllerTest extends TestCase {
- /** @var AuthSettingsController */
- private $controller;
- private $request;
- /** @var IProvider|\PHPUnit_Framework_MockObject_MockObject */
- private $tokenProvider;
- private $userManager;
- private $session;
- private $secureRandom;
- private $uid;
- protected function setUp() {
- parent::setUp();
- $this->request = $this->createMock(IRequest::class);
- $this->tokenProvider = $this->createMock(IProvider::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->session = $this->createMock(ISession::class);
- $this->secureRandom = $this->createMock(ISecureRandom::class);
- $this->uid = 'jane';
- $this->user = $this->createMock(IUser::class);
- $this->controller = new AuthSettingsController('core', $this->request, $this->tokenProvider, $this->userManager, $this->session, $this->secureRandom, $this->uid);
- }
- public function testIndex() {
- $token1 = new DefaultToken();
- $token1->setId(100);
- $token2 = new DefaultToken();
- $token2->setId(200);
- $tokens = [
- $token1,
- $token2,
- ];
- $sessionToken = new DefaultToken();
- $sessionToken->setId(100);
- $this->tokenProvider->expects($this->once())
- ->method('getTokenByUser')
- ->with($this->uid)
- ->will($this->returnValue($tokens));
- $this->session->expects($this->once())
- ->method('getId')
- ->will($this->returnValue('session123'));
- $this->tokenProvider->expects($this->once())
- ->method('getToken')
- ->with('session123')
- ->will($this->returnValue($sessionToken));
- $this->assertEquals([
- [
- 'id' => 100,
- 'name' => null,
- 'lastActivity' => 0,
- 'type' => 0,
- 'canDelete' => false,
- 'current' => true,
- 'scope' => ['filesystem' => true]
- ],
- [
- 'id' => 200,
- 'name' => null,
- 'lastActivity' => 0,
- 'type' => 0,
- 'canDelete' => true,
- 'scope' => ['filesystem' => true]
- ]
- ], $this->controller->index());
- }
- public function testCreate() {
- $name = 'Nexus 4';
- $sessionToken = $this->createMock(IToken::class);
- $deviceToken = $this->createMock(IToken::class);
- $password = '123456';
- $this->session->expects($this->once())
- ->method('getId')
- ->will($this->returnValue('sessionid'));
- $this->tokenProvider->expects($this->once())
- ->method('getToken')
- ->with('sessionid')
- ->will($this->returnValue($sessionToken));
- $this->tokenProvider->expects($this->once())
- ->method('getPassword')
- ->with($sessionToken, 'sessionid')
- ->will($this->returnValue($password));
- $sessionToken->expects($this->once())
- ->method('getLoginName')
- ->will($this->returnValue('User13'));
- $this->secureRandom->expects($this->exactly(5))
- ->method('generate')
- ->with(5, ISecureRandom::CHAR_HUMAN_READABLE)
- ->will($this->returnValue('XXXXX'));
- $newToken = 'XXXXX-XXXXX-XXXXX-XXXXX-XXXXX';
- $this->tokenProvider->expects($this->once())
- ->method('generateToken')
- ->with($newToken, $this->uid, 'User13', $password, $name, IToken::PERMANENT_TOKEN)
- ->will($this->returnValue($deviceToken));
- $deviceToken->expects($this->once())
- ->method('jsonSerialize')
- ->will($this->returnValue(['dummy' => 'dummy', 'canDelete' => true]));
- $expected = [
- 'token' => $newToken,
- 'deviceToken' => ['dummy' => 'dummy', 'canDelete' => true],
- 'loginName' => 'User13',
- ];
- $response = $this->controller->create($name);
- $this->assertInstanceOf(JSONResponse::class, $response);
- $this->assertEquals($expected, $response->getData());
- }
- public function testCreateSessionNotAvailable() {
- $name = 'personal phone';
- $this->session->expects($this->once())
- ->method('getId')
- ->will($this->throwException(new SessionNotAvailableException()));
- $expected = new JSONResponse();
- $expected->setStatus(Http::STATUS_SERVICE_UNAVAILABLE);
- $this->assertEquals($expected, $this->controller->create($name));
- }
- public function testCreateInvalidToken() {
- $name = 'Company IPhone';
- $this->session->expects($this->once())
- ->method('getId')
- ->will($this->returnValue('sessionid'));
- $this->tokenProvider->expects($this->once())
- ->method('getToken')
- ->with('sessionid')
- ->will($this->throwException(new InvalidTokenException()));
- $expected = new JSONResponse();
- $expected->setStatus(Http::STATUS_SERVICE_UNAVAILABLE);
- $this->assertEquals($expected, $this->controller->create($name));
- }
- public function testDestroy() {
- $id = 123;
- $user = $this->createMock(IUser::class);
- $this->tokenProvider->expects($this->once())
- ->method('invalidateTokenById')
- ->with($this->uid, $id);
- $this->assertEquals([], $this->controller->destroy($id));
- }
- public function testUpdateToken() {
- $token = $this->createMock(DefaultToken::class);
- $this->tokenProvider->expects($this->once())
- ->method('getTokenById')
- ->with($this->equalTo(42))
- ->willReturn($token);
- $token->expects($this->once())
- ->method('getUID')
- ->willReturn('jane');
- $token->expects($this->once())
- ->method('setScope')
- ->with($this->equalTo([
- 'filesystem' => true
- ]));
- $this->tokenProvider->expects($this->once())
- ->method('updateToken')
- ->with($this->equalTo($token));
- $this->assertSame([], $this->controller->update(42, ['filesystem' => true]));
- }
- public function testUpdateTokenWrongUser() {
- $token = $this->createMock(DefaultToken::class);
- $this->tokenProvider->expects($this->once())
- ->method('getTokenById')
- ->with($this->equalTo(42))
- ->willReturn($token);
- $token->expects($this->once())
- ->method('getUID')
- ->willReturn('foobar');
- $token->expects($this->never())
- ->method('setScope');
- $this->tokenProvider->expects($this->never())
- ->method('updateToken');
- $response = $this->controller->update(42, ['filesystem' => true]);
- $this->assertSame([], $response->getData());
- $this->assertSame(\OCP\AppFramework\Http::STATUS_NOT_FOUND, $response->getStatus());
- }
- public function testUpdateTokenNonExisting() {
- $this->tokenProvider->expects($this->once())
- ->method('getTokenById')
- ->with($this->equalTo(42))
- ->willThrowException(new InvalidTokenException('Token does not exist'));
- $this->tokenProvider->expects($this->never())
- ->method('updateToken');
- $response = $this->controller->update(42, ['filesystem' => true]);
- $this->assertSame([], $response->getData());
- $this->assertSame(\OCP\AppFramework\Http::STATUS_NOT_FOUND, $response->getStatus());
- }
- }
|