Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SegmentListTest.php « Integration « tests « SegmentEditor « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a66a4bd4ec51bdc0abbbb1ade11c20388fd7eb3 (plain)
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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Plugins\SegmentEditor\tests\Integration;

use Piwik\Plugins\SegmentEditor\SegmentList;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\Mock\FakeAccess;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
use Exception;

/**
 * @group SegmentListTest
 * @group SegmentList
 * @group SegmentEditor
 * @group Plugins
 */
class SegmentListTest extends IntegrationTestCase
{
    /**
     * @var SegmentList
     */
    private $list;

    private $idSite;

    public function setUp(): void
    {
        parent::setUp();

        $this->idSite = Fixture::createWebsite('2012-01-01 00:00:00');
        $this->list   = new SegmentList();
    }

    public function test_findSegment_shouldFindSegmentByName_IfNameExists()
    {
        $segmentName = 'pageUrl';

        $segment = $this->list->findSegment($segmentName, $this->idSite);
        self::assertIsArray($segment);
        $this->assertSame($segmentName, $segment['segment']);
    }

    public function test_findSegment_shouldNotFindSegmentByName_IfNameDoesNotExist()
    {
        $segment = $this->list->findSegment('aNyNotExisTinGSegmEnt', $this->idSite);
        $this->assertNull($segment);
    }

    public function test_findSegment_ShouldThrowException_IfNotEnoughPermission()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('checkUserHasViewAccess');

        FakeAccess::clearAccess($superUser = false, array(1));

        $segment = $this->list->findSegment('pageUrl', 999);
        $this->assertNull($segment);
    }

    public function provideContainerConfig()
    {
        return array(
            'Piwik\Access' => new FakeAccess()
        );
    }

}