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

LicenseKeyTest.php « Integration « tests « Marketplace « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff7918aec536950db6a9dc05bd721cff8d5de57b (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?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\Plugins\Marketplace\tests\Integration;

use Piwik\Plugins\Marketplace\LicenseKey;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

/**
 * @group Plugins
 * @group Marketplace
 * @group LicenseKeyTest
 * @group LicenseKey
 */
class LicenseKeyTest extends IntegrationTestCase
{
    /**
     * @var LicenseKey
     */
    private $licenseKey;

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

        $this->licenseKey = $this->buildLicenseKey();
    }

    public function test_get_noLicenseKeyIsSetByDefault()
    {
        $this->assertFalse($this->licenseKey->get());
        $this->assertFalse($this->licenseKey->has());
    }

    public function test_set_get_persistsALicenseKey()
    {
        $key = 'foobarBaz';
        $this->licenseKey->set($key);
        $this->assertSame($key, $this->licenseKey->get());

        // verify it is saved across requests by creating a new instance
        $this->assertPersistedLicenseKeyEquals($key);
    }

    public function test_set_shouldOverwriteAnExistingKey()
    {
        $this->setExampleLicenseKey();

        $key = 'foobarBaz2Unique299';
        $this->assertPersistedLicenseKeyNotEquals($key);
        $this->licenseKey->set($key);
        $this->assertPersistedLicenseKeyEquals($key);
    }

    public function test_set_deletesAnExistingLicenseKey_IfValueIsFalse()
    {
        $this->setExampleLicenseKey();

        $this->licenseKey->set(false);
        $this->assertFalse($this->licenseKey->has());
    }

    public function test_set_deletesAnExistingLicenseKey_IfValueIsNotSet()
    {
        $this->setExampleLicenseKey();

        $this->licenseKey->set(null);
        $this->assertFalse($this->licenseKey->has());
    }

    public function test_has_detectsWhetherANonEmptyKeyIsSet()
    {
        $this->assertNotHasPersistedLicenseKey();
        $this->setExampleLicenseKey();
        $this->assertHasPersistedLicenseKey();
        $this->licenseKey->set('');
        $this->assertNotHasPersistedLicenseKey();
        $this->licenseKey->set('1');
        $this->assertHasPersistedLicenseKey();
        $this->licenseKey->set('0');
        $this->assertHasPersistedLicenseKey();
        $this->licenseKey->set(null);
        $this->assertNotHasPersistedLicenseKey();
    }

    private function assertHasPersistedLicenseKey()
    {
        // we create a new instance so it's actually persisted and not hold in an object instance
        $this->assertTrue($this->buildLicenseKey()->has());
    }

    private function assertNotHasPersistedLicenseKey()
    {
        // we create a new instance so it's actually persisted and not hold in an object instance
        $this->assertFalse($this->buildLicenseKey()->has());
    }

    private function assertPersistedLicenseKeyEquals($expectedKey)
    {
        // we create a new instance so it's actually persisted and not hold in an object instance
        $this->assertSame($expectedKey, $this->buildLicenseKey()->get());
    }

    private function assertPersistedLicenseKeyNotEquals($expectedKey)
    {
        // we create a new instance so it's actually persisted and not hold in an object instance
        $this->assertNotSame($expectedKey, $this->buildLicenseKey()->get());
    }

    private function setExampleLicenseKey()
    {
        $this->licenseKey->set('foo');
        $this->assertTrue($this->licenseKey->has());
    }

    private function buildLicenseKey()
    {
        return new LicenseKey();
    }

}