Fixed the SecurityTest error

Signed-off-by: Greta Doci <gretadoci@gmail.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
This commit is contained in:
Greta Doci 2019-09-12 15:40:21 +02:00 committed by Roeland Jago Douma
parent 4ff7551574
commit 68ef242a0a
No known key found for this signature in database
GPG Key ID: F941078878347C0C
4 changed files with 17 additions and 5 deletions

View File

@ -46,6 +46,9 @@ use OCP\IConfig;
class Security implements ISettings {
/** @var IInitialStateService */
private $initialStateService;
/** @var IUserManager */
private $userManager;
@ -61,11 +64,13 @@ class Security implements ISettings {
/** @var IConfig */
private $config;
public function __construct(IUserManager $userManager,
public function __construct(IInitialStateService $initialStateService,
IUserManager $userManager,
ProviderLoader $providerLoader,
IUserSession $userSession,
IConfig $config,
?string $UserId) {
$this->initialStateService = $initialStateService;
$this->userManager = $userManager;
$this->providerLoader = $providerLoader;
$this->userSession = $userSession;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -25,6 +25,8 @@ declare(strict_types=1);
namespace Test\Settings\Personal;
use OC\Authentication\TwoFactorAuth\ProviderLoader;
use OCP\IInitialStateService;
use OCP\InitialStateService;
use OC\Settings\Personal\Security;
use OCP\AppFramework\Http\TemplateResponse;
use OCP\IConfig;
@ -36,6 +38,9 @@ use Test\TestCase;
class SecurityTest extends TestCase {
/** @var InitialStateService|MockObject */
private $initialStateService;
/** @var IUserManager|MockObject */
private $userManager;
@ -57,6 +62,7 @@ class SecurityTest extends TestCase {
public function setUp() {
parent::setUp();
$this->initialStateService = $this->createMock(IInitialStateService::class);
$this->userManager = $this->createMock(IUserManager::class);
$this->providerLoader = $this->createMock(ProviderLoader::class);
$this->userSession = $this->createMock(IUserSession::class);
@ -64,6 +70,7 @@ class SecurityTest extends TestCase {
$this->uid = 'test123';
$this->section = new Security(
$this->initialStateService,
$this->userManager,
$this->providerLoader,
$this->userSession,