قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 23:17:46 +00:00

* [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps * [Coding Style] Use camel case for method names in API plugin tests (#22145) * [Coding Style] Use camel case for method names in Core* plugin tests (#22147) * [Coding Style] Use camel case for method names in core Unit tests (#22149) * [Coding Style] Use camel case for method names in Actions and BulkTracking plugin tests (#22146) * [Coding Style] Use camel case for method names in CustomDimensions and CustomJSTracker plugin tests (#22148) * [Coding Style] Use camel case for method names in core Integration tests (#22151) * [Coding Style] Use camel case for method names in more core plugin tests (#22153) * [Coding Style] Use camel case for method names in more core plugin tests (#22157) * [Coding Style] Use camel case for method names in more core plugin tests * Update plugins/Monolog/tests/Unit/Processor/ExceptionToTextProcessorTest.php Co-authored-by: Michal Kleiner <michal@innocraft.com> --------- Co-authored-by: Michal Kleiner <michal@innocraft.com> * [Coding Style] Use camel case for method names in more core plugin tests (#22159) * [Coding Style] Use camel case for method names in remaining tests (#22160) * [Coding Style] Use camel case for method names in remaining tests * rename expected test files --------- Co-authored-by: Michal Kleiner <michal@innocraft.com>
114 خطوط
3.5 KiB
PHP
114 خطوط
3.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik\Plugins\TwoFactorAuth\tests\Integration;
|
|
|
|
use Piwik\Container\StaticContainer;
|
|
use Piwik\Piwik;
|
|
use Piwik\Plugins\TwoFactorAuth\API;
|
|
use Piwik\Plugins\TwoFactorAuth\Dao\RecoveryCodeDao;
|
|
use Piwik\Plugins\TwoFactorAuth\TwoFactorAuthentication;
|
|
use Piwik\Plugins\UsersManager\API as UsersAPI;
|
|
use Piwik\Tests\Framework\Fixture;
|
|
use Piwik\Tests\Framework\Mock\FakeAccess;
|
|
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
|
|
|
|
/**
|
|
* @group TwoFactorAuth
|
|
* @group APITest
|
|
* @group Plugins
|
|
*/
|
|
class APITest extends IntegrationTestCase
|
|
{
|
|
/**
|
|
* @var API
|
|
*/
|
|
private $api;
|
|
|
|
/**
|
|
* @var RecoveryCodeDao
|
|
*/
|
|
private $recoveryCodes;
|
|
|
|
/**
|
|
* @var TwoFactorAuthentication
|
|
*/
|
|
private $twoFa;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->api = API::getInstance();
|
|
$this->recoveryCodes = StaticContainer::get(RecoveryCodeDao::class);
|
|
|
|
foreach ([1,2,3] as $idsite) {
|
|
Fixture::createWebsite('2014-01-02 03:04:05');
|
|
}
|
|
|
|
foreach (['mylogin1', 'mylogin2', 'login'] as $user) {
|
|
UsersAPI::getInstance()->addUser($user, '123abcDk3_l3', $user . '@matomo.org');
|
|
}
|
|
$this->twoFa = StaticContainer::get(TwoFactorAuthentication::class);
|
|
}
|
|
|
|
public function testResetTwoFactorAuthFailsWhenNotPermissions()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('checkUserHasSuperUserAccess Fake exception');
|
|
|
|
$this->setAdminUser();
|
|
$this->api->resetTwoFactorAuth('login', Fixture::ADMIN_USER_PASSWORD);
|
|
}
|
|
|
|
public function testResetTwoFactorAuthResetsSecret()
|
|
{
|
|
$this->recoveryCodes->createRecoveryCodesForLogin('mylogin1');
|
|
$this->recoveryCodes->createRecoveryCodesForLogin('mylogin2');
|
|
$this->twoFa->saveSecret('mylogin1', '1234');
|
|
$this->twoFa->saveSecret('mylogin2', '1234');
|
|
|
|
$this->assertTrue(TwoFactorAuthentication::isUserUsingTwoFactorAuthentication('mylogin1'));
|
|
$this->assertTrue(TwoFactorAuthentication::isUserUsingTwoFactorAuthentication('mylogin2'));
|
|
$this->api->resetTwoFactorAuth('mylogin1', Fixture::ADMIN_USER_PASSWORD);
|
|
$this->assertFalse(TwoFactorAuthentication::isUserUsingTwoFactorAuthentication('mylogin1'));
|
|
$this->assertTrue(TwoFactorAuthentication::isUserUsingTwoFactorAuthentication('mylogin2'));
|
|
|
|
$this->assertEquals([], $this->recoveryCodes->getAllRecoveryCodesForLogin('mylogin1'));
|
|
|
|
//Reset without a password
|
|
Piwik::addAction('Login.userRequiresPasswordConfirmation', function (&$requiresPasswordConfirmation) {
|
|
$requiresPasswordConfirmation = false;
|
|
});
|
|
$this->api->resetTwoFactorAuth('mylogin2');
|
|
$this->assertFalse(TwoFactorAuthentication::isUserUsingTwoFactorAuthentication('mylogin2'));
|
|
}
|
|
|
|
protected function setAdminUser()
|
|
{
|
|
FakeAccess::clearAccess(false);
|
|
FakeAccess::$identity = 'testUser';
|
|
FakeAccess::$idSitesView = array();
|
|
FakeAccess::$idSitesAdmin = array(1,2,3);
|
|
}
|
|
|
|
public function provideContainerConfig()
|
|
{
|
|
return array(
|
|
'Piwik\Access' => new FakeAccess()
|
|
);
|
|
}
|
|
|
|
protected static function configureFixture($fixture)
|
|
{
|
|
parent::configureFixture($fixture);
|
|
$fixture->createSuperUser = true;
|
|
}
|
|
}
|