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

SqlDump.php « Fixtures « Benchmarks « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb257bb738fdd0274e95d77ea901506f569b93ce (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
<?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\ArchiveProcessor\Rules;
use Piwik\Config;
use Piwik\Piwik;
use Piwik\Common;

/**
 * Reusable fixture. Loads a ~1GB SQL dump into the DB.
 */
class Piwik_Test_Fixture_SqlDump
{
    public static $dumpUrl = "http://piwik-team.s3.amazonaws.com/generated-logs-one-day.sql.gz";

    public $date = '2012-09-03';
    public $period = 'day';
    public $idSite = 'all';
    public $tablesPrefix = 'piwik_';

    public function setUp()
    {
        $dumpPath = PIWIK_INCLUDE_PATH . '/tmp/logdump.sql.gz';
        $deflatedDumpPath = PIWIK_INCLUDE_PATH . '/tmp/logdump.sql';
        $bufferSize = 1024 * 1024;

        // drop all tables
        Piwik::dropTables();

        // download data dump
        $dump = fopen(self::$dumpUrl, 'rb');
        $outfile = fopen($dumpPath, 'wb');
        $bytesRead = 0;
        while (!feof($dump)) {
            fwrite($outfile, fread($dump, $bufferSize), $bufferSize);
            $bytesRead += $bufferSize;
        }
        fclose($dump);
        fclose($outfile);

        if ($bytesRead <= 40 * 1024 * 1024) // sanity check
        {
            throw new Exception("Could not download sql dump!");
        }

        // unzip the dump
        exec("gunzip -c \"" . $dumpPath . "\" > \"$deflatedDumpPath\"", $output, $return);
        if ($return !== 0) {
            throw new Exception("gunzip failed: " . implode("\n", $output));
        }

        // load the data into the correct database
        $user = Config::getInstance()->database['username'];
        $password = Config::getInstance()->database['password'];
        $dbName = Config::getInstance()->database['dbname'];
        Config::getInstance()->database['tables_prefix'] = 'piwik_';
        Common::$cachedTablePrefix = null;

        exec("mysql -u \"$user\" \"--password=$password\" $dbName < \"" . $deflatedDumpPath . "\" 2>&1", $output, $return);
        if ($return !== 0) {
            throw new Exception("Failed to load sql dump: " . implode("\n", $output));
        }

        // make sure archiving will be called
        Rules::setBrowserTriggerArchiving(true);
    }
}