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

UserIdAndVisitorIdTest.php « System « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ffce3f9eaccab878bb9a960103afd3c1732a0c8 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/**
 * Matomo - free/libre analytics platform
 *
 * @link    https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
namespace Piwik\Tests\System;

use Piwik\API\Proxy;
use Piwik\Tests\Framework\TestCase\SystemTestCase;
use Piwik\Tests\Fixtures\FewVisitsWithSetVisitorId;

/**
 * This test tests that when using &cid=, the visitor ID is enforced
 *
 * @group UserIdAndVisitorIdTest
 * @group Plugins
 */
class UserIdAndVisitorIdTest extends SystemTestCase
{
    public static $fixture = null; // initialized below class definition

    public function setUp(): void
    {
        Proxy::getInstance()->setHideIgnoredFunctions(false);
    }

    public function tearDown(): void
    {
        Proxy::getInstance()->setHideIgnoredFunctions(true);
    }

    public static function getOutputPrefix()
    {
        return "UserId_VisitorId";
    }

    /**
     * @dataProvider getApiForTesting
     */
    public function testApi($api, $params)
    {
        $this->runApiTests($api, $params);
    }

    public function getApiForTesting()
    {
        return array(
            array(array('VisitsSummary.get', 'VisitsSummary.getUsers'),
                  array('idSite'     => self::$fixture->idSite,
                        'date'       => self::$fixture->dateTime,
                        'periods'    => array( 'day', 'month', 'week', 'year' ),
                        'testSuffix' => '',
                  )),

            array('Live.getLastVisitsDetails',
                                        array('idSite'  => self::$fixture->idSite,
                                                     'date'    => self::$fixture->dateTime,
                                                     'periods' => 'month',
                                                     'keepLiveIds' => true,
                                                     'keepLiveDates' => true,
                                                     'otherRequestParameters' => array(
                                                         'showColumns' => 'idVisit,visitorId,userId,lastActionDateTime,actions,actionDetails',
                                                         'filter_sort_order' => 'asc',
                                                     )
            )),

            // Testing userId segment matches both log_visits and log_conversion
            array(array('VisitsSummary.get', 'Goals.get'),
                                        array('idSite'     => self::$fixture->idSite,
                                             'date'       => self::$fixture->dateTime,
                                             'periods'    => 'day',
                                             'segment'    => 'userId==' . urlencode('new-email@example.com'),
                                             'testSuffix' => '_segmentUserId',
            )),

            // Testing userId segment matches both log_visits and log_conversion
            array('Goals.getItemsName',
                                        array('idSite'     => self::$fixture->idSite,
                                               'date'       => self::$fixture->dateTime,
                                               'periods'    => 'day',
                                               'segment'    => 'visitEcommerceStatus==abandonedCart;userId==' . urlencode('new-email@example.com'),
                                               'testSuffix' => '_segmentUserIdAndCartAbandoned_getAbandonedCartItems',
                                               'otherRequestParameters' => array(
                                                       'abandonedCarts' => 1
                                               ),
            )),
        );
    }
}

UserIdAndVisitorIdTest::$fixture = new FewVisitsWithSetVisitorId();