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

FactoryTest.php « Storage « Settings « Integration « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82acc03ec3a8094bbc9cad7f8e3374d66b8f3217 (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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

namespace Piwik\Tests\Integration\Settings\Storage;

use Piwik\Settings\FieldConfig;
use Piwik\Settings\Storage\Backend\Cache;
use Piwik\Settings\Storage\Backend\NullBackend;
use Piwik\Settings\Storage\Backend\SitesTable;
use Piwik\Settings\Storage\Backend\MeasurableSettingsTable;
use Piwik\Settings\Storage\Backend\PluginSettingsTable;
use Piwik\Settings\Storage\Storage;
use Piwik\Settings\Storage\Factory;
use Piwik\SettingsServer;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group Tracker
 * @group Handler
 * @group Visit
 * @group Factory
 * @group FactoryTest
 */
class FactoryTest extends IntegrationTestCase
{
    /**
     * @var Factory
     */
    private $factory;

    public function setUp()
    {
        parent::setUp();
        $this->factory = new Factory();
    }

    public function test_getPluginStorage_shouldReturnStorageWithPluginBackend()
    {
        $storage = $this->factory->getPluginStorage('PluginName', $login = 'user5');
        $this->assertTrue($storage instanceof Storage);

        $backend = $storage->getBackend();
        $this->assertTrue($backend instanceof PluginSettingsTable);
        $this->assertSame('PluginSettings_PluginName_User_user5', $backend->getStorageId());
    }

    public function test_getPluginStorage_shouldDecorateWithCacheBackendInTrackerMode()
    {
        SettingsServer::setIsTrackerApiRequest();
        $storage = $this->factory->getPluginStorage('pluginName', 'userlogin');
        SettingsServer::setIsNotTrackerApiRequest();

        $this->assertTrue($storage->getBackend() instanceof Cache);
    }

    public function test_getMeasurableSettingsStorage_shouldReturnStorageWithMeasurableSettingsBackend()
    {
        $storage = $this->factory->getMeasurableSettingsStorage($idSite = 4, 'PluginNameFoo');
        $this->assertTrue($storage instanceof Storage);

        $backend = $storage->getBackend();
        $this->assertTrue($backend instanceof MeasurableSettingsTable);
        $this->assertSame('MeasurableSettings_4_PluginNameFoo', $backend->getStorageId());
    }

    public function test_getMeasurableSettingsStorage_shouldDecorateWithCacheBackendInTrackerMode()
    {
        SettingsServer::setIsTrackerApiRequest();
        $storage = $this->factory->getMeasurableSettingsStorage($idSite = 4, 'PluginNameFoo');
        SettingsServer::setIsNotTrackerApiRequest();

        $this->assertTrue($storage->getBackend() instanceof Cache);
    }

    public function test_getMeasurableSettingsStorage_shouldReturnNonPersistentStorageWhenEmptySiteIsGiven()
    {
        $storage = $this->factory->getMeasurableSettingsStorage($idSite = 0, 'PluginNameFoo');
        $this->assertTrue($storage instanceof Storage);

        $backend = $storage->getBackend();
        $this->assertTrue($backend instanceof NullBackend);
        $this->assertSame('measurableSettings0#PluginNameFoo#nonpersistent', $backend->getStorageId());
    }

    public function test_getSitesTable_shouldReturnStorageWithSitesTableBackend()
    {
        $storage = $this->factory->getSitesTable($idSite = 3);
        $this->assertTrue($storage instanceof Storage);

        $backend = $storage->getBackend();
        $this->assertTrue($backend instanceof SitesTable);
        $this->assertSame('SitesTable_3', $backend->getStorageId());
    }

    public function test_getSitesTable_shouldDecorateWithCacheBackendInTrackerMode()
    {
        SettingsServer::setIsTrackerApiRequest();
        $storage = $this->factory->getSitesTable($idSite = 3);
        SettingsServer::setIsNotTrackerApiRequest();

        $this->assertTrue($storage->getBackend() instanceof Cache);
    }

    public function test_getSitesTable_shouldReturnNonPersistentStorageWhenEmptySiteIsGiven()
    {
        $storage = $this->factory->getSitesTable($idSite = 0);
        $this->assertTrue($storage instanceof Storage);

        $backend = $storage->getBackend();
        $this->assertTrue($backend instanceof NullBackend);
        $this->assertSame('sitesTable#0#nonpersistent', $backend->getStorageId());
    }

    public function test_getNonPersistentStorage_shouldReturnStorageWithNullBackend()
    {
        $storage = $this->factory->getNonPersistentStorage('myKey');
        $this->assertTrue($storage instanceof Storage);

        $backend = $storage->getBackend();
        $this->assertTrue($backend instanceof NullBackend);
        $this->assertSame('myKey', $backend->getStorageId());
    }

    public function test_getNonPersistentStorage_shouldNotDecorateWithCacheBackendInTrackerMode()
    {
        SettingsServer::setIsTrackerApiRequest();
        $storage = $this->factory->getNonPersistentStorage('anykey');
        SettingsServer::setIsNotTrackerApiRequest();

        $this->assertTrue($storage->getBackend() instanceof NullBackend);
    }

    public function test_getNonPersistentStorage_shouldNotUseCache()
    {
        $storage = $this->factory->getNonPersistentStorage('myKey');
        $storage->setValue('mytest', 'myval');

        $storage = $this->factory->getNonPersistentStorage('myKey');
        $this->assertSame('', $storage->getValue('mytest', $default = '', FieldConfig::TYPE_STRING));
    }

    public function test_makeStorage_returnsStorageWithGivenBackend()
    {
        $backend = new NullBackend('test');
        $storage = $this->factory->makeStorage($backend);

        $this->assertTrue($storage instanceof Storage);

        $this->assertSame($backend, $storage->getBackend());
    }

}