1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-25 08:27:37 +00:00
Files
matomo/tests/PHPUnit/Integration/Settings/Storage/Backend/MeasurableSettingsTableTest.php
Stefan Giehl d6d72d1fa7 [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps (#22144)
* [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps

* [Coding Style] Use camel case for method names in API plugin tests (#22145)

* [Coding Style] Use camel case for method names in Core* plugin tests (#22147)

* [Coding Style] Use camel case for method names in core Unit tests (#22149)

* [Coding Style] Use camel case for method names in Actions and BulkTracking plugin tests (#22146)

* [Coding Style] Use camel case for method names in CustomDimensions and CustomJSTracker plugin tests (#22148)

* [Coding Style] Use camel case for method names in core Integration tests (#22151)

* [Coding Style] Use camel case for method names in more core plugin tests (#22153)

* [Coding Style] Use camel case for method names in more core plugin tests (#22157)

* [Coding Style] Use camel case for method names in more core plugin tests

* Update plugins/Monolog/tests/Unit/Processor/ExceptionToTextProcessorTest.php

Co-authored-by: Michal Kleiner <michal@innocraft.com>

---------

Co-authored-by: Michal Kleiner <michal@innocraft.com>

* [Coding Style] Use camel case for method names in more core plugin tests (#22159)

* [Coding Style] Use camel case for method names in remaining tests (#22160)

* [Coding Style] Use camel case for method names in remaining tests

* rename expected test files

---------

Co-authored-by: Michal Kleiner <michal@innocraft.com>
2024-04-25 20:57:55 +02:00

268 خطوط
8.9 KiB
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Tests\Integration\Settings\Storage\Backend;
use Piwik\Settings\Storage\Backend\MeasurableSettingsTable;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
/**
* @group Settings
* @group Backend
* @group Storage
*/
class MeasurableSettingsTableTest extends IntegrationTestCase
{
/**
* @var MeasurableSettingsTable
*/
private $backendSite1;
/**
* @var MeasurableSettingsTable
*/
private $backendSite2;
/**
* @var MeasurableSettingsTable
*/
private $backendSite1Plugin2;
/**
* @var MeasurableSettingsTable[]
*/
private $allBackends = array();
public function setUp(): void
{
parent::setUp();
$this->backendSite1 = $this->createSettings(1, 'MyPluginName');
$this->backendSite2 = $this->createSettings(2, 'MyPluginName');
$this->backendSite1Plugin2 = $this->createSettings(1, 'MyPluginName2');
$this->allBackends = array($this->backendSite1, $this->backendSite2, $this->backendSite1Plugin2);
}
private function createSettings($idSite, $plugin)
{
return new MeasurableSettingsTable($idSite, $plugin);
}
public function testConstructShouldThrowAnExceptionIfPluginNameIsEmpty()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage('No plugin name given');
$this->createSettings(1, '');
}
public function testConstructShouldThrowAnExceptionIfIdSiteIsEmpty()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage('No idSite given');
$this->createSettings(0, 'MyPlugin');
}
public function testLoadShouldNotHaveAnySettingsByDefault()
{
$this->assertSame(array(), $this->backendSite1->load());
$this->assertSame(array(), $this->backendSite2->load());
$this->assertSame(array(), $this->backendSite1Plugin2->load());
}
public function testGetStorageIdShouldIncludePluginNameAndLogin()
{
$this->assertSame('MeasurableSettings_1_MyPluginName', $this->backendSite1->getStorageId());
$this->assertSame('MeasurableSettings_2_MyPluginName', $this->backendSite2->getStorageId());
$this->assertSame('MeasurableSettings_1_MyPluginName2', $this->backendSite1Plugin2->getStorageId());
}
public function testSaveShouldOnlySaveForSpecificPluginAndIdSite()
{
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => 'val');
$this->backendSite1->save($value1);
$this->assertSame($value1, $this->backendSite1->load());
$this->assertSame(array(), $this->backendSite2->load());
$this->assertSame(array(), $this->backendSite1Plugin2->load());
$value2 = $this->getExampleValues();
$this->backendSite2->save($value2);
$this->assertSame($value1, $this->backendSite1->load());
$this->assertSame($value2, $this->backendSite2->load());
$this->assertSame(array(), $this->backendSite1Plugin2->load());
$value3 = $this->getExampleValues();
$this->backendSite1Plugin2->save($value3);
$this->assertSame($value1, $this->backendSite1->load());
$this->assertSame($value2, $this->backendSite2->load());
$this->assertSame($value3, $this->backendSite1Plugin2->load());
}
public function testDeleteShouldDeleteAllValuesButOnlyForSpecificPluginAndIdSite()
{
$values = array();
foreach ($this->allBackends as $index => $backend) {
$values[$index] = $this->getExampleValues();
$backend->save($values[$index]);
$this->assertSame($values[$index], $backend->load());
}
foreach ($this->allBackends as $index => $backend) {
$backend->delete();
$values[$index] = array();
// we make sure the values for all others are still set and only the current one was deleted
foreach ($this->allBackends as $j => $backend2) {
$this->assertSame($values[$j], $backend2->load());
}
}
}
public function testSaveDuplicateValuesShouldBeOverwritten()
{
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => 'val');
$this->backendSite1->save($value1);
$this->assertSame($value1, $this->backendSite1->load());
$value2 = array('mytest' => 'test2', 'Mysetting2' => 'val', 'Mysetting1' => 'valueNew');
$this->backendSite1->save($value2);
$this->assertEquals($value2, $this->backendSite1->load());
}
public function testSaveNoLongerExistingValuesShouldBeRemoved()
{
$value = $this->saveValueForAllBackends();
// overwrite only user1
$value2 = array('mytest' => 'test2', 'Mysetting1' => 'valueNew');
$this->backendSite1Plugin2->save($value2);
$this->assertEquals($value2, $this->backendSite1Plugin2->load());
// make sure other backends remain unchanged
foreach ($this->allBackends as $backend) {
if ($backend !== $this->backendSite1Plugin2) {
$this->assertSame($value, $backend->load());
}
}
}
public function testSaveLoadShouldBeAbleToSaveAndLoadArrayValues()
{
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => array('val', 'val7', 'val5'));
$this->backendSite1Plugin2->save($value1);
$this->assertEquals($value1, $this->backendSite1Plugin2->load());
}
public function testSaveLoadShouldBeAbleToSaveAndLoadArrayValuesOnlyOneKey()
{
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => array('val'));
$this->backendSite1Plugin2->save($value1);
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => array('val'));
// it doesn't return an array for Mysetting2 but it is supposed to be casted to array by storage in this case
$this->assertEquals($value1, $this->backendSite1Plugin2->load());
}
public function testSaveLoadShouldBeAbleToSaveAndLoadObjectValues()
{
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => (object) array('val', 'val7', 'val5'));
$this->backendSite1Plugin2->save($value1);
$value1['Mysetting2'] = (array) $value1['Mysetting2'];
$this->assertEquals($value1, $this->backendSite1Plugin2->load());
}
public function testSaveLoadShouldBeAbleToSaveNestedArrays()
{
$value1 = array('Mysetting1' => 'value1', 'Mysetting2' => array(array('foo' => 'bar'),array('foo' => 'baz')));
$this->backendSite1Plugin2->save($value1);
$this->assertEquals($value1, $this->backendSite1Plugin2->load());
}
public function testSaveShouldBeAbleToSaveBoolValues()
{
$value1 = array('Mysetting1' => true, 'Mysetting2' => array('val', 'val7', false, true, 'val5'));
$this->backendSite1Plugin2->save($value1);
$value1 = array('Mysetting1' => '1', 'Mysetting2' => array('val', 'val7', false, true, 'val5'));
$this->assertEquals($value1, $this->backendSite1Plugin2->load());
}
public function testSaveShouldIgnoreNullValues()
{
$value1 = array('Mysetting1' => true, 'MySetting3' => null, 'Mysetting2' => array('val', null, true, 'val5'));
$this->backendSite1Plugin2->save($value1);
$value1 = array('Mysetting1' => '1', 'Mysetting2' => array('val', null, true, 'val5'));
$this->assertEquals($value1, $this->backendSite1Plugin2->load());
}
public function testRemoveAllUserSettingsForUserShouldOnlyRemoveSettingsForThatUser()
{
$value = $this->saveValueForAllBackends();
MeasurableSettingsTable::removeAllSettingsForSite('2');
foreach ($this->allBackends as $backend) {
if ($backend === $this->backendSite2) {
$this->assertSame(array(), $backend->load());
} else {
$this->assertSame($value, $backend->load());
}
}
}
public function testRemoveAllSettingsForPluginShouldOnlyRemoveSettingsForThatPlugin()
{
$value = $this->saveValueForAllBackends();
MeasurableSettingsTable::removeAllSettingsForPlugin('MyPluginName');
foreach ($this->allBackends as $backend) {
if ($backend === $this->backendSite1Plugin2) {
$this->assertSame($value, $backend->load());
} else {
$this->assertSame(array(), $backend->load());
}
}
}
private function saveValueForAllBackends()
{
$value = array('Mysetting1' => 'value1', 'Mysetting2' => 'val');
foreach ($this->allBackends as $backend) {
$backend->save($value);
$this->assertSame($value, $backend->load());
}
return $value;
}
private function getExampleValues()
{
return array('Mysetting3' => 'value3', 'Mysetting4' . rand(4, 99) => 'val' . rand(0, 10));
}
}