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

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

use Piwik\Config;
use Piwik\ProfessionalServices\Advertising;
use Piwik\Tests\Framework\Mock\FakeConfig;
use Piwik\Tests\Framework\Mock\Plugin\Manager;

/**
 * @group ProfessionalServices
 * @group Advertising
 * @group Integration
 */
class AdvertisingTest extends \PHPUnit_Framework_TestCase
{
    /**
     * @var Advertising
     */
    private $advertising;

    /**
     * @var Config
     */
    private $config;

    /**
     * @var Manager
     */
    private $pluginManager;

    private $exampleUrl = 'https://piwik.xyz/test';

    public function setUp()
    {
        $this->config = new FakeConfig(array('General' => array('piwik_professional_support_ads_enabled' => '1')));
        $this->pluginManager = new Manager();

        $this->advertising = $this->buildAdvertising($this->config);
    }

    public function test_areAdsForProfessionalServicesEnabled_ActuallyEnabled()
    {
        $enabled = $this->advertising->areAdsForProfessionalServicesEnabled();

        $this->assertTrue($enabled);
    }

    public function test_areAdsForProfessionalServicesEnabled_Disabled()
    {
        $this->config->General = array('piwik_professional_support_ads_enabled' => '0');

        $enabled = $this->advertising->areAdsForProfessionalServicesEnabled();

        $this->assertFalse($enabled);
    }

    public function test_areAdsForProfessionalServicesEnabled_UsingPreviousSettingName()
    {
        $this->config->General = array('piwik_pro_ads_enabled' => '1');

        $enabled = $this->advertising->areAdsForProfessionalServicesEnabled();

        $this->assertTrue($enabled);
    }


    public function test_shouldBeEnabledByDefault()
    {
        $enabled = $this->buildAdvertising(Config::getInstance());

        $this->assertTrue($enabled->areAdsForProfessionalServicesEnabled());
    }

    public function test_addPromoCampaignParametersToUrl_withoutContentWithoutQuery()
    {
        $link = $this->advertising->addPromoCampaignParametersToUrl($this->exampleUrl, 'MyName', 'Installation_Start');

        $this->assertSame($this->exampleUrl . '?pk_campaign=MyName&pk_medium=Installation_Start&pk_source=Piwik_App', $link);
    }

    public function test_addPromoCampaignParametersToUrl_withContentWithoutQuery()
    {
        $link = $this->advertising->addPromoCampaignParametersToUrl($this->exampleUrl, 'MyName', 'Installation_Start', 'MyContent');

        $this->assertSame($this->exampleUrl . '?pk_campaign=MyName&pk_medium=Installation_Start&pk_source=Piwik_App&pk_content=MyContent', $link);
    }

    public function test_addPromoCampaignParametersToUrl_withQuery()
    {
        $url = $this->exampleUrl . '?foo=bar';
        $link = $this->advertising->addPromoCampaignParametersToUrl($url, 'MyName', 'Installation_Start');

        $this->assertSame($url . '&pk_campaign=MyName&pk_medium=Installation_Start&pk_source=Piwik_App', $link);
    }

    private function buildAdvertising($config)
    {
        return new Advertising($this->pluginManager, $config);
    }
}