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

CacheTest.php « Integration « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2d1fe06b8e239e68b964160512548138d1b60af (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
<?php
/**
 * Piwik - 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\Integration;

use Piwik\Cache;
use Piwik\Container\StaticContainer;
use Piwik\Piwik;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group Cache
 */
class CacheTest extends IntegrationTestCase
{
    public function test_getEagerCache_shouldPersistOnceEventWasTriggered()
    {
        $storageId = 'eagercache-test-ui';
        $cache = Cache::getEagerCache();
        $cache->save('test', 'mycontent'); // make sure something was changed, otherwise it won't save anything

        /** @var Cache\Backend $backend */
        $backend = StaticContainer::get('Piwik\Cache\Backend');
        $this->assertFalse($backend->doContains($storageId));

        $result = ''; $module = 'CoreHome'; $action = 'index'; $params = array();
        Piwik::postEvent('Request.dispatch.end', array(&$result, $module, $action, $params)); // should trigger save

        $this->assertTrue($backend->doContains($storageId));
    }
}