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
|
<?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\Unit\Dimension;
use Piwik\Plugins\CustomDimensions\Dimension\Extractions;
/**
* @group CustomDimensions
* @group ExtractionsTest
* @group Extractions
* @group Plugins
*/
class ExtractionsTest extends \PHPUnit\Framework\TestCase
{
public function testCheckShouldFailWhenExtractionsIsNotAnArray()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage("extractions has to be an array");
$this->buildExtractions('')->check();
}
public function testCheckShouldFailWhenExtractionsDoesNotContainArrays()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage("Each extraction within extractions has to be an array");
$this->buildExtractions(array('5'))->check();
}
/**
* @dataProvider getInvalidExtraction
*/
public function testCheckShouldFailWhenExtractionsDoesNotContainValidExtraction($extraction)
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage('Each extraction within extractions must have a key "dimension" and "pattern" only');
$this->buildExtractions(array($extraction))->check();
}
public function getInvalidExtraction()
{
return array(
array(array()),
array(array('dimension' => 'url')),
array(array('pattern' => 'index(.+).html')),
array(array('dimension' => 'url', 'anything' => 'invalid')),
array(array('dimension' => 'url', 'pattern' => 'index(.+).html', 'anything' => 'invalid')),
);
}
public function testCheckShouldAlsoCheckExtractionAndFailIfValueIsInvalid()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage("Invald dimension 'invalId' used in an extraction. Available dimensions are: url, urlparam, action_name");
$extraction1 = array('dimension' => 'url', 'pattern' => 'index(.+).html');
$extraction2 = array('dimension' => 'invalId', 'pattern' => 'index');
$this->buildExtractions(array($extraction1, $extraction2))->check();
}
public function testCheckShouldNotFailWhenExtractionsDefinitionIsValid()
{
$extraction1 = array('dimension' => 'url', 'pattern' => 'index(.+).html');
$extraction2 = array('dimension' => 'urlparam', 'pattern' => 'index');
$ex = $this->buildExtractions(array($extraction1, $extraction2));
$ex->check();
self::assertInstanceOf(Extractions::class, $ex);
}
private function buildExtractions($extractions)
{
return new Extractions($extractions);
}
}
|