File: PromoWidgetApplicableTest.php

package info (click to toggle)
matomo 5.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 95,068 kB
  • sloc: php: 289,425; xml: 127,249; javascript: 112,130; python: 202; sh: 178; makefile: 20; sql: 10
file content (69 lines) | stat: -rw-r--r-- 2,744 bytes parent folder | download
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
<?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\Plugins\ProfessionalServices\tests\Unit;

use PHPUnit\Framework\TestCase;
use Piwik\Config;
use Piwik\Plugin\Manager;
use Piwik\Plugins\ProfessionalServices\PromoWidgetApplicable;
use Piwik\Plugins\ProfessionalServices\PromoWidgetDismissal;

class PromoWidgetApplicableTest extends TestCase
{
    /**
     * @dataProvider checkDataProvider
     */
    public function testCheckShouldOnlyReturnTrueIfAdShouldBeShown(bool $adsForProfessionalServicesEnabled, bool $marketplaceEnabled, bool $internetAccessEnabled, bool $pluginActivated, bool $isDismissed, bool $expected): void
    {
        $manager = $this->createMock(Manager::class);
        $manager->method('isPluginActivated')->willReturnMap(
            [
                ['MyPlugin', $pluginActivated],
                ['Marketplace', $marketplaceEnabled],
            ]
        );
        $config = $this->createMock(Config::class);
        $config->method('__get')
            ->with('General')
            ->willReturn([
                'enable_internet_features' => $internetAccessEnabled,
                'piwik_professional_support_ads_enabled' => $adsForProfessionalServicesEnabled,
            ]);

        $promoWidgetDismissal = $this->createMock(PromoWidgetDismissal::class);
        $promoWidgetDismissal->method('isPromoWidgetDismissedForCurrentUser')
            ->with('Any')
            ->willReturn($isDismissed);

        $sut = new PromoWidgetApplicable($manager, $config, $promoWidgetDismissal);
        $this->assertEquals($expected, $sut->check('MyPlugin', 'Any'));
    }

    public function checkDataProvider(): \Generator
    {
        yield [true, true, true, true, false, false];
        yield [true, true, true, false, false, true];
        yield [true, true, false, true, false, false];
        yield [true, true, false, false, false, false];
        yield [true, false, true, true, false, false];
        yield [true, false, true, false, false, false];
        yield [true, false, false, true, false, false];
        yield [true, false, false, false, false, false];
        yield [false, true, true, true, false, false];
        yield [false, true, true, false, false, false];
        yield [false, true, false, true, false, false];
        yield [false, true, false, false, false, false];
        yield [false, false, true, true, false, false];
        yield [false, false, true, false, false, false];
        yield [false, false, false, true, false, false];
        yield [false, false, false, false, false, false];
        yield [true, true, true, false, true, false];
    }
}