قرینه از
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>
99 خطوط
3.2 KiB
PHP
99 خطوط
3.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\CustomDimensions\tests\Integration\Dimension;
|
|
|
|
use Piwik\Plugins\CustomDimensions\CustomDimensions;
|
|
use Piwik\Plugins\CustomDimensions\Dao\Configuration;
|
|
use Piwik\Plugins\CustomDimensions\Dimension\Index;
|
|
use Piwik\Tests\Framework\Fixture;
|
|
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
|
|
|
|
/**
|
|
* @group CustomDimensions
|
|
* @group IndexTest
|
|
* @group Index
|
|
* @group Dao
|
|
* @group Plugins
|
|
*/
|
|
class IndexTest extends IntegrationTestCase
|
|
{
|
|
/**
|
|
* @var Index
|
|
*/
|
|
private $index;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
if (!Fixture::siteCreated(1)) {
|
|
Fixture::createWebsite('2014-01-01 00:00:00');
|
|
}
|
|
|
|
$this->index = new Index();
|
|
}
|
|
|
|
public function testShouldReturn1WhenNoIndexIsUsedYet()
|
|
{
|
|
$this->assertSame(1, $this->index->getNextIndex($idSite = 1, CustomDimensions::SCOPE_ACTION));
|
|
}
|
|
|
|
public function testShouldNotActuallyCreateAnIndexOnlyReturnNextFreeIndex()
|
|
{
|
|
$idSite = 1;
|
|
$scope = CustomDimensions::SCOPE_ACTION;
|
|
|
|
$this->assertSame(1, $this->index->getNextIndex($idSite, $scope));
|
|
$this->assertSame(1, $this->index->getNextIndex($idSite, $scope));
|
|
}
|
|
|
|
public function testShouldReturnNextFreeIndex()
|
|
{
|
|
$idSite = 1;
|
|
|
|
$this->createIndex($idSite, CustomDimensions::SCOPE_ACTION, $index = 1);
|
|
$this->assertSame(2, $this->index->getNextIndex($idSite, CustomDimensions::SCOPE_ACTION));
|
|
|
|
$this->createIndex($idSite, CustomDimensions::SCOPE_VISIT, $index = 1);
|
|
$this->assertSame(2, $this->index->getNextIndex($idSite, CustomDimensions::SCOPE_VISIT));
|
|
|
|
$this->createIndex($idSite, CustomDimensions::SCOPE_VISIT, $index = 2);
|
|
$this->assertSame(3, $this->index->getNextIndex($idSite, CustomDimensions::SCOPE_VISIT));
|
|
$this->assertSame(2, $this->index->getNextIndex($idSite, CustomDimensions::SCOPE_ACTION)); // should remain unchanged
|
|
}
|
|
|
|
public function testShouldThrowAnExceptionIfAllIndexesAreUsed()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('All Custom Dimensions for website 1 in scope \'action\' are already used');
|
|
|
|
$idSite = 1;
|
|
|
|
foreach (range(1, 5) as $index) {
|
|
$this->createIndex($idSite, CustomDimensions::SCOPE_ACTION, $index);
|
|
// all indexes are in use after this
|
|
}
|
|
|
|
// should be still possible to acquire an index for different scope
|
|
$this->assertSame(1, $this->index->getNextIndex($idSite, CustomDimensions::SCOPE_VISIT));
|
|
// should be still possible to acquire for different website in scope action
|
|
$this->assertSame(1, $this->index->getNextIndex(2, CustomDimensions::SCOPE_ACTION));
|
|
|
|
// should fail to get a next index
|
|
$this->index->getNextIndex($idSite, CustomDimensions::SCOPE_ACTION);
|
|
}
|
|
|
|
private function createIndex($idSite, $scope, $index)
|
|
{
|
|
$configuration = new Configuration();
|
|
$configuration->configureNewDimension($idSite, 'MyName', $scope, $index, false, array(), $caseSensitive = true);
|
|
}
|
|
}
|