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

ManyVisitsWithMockLocationProvider.php « Fixtures « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d7d2f240b53cb7b1add639845367920d9171673 (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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

require_once PIWIK_INCLUDE_PATH . '/tests/PHPUnit/MockLocationProvider.php';

/**
 * Adds one site and tracks 60 visits (15 visitors, one action per visit).
 */
class Test_Piwik_Fixture_ManyVisitsWithMockLocationProvider extends Test_Piwik_BaseFixture
{
    public $idSite = 1;
    public $dateTime = '2010-01-03 01:22:33';
    public $nextDay = null;

    public function __construct()
    {
        $this->nextDay = Piwik_Date::factory($this->dateTime)->addDay(1)->getDatetime();
    }

    public function setUp()
    {
        $this->setUpWebsitesAndGoals();
        $this->setMockLocationProvider();
        $this->trackVisits();
    }

    public function tearDown()
    {
        $this->unsetMockLocationProvider();
    }

    private function setUpWebsitesAndGoals()
    {
        self::createWebsite($this->dateTime);
    }

    private function trackVisits()
    {
        $linuxFirefoxA = "Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/20100101 Firefox/6.0";
        $win7FirefoxA = "Mozilla/5.0 (Windows; U; Windows NT 6.1; fr; rv:1.9.1.6) Gecko/20100101 Firefox/6.0";
        $win7ChromeA = "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.38 Safari/532.0";
        $linuxChromeA = "Mozilla/5.0 (X11; Linux i686; rv:6.0) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.38 Safari/532.0";
        $linuxSafariA = "Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+";
        $iPadSafariA = "Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+";
        $iPadFirefoxB = "Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) Gecko/20100101 Firefox/14.0.1";
        $androidFirefoxB = "Mozilla/5.0 (Linux; U; Android 4.0.3; ko-kr; LG-L160L Build/IML74K) Gecko/20100101 Firefox/14.0.1";
        $androidChromeB = "Mozilla/5.0 (Linux; U; Android 4.0.3; ko-kr; LG-L160L Build/IML74K) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1";
        $androidIEA = "Mozilla/5.0 (compatible; MSIE 10.6; Linux; U; Android 4.0.3; ko-kr; LG-L160L Build/IML74K; Trident/5.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727) 3gpp-gba UNTRUSTED/1.0";
        $iPhoneOperaA = "Opera/9.80 (iPod; U; CPU iPhone OS 4_3_3 like Mac OS X; ja-jp) Presto/2.9.181 Version/12.00";
        $win8IEB = "Mozilla/5.0 (compatible; MSIE 10.0; Windows 8; Trident/5.0)";
        $winVistaIEB = "Mozilla/5.0 (compatible; MSIE 10.0; Windows Vista; Trident/5.0)";
        $osxOperaB = "Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; fr) Presto/2.9.168 Version/11.52";
        $userAgents = array(
            $linuxFirefoxA, $linuxFirefoxA, $win7FirefoxA, $win7ChromeA, $linuxChromeA, $linuxSafariA,
            $iPadSafariA, $iPadFirefoxB, $androidFirefoxB, $androidChromeB, $androidIEA, $iPhoneOperaA,
            $win8IEB, $winVistaIEB, $osxOperaB
        );

        $resolutions = array(
            "1920x1080", "1920x1080", "1920x1080", "1920x1080", "1366x768", "1366x768", "1366x768",
            "1280x1024", "1280x1024", "1280x1024", "1680x1050", "1680x1050", "1024x768", "800x600",
            "320x480"
        );

        $referrers = array(
            // website referrers (8)
            'http://whatever0.com/0', 'http://whatever0.com/0', 'http://whatever0.com/1', 'http://whatever0.com/2',
            'http://whatever1.com/0', 'http://whatever.com1/1', 'http://whatever1.com/2', 'http://whatever3.com/3',

            // search engines w/ keyword (12)
            'http://www.google.com/search?q=this+search+term',
            'http://www.google.com/search?q=that+search+term',
            'http://search.yahoo.com/search?p=this+search+term',
            'http://search.yahoo.com/search?p=that+search+term',
            'http://www.ask.com/web?q=this+search+term',
            'http://www.bing.com/search?q=search+term+1',
            'http://search.babylon.com/?q=search+term+2',
            'http://alexa.com/search?q=search+term+2',
            'http://www.google.com/search?q=search+term+3',
            'http://search.yahoo.com/search?p=search+term+4',
            'http://www.ask.com/web?q=search+term+3',
            'http://www.bing.com/search?q=search+term+4',
        );

        $customVars = array(
            'name'    => array('thing0', 'thing1', 'thing2', 'thing3', 'thing4', 'thing5', 'thing6', 'thing7',
                               'thing8', 'thing9', 'thing10', 'thing11', 'thing12', 'thing13', 'thing14',
                               'thing15', 'thing16', 'thing17', 'thing18', 'thing19'),
            'rating'  => array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 20),
            'tweeted' => array('y', 'n', 'm', 'n', 'y', 'n', 'y', 'n', 'y', 'n', 'y', 'n', 'y', 'n', 'y', 'n',
                               'm', 'n', 'm', 'n'),
            'liked'   => array('yes', 'y', 'y', 'no', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y',
                               'y', 'y', 'no', 'n'),
        );
        $downloadCustomVars = array(
            'size' => array(1024, 1024, 1024, 2048, 2048, 3072, 3072, 3072, 3072, 4096, 4096, 4096,
                            512, 512, 256, 128, 64, 32, 48, 48)
        );

        $visitorCounter = 0;
        $t = self::getTracker($this->idSite, $this->dateTime, $defaultInit = true, $useLocal = true);

        // track regular actions
        $this->trackActions($t, $visitorCounter, 'pageview', $userAgents, $resolutions, $referrers, $customVars);

        // track downloads
        $this->trackActions($t, $visitorCounter, 'download', $userAgents, $resolutions, null, $downloadCustomVars);

        // track outlinks
        $this->trackActions($t, $visitorCounter, 'outlink', $userAgents, $resolutions);
        
        // track ecommerce product orders
        $this->trackOrders($t);
    }

    private function trackActions($t, &$visitorCounter, $actionType, $userAgents, $resolutions,
                                  $referrers = null, $customVars = null)
    {
        for ($i = 0; $i != 5; ++$i, ++$visitorCounter) {
            $visitDate = Piwik_Date::factory($this->dateTime);

            $t->setNewVisitorId();
            $t->setIp("156.5.3.$visitorCounter");

            $t->setUserAgent($userAgents[$visitorCounter]);
            list($w, $h) = explode('x', $resolutions[$visitorCounter]);
            $t->setResolution((int)$w, (int)$h);

            // one visit to root url
            $t->setUrl("http://piwik.net/$visitorCounter/");
            $t->setUrlReferrer(null);
            $t->setForceVisitDateTime($visitDate->getDatetime());
            $this->trackAction($t, $actionType, $visitorCounter, null);

            for ($j = 0; $j != 4; ++$j) {
                // NOTE: to test referers w/o creating too many visits, we don't actually track 4 actions, but
                //	   4 separate visits
                $actionDate = $visitDate->addHour($j + 1);

                $actionIdx = $i * 4 + $j;
                $actionNum = $visitorCounter * 4 + $j;

                $t->setUrl("http://piwik.net/$visitorCounter/$actionNum");
                $t->setForceVisitDateTime($actionDate->getDatetime());

                if (!is_null($referrers)) {
                    $t->setUrlReferrer($referrers[$actionIdx]);
                } else {
                    $t->setUrlReferrer(null);
                }

                if (!is_null($customVars)) {
                    $k = 1;
                    foreach ($customVars as $name => $values) {
                        $value = $values[$actionIdx];
                        $t->setCustomVariable($k, $name, $value, $scope = 'page');

                        ++$k;
                    }
                }

                $this->trackAction($t, $actionType, $visitorCounter, $actionNum);
            }
        }
    }
    
    private function trackOrders($t)
    {
        $nextDay = Piwik_Date::factory($this->nextDay);
        $t->setForceVisitDateTime($nextDay);
        
        for ($i = 0; $i != 25; ++$i) {
            $cat = $i % 5;
            
            $t->setNewVisitorId();
            $t->setIp("155.5.4.$i");
            $t->setEcommerceView("id_book$i",  "Book$i", "Books Cat #$cat", 7.50);
            self::checkResponse($t->doTrackPageView('bought book'));
        }
    }

    private function trackAction($t, $actionType, $visitorCounter, $actionNum)
    {
        if ($actionType == 'pageview') {
            self::checkResponse($t->doTrackPageView(
                is_null($actionNum) ? "title_$visitorCounter" : "title_$visitorCounter / title_$actionNum"));
        } else if ($actionType == 'download') {
            $root = is_null($actionNum) ? "http://cloudsite$visitorCounter.com"
                : "http://cloudsite$visitorCounter.com/$actionNum";

            self::checkResponse($t->doTrackAction("$root/download", 'download'));
        } else if ($actionType == 'outlink') {
            self::checkResponse($t->doTrackAction(is_null($actionNum) ? "http://othersite$visitorCounter.com/"
                : "http://othersite$visitorCounter.com/$actionNum/", 'link'));
        }
    }

    private function setMockLocationProvider()
    {
        Piwik_UserCountry_LocationProvider::setCurrentProvider('mock_provider');
        MockLocationProvider::$locations = array(
            self::makeLocation('Toronto', 'ON', 'CA', $lat = null, $long = null, $isp = 'comcast.net'),

            self::makeLocation('Nice', 'B8', 'FR', $lat = null, $long = null, $isp = 'comcast.net'),

            self::makeLocation('Melbourne', '07', 'AU', $lat = null, $long = null, $isp = 'awesomeisp.com'),

            self::makeLocation('Yokohama', '19', 'JP'),
        );
    }

    private function unsetMockLocationProvider()
    {
        Piwik_UserCountry_LocationProvider::setCurrentProvider('default');
    }
}