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

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

use Piwik\Access;
use Piwik\Db;
use Piwik\Plugin;
use Piwik\Plugins\WebsiteMeasurable\Type as WebsiteType;
use Piwik\Plugins\WebsiteMeasurable\MeasurableSettings;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\Mock\FakeAccess;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group Core
 */
class MeasurableSettingsTest extends IntegrationTestCase
{
    private $idSite = 1;

    /**
     * @var MeasurableSettings
     */
    private $settings;

    public function setUp(): void
    {
        parent::setUp();

        FakeAccess::$superUser = true;

        if (!Fixture::siteCreated($this->idSite)) {
            $type = WebsiteType::ID;
            Fixture::createWebsite('2015-01-01 00:00:00',
                $ecommerce = 0, $siteName = false, $siteUrl = false,
                $siteSearch = 1, $searchKeywordParameters = null,
                $searchCategoryParameters = null, $timezone = null, $type);
        }

        $this->settings = $this->createSettings();
    }

    public function test_save_shouldActuallyStoreValues()
    {
        $this->settings->siteSearchKeywords->setValue(array('value2'));
        $this->settings->siteSearchCategory->setValue(array('value3'));
        $this->settings->save();

        $this->assertStoredSettingsValue(array('value2'), 'sitesearch_keyword_parameters');
        $this->assertStoredSettingsValue(array('value3'), 'sitesearch_category_parameters');
    }

    public function test_save_shouldCheckAdminPermissionsForThatSite()
    {
        $this->expectException(\Exception::class);
        $this->expectExceptionMessage('CoreAdminHome_PluginSettingChangeNotAllowed');

        FakeAccess::clearAccess();

        $this->settings = $this->createSettings();
        $this->settings->siteSearchKeywords->setValue(array('value4'));
        $this->settings->save();
    }

    private function createSettings()
    {
        $provider = new Plugin\SettingsProvider(Plugin\Manager::getInstance());
        $settings = $provider->getMeasurableSettings('WebsiteMeasurable', $this->idSite, WebsiteType::ID);

        return $settings;
    }

    private function assertStoredSettingsValue($expectedValue, $settingName)
    {
        $settings = $this->createSettings();
        $value    = $settings->getSetting($settingName)->getValue();

        $this->assertSame($expectedValue, $value);
    }

    public function provideContainerConfig()
    {
        return array(
            'Piwik\Access' => new FakeAccess(),
        );
    }
}