1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
<?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);
}
}
|