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

EcommerceOrderWithItemsTest.php « Integration « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0de25f5e4b9188d38f56cb698bb59d68f44c8029 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link    http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
use Piwik\Piwik;
use Piwik\Date;

/**
 * Tests API methods after ecommerce orders are tracked.
 */
class Test_Piwik_Integration_EcommerceOrderWithItems extends IntegrationTestCase
{
    public static $fixture = null; // initialized below class definition

    /**
     * @group        Integration
     * @group        EcommerceOrderWithItems
     */
    public function testImagesIncludedInTests()
    {
        $this->alertWhenImagesExcludedFromTests();
    }

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

    public function getApiForTesting()
    {
        $idSite = self::$fixture->idSite;
        $idSite2 = self::$fixture->idSite2;
        $dateTime = self::$fixture->dateTime;

        $dayApi = array('VisitsSummary.get', 'VisitTime', 'CustomVariables.getCustomVariables',
                        'Live.getLastVisitsDetails', 'UserCountry', 'API.getProcessedReport', 'Goals.get',
                        'Goals.getConversions', 'Goals.getItemsSku', 'Goals.getItemsName', 'Goals.getItemsCategory');

        $goalWeekApi = array('Goals.get', 'Goals.getItemsSku', 'Goals.getItemsName', 'Goals.getItemsCategory');

        $goalItemApi = array('Goals.getItemsSku', 'Goals.getItemsName', 'Goals.getItemsCategory');

        $processedReportApi = array('API.getProcessedReport');

        // Normal standard goal
        return array_merge(array(

                                // day tests
                                array($dayApi, array('idSite' => $idSite, 'date' => $dateTime, 'periods' => array('day'), 'otherRequestParameters' => array('_leavePiwikCoreVariables' => 1))),

                                // goals API week tests
                                array($goalWeekApi, array('idSite' => $idSite, 'date' => $dateTime, 'periods' => array('week'))),

                                // abandoned carts tests
                                array($goalItemApi, array('idSite'     => $idSite, 'date' => $dateTime,
                                                          'periods'    => array('day', 'week'), 'abandonedCarts' => 1,
                                                          'testSuffix' => '_AbandonedCarts')),

                                // multiple periods tests
                                array($goalItemApi, array('idSite'       => $idSite, 'date' => $dateTime, 'periods' => array('day'),
                                                          'setDateLastN' => true, 'testSuffix' => 'multipleDates')),

                                // multiple periods & multiple websites tests
                                array($goalItemApi, array('idSite'     => sprintf("%u,%u", $idSite, $idSite2), 'date' => $dateTime,
                                                          'periods'    => array('day'), 'setDateLastN' => true,
                                                          'testSuffix' => 'multipleDates_andMultipleWebsites')),

                                // test metadata products
                                array($processedReportApi, array('idSite'    => $idSite, 'date' => $dateTime,
                                                                 'periods'   => array('day'), 'apiModule' => 'Goals',
                                                                 'apiAction' => 'getItemsSku', 'testSuffix' => '_Metadata_ItemsSku')),
                                array($processedReportApi, array('idSite'    => $idSite, 'date' => $dateTime,
                                                                 'periods'   => array('day'), 'apiModule' => 'Goals',
                                                                 'apiAction' => 'getItemsCategory', 'testSuffix' => '_Metadata_ItemsCategory')),

                                // test metadata Goals.get for Ecommerce orders & Carts
                                array($processedReportApi, array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'apiModule' => 'Goals', 'apiAction' => 'get',
                                                                 'idGoal'     => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER,
                                                                 'testSuffix' => '_Metadata_Goals.Get_Order')),
                                array($processedReportApi, array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'apiModule' => 'Goals', 'apiAction' => 'get',
                                                                 'idGoal'     => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_CART,
                                                                 'testSuffix' => '_Metadata_Goals.Get_AbandonedCart')),

                                // normal standard goal test
                                array($processedReportApi, array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'apiModule' => 'Goals', 'apiAction' => 'get',
                                                                 'idGoal'     => self::$fixture->idGoalStandard,
                                                                 'testSuffix' => '_Metadata_Goals.Get_NormalGoal')),

                                // non-existant goal test
                                array($processedReportApi, array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'apiModule' => 'Goals', 'apiAction' => 'get',
                                                                 'idGoal'     => 'FAKE IDGOAL',
                                                                 'testSuffix' => '_Metadata_Goals.Get_NotExistingGoal')),

                                // While we're at it, test for a standard Metadata report with zero entries
                                array($processedReportApi, array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'apiModule' => 'VisitTime',
                                                                 'apiAction'  => 'getVisitInformationPerServerTime',
                                                                 'testSuffix' => '_Metadata_VisitTime.getVisitInformationPerServerTime')),

                                // Standard non metadata Goals.get
                                // test Goals.get with idGoal=ecommerceOrder and ecommerceAbandonedCart
                                array('Goals.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                         'periods'    => array('day', 'week'), 'idGoal' => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_CART,
                                                         'testSuffix' => '_GoalAbandonedCart')),
                                array('Goals.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                         'periods'    => array('day', 'week'), 'idGoal' => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER,
                                                         'testSuffix' => '_GoalOrder')),
                                array('Goals.get', array('idSite'  => $idSite, 'date' => $dateTime,
                                                         'periods' => array('day', 'week'), 'idGoal' => 1, 'testSuffix' => '_GoalMatchTitle')),
                                array('Goals.get', array('idSite'  => $idSite, 'date' => $dateTime,
                                                         'periods' => array('day', 'week'), 'idGoal' => '', 'testSuffix' => '_GoalOverall')),

                                array('VisitsSummary.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'segment' => 'visitEcommerceStatus==none',
                                                                 'testSuffix' => '_SegmentNoEcommerce')),
                                array('VisitsSummary.get', array('idSite'  => $idSite, 'date' => $dateTime,
                                                                 'periods' => array('day'), 'testSuffix' => '_SegmentOrderedSomething',
                                                                 'segment' => 'visitEcommerceStatus==ordered,visitEcommerceStatus==orderedThenAbandonedCart')),
                                array('VisitsSummary.get', array('idSite'  => $idSite, 'date' => $dateTime,
                                                                 'periods' => array('day'), 'testSuffix' => '_SegmentAbandonedCart',
                                                                 'segment' => 'visitEcommerceStatus==abandonedCart,visitEcommerceStatus==orderedThenAbandonedCart')),

                                // test segment visitConvertedGoalId
                                array('VisitsSummary.get', array('idSite'  => $idSite, 'date' => $dateTime,
                                                                 'periods' => array('day', 'week'), 'testSuffix' => '_SegmentConvertedGoalId1',
                                                                 'segment' => "visitConvertedGoalId==" . self::$fixture->idGoalStandard)),
                                array('VisitsSummary.get', array('idSite'  => $idSite, 'date' => $dateTime,
                                                                 'periods' => array('day'), 'testSuffix' => '_SegmentDidNotConvertGoalId1',
                                                                 'segment' => "visitConvertedGoalId!=" . self::$fixture->idGoalStandard)),

                                // test segment visitorType
                                array('VisitsSummary.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('week'), 'segment' => 'visitorType==new',
                                                                 'testSuffix' => '_SegmentNewVisitors')),
                                array('VisitsSummary.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('week'), 'segment' => 'visitorType==returning',
                                                                 'testSuffix' => '_SegmentReturningVisitors')),
                                array('VisitsSummary.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('week'), 'segment' => 'visitorType==returningCustomer',
                                                                 'testSuffix' => '_SegmentReturningCustomers')),

                                // test segment pageTitle
                                array('VisitsSummary.get', array('idSite'     => $idSite, 'date' => $dateTime,
                                                                 'periods'    => array('day'), 'segment' => 'pageTitle==incredible title!',
                                                                 'testSuffix' => '_SegmentPageTitleMatch')),

                                // test Live! output is OK also for the visit that just bought something (other visits leave an abandoned cart)
                                array('Live.getLastVisitsDetails', array('idSite'  => $idSite,
                                                                         'date'    => Date::factory($dateTime)->addHour(30.65)->getDatetime(),
                                                                         'periods' => array('day'), 'testSuffix' => '_LiveEcommerceStatusOrdered')),

                                // test API.get method
                                array('API.get', array('idSite'                 => $idSite, 'date' => $dateTime, 'periods' => array('day', 'week'),
                                                       'otherRequestParameters' => array(
                                                           'columns' => 'nb_pageviews,nb_visits,avg_time_on_site,nb_visits_converted'),
                                                       'testSuffix'             => '_API_get')),

                                // Website2
                                array($goalWeekApi, array('idSite'     => $idSite2, 'date' => $dateTime, 'periods' => array('week'),
                                                          'testSuffix' => '_Website2')),

                           ), self::getApiForTestingScheduledReports($dateTime, 'week'));
    }

    public function getOutputPrefix()
    {
        return 'ecommerceOrderWithItems';
    }
}

Test_Piwik_Integration_EcommerceOrderWithItems::$fixture = new Test_Piwik_Fixture_TwoSitesEcommerceOrderWithItems();