2019-09-09 23:12:29 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2019-09-09 23:12:29 +03:00
|
|
|
*
|
|
|
|
* @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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2019-09-09 23:12:29 +03:00
|
|
|
*/
|
|
|
|
|
2020-01-28 22:48:18 +03:00
|
|
|
namespace OCA\Settings\Tests\Settings\Personal\Security;
|
2019-09-09 23:12:29 +03:00
|
|
|
|
|
|
|
use OC\Authentication\Token\DefaultToken;
|
|
|
|
use OC\Authentication\Token\IProvider as IAuthTokenProvider;
|
2020-01-30 15:30:45 +03:00
|
|
|
use OCA\Settings\Settings\Personal\Security\Authtokens;
|
2019-09-09 23:12:29 +03:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2020-07-14 10:18:39 +03:00
|
|
|
use OCP\AppFramework\Services\IInitialState;
|
2019-09-09 23:12:29 +03:00
|
|
|
use OCP\ISession;
|
2020-01-28 22:48:18 +03:00
|
|
|
use OCP\IUserSession;
|
2019-09-09 23:12:29 +03:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class AuthtokensTest extends TestCase {
|
|
|
|
|
|
|
|
/** @var IAuthTokenProvider|MockObject */
|
|
|
|
private $authTokenProvider;
|
|
|
|
|
|
|
|
/** @var ISession|MockObject */
|
|
|
|
private $session;
|
|
|
|
|
2020-01-28 22:48:18 +03:00
|
|
|
/** @var IUserSession|MockObject */
|
|
|
|
private $userSession;
|
|
|
|
|
2020-07-14 10:18:39 +03:00
|
|
|
/** @var IInitialState|MockObject */
|
|
|
|
private $initialState;
|
2019-09-09 23:12:29 +03:00
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
private $uid;
|
|
|
|
|
2020-01-30 15:30:45 +03:00
|
|
|
/** @var Authtokens */
|
2019-09-09 23:12:29 +03:00
|
|
|
private $section;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2019-09-09 23:12:29 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->authTokenProvider = $this->createMock(IAuthTokenProvider::class);
|
|
|
|
$this->session = $this->createMock(ISession::class);
|
2020-01-28 22:48:18 +03:00
|
|
|
$this->userSession = $this->createMock(IUserSession::class);
|
2020-07-14 10:18:39 +03:00
|
|
|
$this->initialState = $this->createMock(IInitialState::class);
|
2019-09-09 23:12:29 +03:00
|
|
|
$this->uid = 'test123';
|
|
|
|
|
|
|
|
$this->section = new Authtokens(
|
|
|
|
$this->authTokenProvider,
|
|
|
|
$this->session,
|
2020-01-28 22:48:18 +03:00
|
|
|
$this->userSession,
|
2020-07-14 10:18:39 +03:00
|
|
|
$this->initialState,
|
2019-09-09 23:12:29 +03:00
|
|
|
$this->uid
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetForm() {
|
|
|
|
$token1 = new DefaultToken();
|
|
|
|
$token1->setId(100);
|
|
|
|
$token2 = new DefaultToken();
|
|
|
|
$token2->setId(200);
|
|
|
|
$tokens = [
|
|
|
|
$token1,
|
|
|
|
$token2,
|
|
|
|
];
|
|
|
|
$sessionToken = new DefaultToken();
|
|
|
|
$sessionToken->setId(100);
|
|
|
|
|
|
|
|
$this->authTokenProvider->expects($this->once())
|
|
|
|
->method('getTokenByUser')
|
|
|
|
->with($this->uid)
|
|
|
|
->willReturn($tokens);
|
|
|
|
$this->session->expects($this->once())
|
|
|
|
->method('getId')
|
|
|
|
->willReturn('session123');
|
|
|
|
$this->authTokenProvider->expects($this->once())
|
|
|
|
->method('getToken')
|
|
|
|
->with('session123')
|
|
|
|
->willReturn($sessionToken);
|
2020-07-14 10:18:39 +03:00
|
|
|
$this->initialState->expects($this->at(0))
|
2019-09-09 23:12:29 +03:00
|
|
|
->method('provideInitialState')
|
2020-07-14 10:18:39 +03:00
|
|
|
->with('app_tokens', [
|
2019-09-09 23:12:29 +03:00
|
|
|
[
|
|
|
|
'id' => 100,
|
|
|
|
'name' => null,
|
|
|
|
'lastActivity' => 0,
|
|
|
|
'type' => 0,
|
|
|
|
'canDelete' => false,
|
|
|
|
'current' => true,
|
|
|
|
'scope' => ['filesystem' => true],
|
|
|
|
'canRename' => false,
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'id' => 200,
|
|
|
|
'name' => null,
|
|
|
|
'lastActivity' => 0,
|
|
|
|
'type' => 0,
|
|
|
|
'canDelete' => true,
|
|
|
|
'scope' => ['filesystem' => true],
|
|
|
|
'canRename' => true,
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
2020-07-14 10:18:39 +03:00
|
|
|
$this->initialState->expects($this->at(1))
|
2020-01-28 22:48:18 +03:00
|
|
|
->method('provideInitialState')
|
2020-07-14 10:18:39 +03:00
|
|
|
->with('can_create_app_token', true);
|
2020-01-28 22:48:18 +03:00
|
|
|
|
2019-09-09 23:12:29 +03:00
|
|
|
$form = $this->section->getForm();
|
|
|
|
|
|
|
|
$expected = new TemplateResponse('settings', 'settings/personal/security/authtokens');
|
|
|
|
$this->assertEquals($expected, $form);
|
|
|
|
}
|
|
|
|
}
|