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

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

use Piwik\Db;
use Piwik\Settings\FieldConfig;
use Piwik\Settings\Measurable\MeasurableSetting;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\Mock\Settings\FakeMeasurableSettings;
use Piwik\Tests\Integration\Settings\IntegrationTestCase;

/**
 * @group MeasurableSettings
 * @group Settings
 * @group MeasurableSetting
 */
class MeasurableSettingTest extends IntegrationTestCase
{

    public function setUp(): void
    {
        parent::setUp();
        foreach (array(2,3) as $idSite) {
            if (!Fixture::siteCreated($idSite)) {
                Fixture::createWebsite('2014-01-01 01:01:01');
            }
        }

        Db::destroyDatabaseObject();
    }

    protected function createSettingsInstance()
    {
        if (!Fixture::siteCreated(1)) {
            Fixture::createWebsite('2014-01-01 01:01:01');
        }

        return new FakeMeasurableSettings($idSite = 1);
    }

    public function test_constructor_shouldNotEstablishADatabaseConnection()
    {
        $this->assertNotDbConnectionCreated();

        new MeasurableSetting('name', $default = 5, FieldConfig::TYPE_INT, 'MyPlugin', $idSite = 1);

        $this->assertNotDbConnectionCreated();
    }

    public function test_save()
    {
        $site1 = $this->buildSetting('field1', null, $site = '1');
        $site1->setValue('value1');
        $site1->save();

        $site2 = $this->buildSetting('field1', null, $site = '2');
        $this->assertSame('value1', $site1->getValue());
        $this->assertSame('', $site2->getValue());
        $site2->setValue('value2');
        $site2->save();

        $site3 = $this->buildSetting('field1', null, $site = '3');
        $this->assertSame('value1', $site1->getValue());
        $this->assertSame('value2', $site2->getValue());
        $this->assertSame('', $site3->getValue());

        $site1Field2 = $this->buildSetting('field2', null, $site = '1');
        $this->assertSame('', $site1Field2->getValue());
        $site1Field2->setValue('value1Field2');
        $site1Field2->save();

        $this->assertSame('value1', $site1->getValue());
        $this->assertSame('value1Field2', $site1Field2->getValue());
    }

    private function buildSetting($name, $type = null, $idSite = null)
    {
        if (!isset($type)) {
            $type = FieldConfig::TYPE_STRING;
        }

        if (!isset($idSite)) {
            $idSite = 1;
        }

        $userSetting = new MeasurableSetting($name, $default = '', $type, 'MyPluginName', $idSite);

        return $userSetting;
    }

}