قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +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>
206 خطوط
6.2 KiB
PHP
206 خطوط
6.2 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\UsersManager\tests\Integration;
|
|
|
|
use Piwik\Config;
|
|
use Piwik\Piwik;
|
|
use Piwik\Plugins\UsersManager\UserPreferences;
|
|
use Piwik\Plugins\UsersManager\API as APIUsersManager;
|
|
use Piwik\Tests\Framework\Fixture;
|
|
use Piwik\Tests\Framework\Mock\FakeAccess;
|
|
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
|
|
|
|
/**
|
|
* @group UsersManager
|
|
* @group UserPreferencesTest
|
|
* @group Plugins
|
|
* @group Plugins
|
|
*/
|
|
class UserPreferencesTest extends IntegrationTestCase
|
|
{
|
|
/**
|
|
* @var UserPreferences
|
|
*/
|
|
private $userPreferences;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->userPreferences = new UserPreferences();
|
|
|
|
$this->setSuperUser();
|
|
|
|
$identity = FakeAccess::$identity;
|
|
FakeAccess::$identity = 'foo'; // avoids error user already exists when it doesn't
|
|
APIUsersManager::getInstance()->addUser($identity, '22111214k4,mdw<L', 'foo@example.com');
|
|
FakeAccess::$identity = $identity;
|
|
}
|
|
|
|
public function testGetDefaultReportWhenLoginNotExists()
|
|
{
|
|
self::expectException(\Exception::class);
|
|
self::expectExceptionMessage('User does not exist');
|
|
|
|
APIUsersManager::getInstance()->setUserPreference(
|
|
'foo',
|
|
APIUsersManager::PREFERENCE_DEFAULT_REPORT,
|
|
'1'
|
|
);
|
|
}
|
|
|
|
public function testGetDefaultReportWhenWrongPreference()
|
|
{
|
|
self::expectException(\Exception::class);
|
|
self::expectExceptionMessage('Not supported preference name');
|
|
|
|
APIUsersManager::getInstance()->setUserPreference(
|
|
Piwik::getCurrentUserLogin(),
|
|
'foo',
|
|
'1'
|
|
);
|
|
}
|
|
|
|
public function testGetDefaultReportShouldReturnFalseByDefault()
|
|
{
|
|
$this->assertEquals(false, $this->userPreferences->getDefaultReport());
|
|
}
|
|
|
|
public function testGetDefaultReportShouldReturnTheRawValueIfNotNumeric()
|
|
{
|
|
$this->setDefaultReport('MultiSites');
|
|
$this->assertEquals('MultiSites', $this->userPreferences->getDefaultReport());
|
|
}
|
|
|
|
public function testGetDefaultReportShouldNotReturnSiteIdIfNoPermissionForSite()
|
|
{
|
|
$this->createSite();
|
|
$this->setDefaultReport(1);
|
|
$this->setAnonymous();
|
|
$this->assertEquals(false, $this->userPreferences->getDefaultReport());
|
|
}
|
|
|
|
public function testGetDefaultReportShouldReturnSiteIdIfPermissionForSite()
|
|
{
|
|
$this->createSite();
|
|
$this->setDefaultReport(1);
|
|
$this->assertEquals(1, $this->userPreferences->getDefaultReport());
|
|
}
|
|
|
|
public function testGetDefaultWebsiteIdShouldReturnFalseByDefault()
|
|
{
|
|
$this->assertEquals(false, $this->userPreferences->getDefaultWebsiteId());
|
|
}
|
|
|
|
public function testGetDefaultWebsiteIdShouldReturnASiteIfOneExistsAndHasAccess()
|
|
{
|
|
$this->createSite();
|
|
$this->assertEquals(1, $this->userPreferences->getDefaultWebsiteId());
|
|
}
|
|
|
|
public function testGetDefaultWebsiteIdShouldReturnFalseIfASiteExistsButHasNoAccess()
|
|
{
|
|
$this->createSite();
|
|
$this->setAnonymous();
|
|
$this->assertEquals(false, $this->userPreferences->getDefaultWebsiteId());
|
|
}
|
|
|
|
public function testGetDefaultWebsiteIdShouldReturnASiteEvenIfMultiSitesIsDefaultReport()
|
|
{
|
|
$this->setDefaultReport('MultiSites');
|
|
$this->createSite();
|
|
$this->assertEquals(1, $this->userPreferences->getDefaultWebsiteId());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideDefaultDates
|
|
*/
|
|
public function testGetDefaultDateAndPeriod($defaultDate, $expectedDate, $expectedPeriod)
|
|
{
|
|
$this->setDefaultDate($defaultDate);
|
|
$this->assertEquals($expectedDate, $this->userPreferences->getDefaultDate());
|
|
$this->assertEquals($expectedPeriod, $this->userPreferences->getDefaultPeriod());
|
|
}
|
|
|
|
public function provideDefaultDates()
|
|
{
|
|
return array(
|
|
'today' => array('today', 'today', 'day'),
|
|
'yesterday' => array('yesterday', 'yesterday', 'day'),
|
|
'month' => array('month', 'today', 'month'),
|
|
'week' => array('week', 'today', 'week'),
|
|
'last7' => array('last7', 'last7', 'range'),
|
|
'last30' => array('last30', 'last30', 'range'),
|
|
);
|
|
}
|
|
|
|
public function testGetDefaultPeriodShouldOnlyReturnAllowedPeriods()
|
|
{
|
|
// Only allow for week period
|
|
Config::getInstance()->General['enabled_periods_UI'] = 'week';
|
|
Config::getInstance()->General['default_period'] = 'week';
|
|
Config::getInstance()->General['default_day'] = 'yesterday';
|
|
|
|
$this->setDefaultDate('today');
|
|
// Should be system defaults
|
|
$this->assertEquals('week', $this->userPreferences->getDefaultPeriod());
|
|
$this->assertEquals('yesterday', $this->userPreferences->getDefaultDate());
|
|
}
|
|
|
|
public function testGetDefaultDateShouldOnlyReturnDateInAllowedPeriods()
|
|
{
|
|
// Only allow for week period
|
|
Config::getInstance()->General['enabled_periods_UI'] = 'day';
|
|
Config::getInstance()->General['default_period'] = 'day';
|
|
$this->setDefaultDate('last7');
|
|
$this->assertEquals('yesterday', $this->userPreferences->getDefaultDate());
|
|
}
|
|
|
|
private function setSuperUser()
|
|
{
|
|
FakeAccess::$superUser = true;
|
|
}
|
|
|
|
private function setAnonymous()
|
|
{
|
|
FakeAccess::clearAccess();
|
|
}
|
|
|
|
private function createSite()
|
|
{
|
|
Fixture::createWebsite('2013-01-23 01:23:45');
|
|
}
|
|
|
|
private function setDefaultReport($defaultReport)
|
|
{
|
|
APIUsersManager::getInstance()->setUserPreference(
|
|
Piwik::getCurrentUserLogin(),
|
|
APIUsersManager::PREFERENCE_DEFAULT_REPORT,
|
|
$defaultReport
|
|
);
|
|
}
|
|
|
|
private function setDefaultDate($date)
|
|
{
|
|
APIUsersManager::getInstance()->setUserPreference(
|
|
Piwik::getCurrentUserLogin(),
|
|
APIUsersManager::PREFERENCE_DEFAULT_REPORT_DATE,
|
|
$date
|
|
);
|
|
}
|
|
|
|
public function provideContainerConfig()
|
|
{
|
|
return array(
|
|
'Piwik\Access' => new FakeAccess()
|
|
);
|
|
}
|
|
}
|