2016-02-09 21:58:29 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-01-17 15:42:02 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2016-02-09 21:58:29 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-02-09 21:58:29 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-02-09 21:58:29 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\UpdateNotification\Tests\Controller;
|
|
|
|
|
|
|
|
use OCA\UpdateNotification\Controller\AdminController;
|
2018-01-11 13:38:26 +03:00
|
|
|
use OCA\UpdateNotification\ResetTokenBackgroundJob;
|
2016-02-09 21:58:29 +03:00
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\BackgroundJob\IJobList;
|
|
|
|
use OCP\IConfig;
|
2016-03-04 15:56:13 +03:00
|
|
|
use OCP\IL10N;
|
2016-02-09 21:58:29 +03:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\Security\ISecureRandom;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class AdminControllerTest extends TestCase {
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */
|
2016-02-09 21:58:29 +03:00
|
|
|
private $request;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IJobList|\PHPUnit\Framework\MockObject\MockObject */
|
2016-02-09 21:58:29 +03:00
|
|
|
private $jobList;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var ISecureRandom|\PHPUnit\Framework\MockObject\MockObject */
|
2016-02-09 21:58:29 +03:00
|
|
|
private $secureRandom;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IConfig|\PHPUnit\Framework\MockObject\MockObject */
|
2016-02-09 21:58:29 +03:00
|
|
|
private $config;
|
|
|
|
/** @var AdminController */
|
|
|
|
private $adminController;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject */
|
2016-02-09 21:58:29 +03:00
|
|
|
private $timeFactory;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */
|
2016-03-04 15:56:13 +03:00
|
|
|
private $l10n;
|
2016-02-09 21:58:29 +03:00
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2016-02-09 21:58:29 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2018-01-11 13:38:26 +03:00
|
|
|
$this->request = $this->createMock(IRequest::class);
|
|
|
|
$this->jobList = $this->createMock(IJobList::class);
|
|
|
|
$this->secureRandom = $this->createMock(ISecureRandom::class);
|
|
|
|
$this->config = $this->createMock(IConfig::class);
|
|
|
|
$this->timeFactory = $this->createMock(ITimeFactory::class);
|
|
|
|
$this->l10n = $this->createMock(IL10N::class);
|
2016-02-09 21:58:29 +03:00
|
|
|
|
|
|
|
$this->adminController = new AdminController(
|
|
|
|
'updatenotification',
|
|
|
|
$this->request,
|
|
|
|
$this->jobList,
|
|
|
|
$this->secureRandom,
|
|
|
|
$this->config,
|
2016-03-04 15:56:13 +03:00
|
|
|
$this->timeFactory,
|
2018-01-15 14:06:03 +03:00
|
|
|
$this->l10n
|
2016-02-09 21:58:29 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreateCredentials() {
|
|
|
|
$this->jobList
|
|
|
|
->expects($this->once())
|
|
|
|
->method('add')
|
2018-01-11 13:38:26 +03:00
|
|
|
->with(ResetTokenBackgroundJob::class);
|
2016-02-09 21:58:29 +03:00
|
|
|
$this->secureRandom
|
|
|
|
->expects($this->once())
|
|
|
|
->method('generate')
|
2016-02-10 16:41:47 +03:00
|
|
|
->with(64)
|
2016-02-09 21:58:29 +03:00
|
|
|
->willReturn('MyGeneratedToken');
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setSystemValue')
|
2016-02-10 16:41:47 +03:00
|
|
|
->with('updater.secret');
|
2016-02-09 21:58:29 +03:00
|
|
|
$this->timeFactory
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getTime')
|
|
|
|
->willReturn(12345);
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setAppValue')
|
|
|
|
->with('core', 'updater.secret.created', 12345);
|
|
|
|
|
|
|
|
$expected = new DataResponse('MyGeneratedToken');
|
|
|
|
$this->assertEquals($expected, $this->adminController->createCredentials());
|
|
|
|
}
|
|
|
|
}
|