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

ui-test.php « environment « config - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d68a6f9bae35fa4515a0aa01642275d52b5f65c (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
<?php

return array(

    'Piwik\Config' => \DI\decorate(function (\Piwik\Config $config) {
        $config->General['cors_domains'][] = '*';
        return $config;
    }),

    'observers.global' => \DI\add(array(

        array('Request.dispatch.end', function (&$result) {
            $request = $_GET + $_POST;

            // Overlay needs the full URLs in order to find the links in the embedded page (otherwise the %
            // tooltips don't show up)
            if (!empty($request['method'])
                && $request['method'] == 'Overlay.getFollowingPages'
            ) {
                return;
            }

            $config = \Piwik\Config::getInstance();
            $host = $config->tests['http_host'];
            $port = $config->tests['port'];

            if (!empty($port)) {
                // remove the port from URLs if any so UI tests won't fail if the port isn't 80
                $result = str_replace($host . ':' . $port, $host, $result);
            }

            // remove PIWIK_INCLUDE_PATH from result so tests don't change based on the machine used
            $result = str_replace(realpath(PIWIK_INCLUDE_PATH), '', $result);
        }),

        array('Controller.ExampleRssWidget.rssPiwik.end', function (&$result, $parameters) {
            $result = "";
        }),
    )),

);