2017-01-16 13:48:28 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
2017-01-16 13:48:28 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* 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.
|
2017-01-16 13:48:28 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2019-12-03 21:57:53 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-01-16 13:48:28 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-01-16 13:48:28 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\TwoFactorBackupCodes\Test\Unit\Activity;
|
|
|
|
|
|
|
|
use InvalidArgumentException;
|
|
|
|
use OCA\TwoFactorBackupCodes\Activity\Provider;
|
|
|
|
use OCP\Activity\IEvent;
|
2017-06-20 15:25:24 +03:00
|
|
|
use OCP\Activity\IManager;
|
2017-01-16 13:48:28 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
use OCP\L10N\IFactory;
|
|
|
|
use PHPUnit_Framework_MockObject_MockObject;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class ProviderTest extends TestCase {
|
|
|
|
|
2017-06-20 15:25:24 +03:00
|
|
|
/** @var IFactory|PHPUnit_Framework_MockObject_MockObject */
|
2017-01-16 13:48:28 +03:00
|
|
|
private $l10n;
|
|
|
|
|
|
|
|
/** @var IURLGenerator|PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $urlGenerator;
|
|
|
|
|
2017-06-20 15:25:24 +03:00
|
|
|
/** @var IManager|PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $activityManager;
|
2017-01-16 13:48:28 +03:00
|
|
|
|
|
|
|
/** @var Provider */
|
|
|
|
private $provider;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2017-01-16 13:48:28 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->l10n = $this->createMock(IFactory::class);
|
|
|
|
$this->urlGenerator = $this->createMock(IURLGenerator::class);
|
2017-06-20 15:25:24 +03:00
|
|
|
$this->activityManager = $this->createMock(IManager::class);
|
2017-01-16 13:48:28 +03:00
|
|
|
|
2017-06-20 15:25:24 +03:00
|
|
|
$this->provider = new Provider($this->l10n, $this->urlGenerator, $this->activityManager);
|
2017-01-16 13:48:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testParseUnrelated() {
|
|
|
|
$lang = 'ru';
|
|
|
|
$event = $this->createMock(IEvent::class);
|
|
|
|
$event->expects($this->once())
|
2017-01-16 14:48:09 +03:00
|
|
|
->method('getApp')
|
2017-01-16 13:48:28 +03:00
|
|
|
->willReturn('comments');
|
2018-01-24 20:10:16 +03:00
|
|
|
$this->expectException(InvalidArgumentException::class);
|
2017-01-16 13:48:28 +03:00
|
|
|
|
|
|
|
$this->provider->parse($lang, $event);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function subjectData() {
|
|
|
|
return [
|
|
|
|
['codes_generated'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider subjectData
|
|
|
|
*/
|
|
|
|
public function testParse($subject) {
|
|
|
|
$lang = 'ru';
|
|
|
|
$event = $this->createMock(IEvent::class);
|
|
|
|
$l = $this->createMock(IL10N::class);
|
|
|
|
|
|
|
|
$event->expects($this->once())
|
|
|
|
->method('getApp')
|
|
|
|
->willReturn('twofactor_backupcodes');
|
|
|
|
$this->l10n->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('twofactor_backupcodes', $lang)
|
|
|
|
->willReturn($l);
|
|
|
|
$this->urlGenerator->expects($this->once())
|
|
|
|
->method('imagePath')
|
|
|
|
->with('core', 'actions/password.svg')
|
|
|
|
->willReturn('path/to/image');
|
|
|
|
$this->urlGenerator->expects($this->once())
|
|
|
|
->method('getAbsoluteURL')
|
|
|
|
->with('path/to/image')
|
|
|
|
->willReturn('absolute/path/to/image');
|
|
|
|
$event->expects($this->once())
|
|
|
|
->method('setIcon')
|
|
|
|
->with('absolute/path/to/image');
|
|
|
|
$event->expects($this->once())
|
|
|
|
->method('getSubject')
|
|
|
|
->willReturn($subject);
|
|
|
|
$event->expects($this->once())
|
|
|
|
->method('setParsedSubject');
|
|
|
|
|
|
|
|
$this->provider->parse($lang, $event);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testParseInvalidSubject() {
|
|
|
|
$lang = 'ru';
|
|
|
|
$l = $this->createMock(IL10N::class);
|
|
|
|
$event = $this->createMock(IEvent::class);
|
|
|
|
|
|
|
|
$event->expects($this->once())
|
|
|
|
->method('getApp')
|
|
|
|
->willReturn('twofactor_backupcodes');
|
|
|
|
$this->l10n->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('twofactor_backupcodes', $lang)
|
|
|
|
->willReturn($l);
|
|
|
|
$event->expects($this->once())
|
|
|
|
->method('getSubject')
|
|
|
|
->willReturn('unrelated');
|
|
|
|
|
|
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
$this->provider->parse($lang, $event);
|
|
|
|
}
|
|
|
|
}
|