قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-25 00:17:37 +00:00

* Use https URLs * Build vue files * use matomo.org instead of piwik.org in some links * updates expected UI test file --------- Co-authored-by: innocraft-automation <innocraft-automation@users.noreply.github.com>
111 خطوط
3.4 KiB
PHP
111 خطوط
3.4 KiB
PHP
<?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\Marketplace\tests\Integration\PluginTrial;
|
|
|
|
use Piwik\Notification\Manager;
|
|
use Piwik\Plugins\Marketplace\PluginTrial\Notification;
|
|
use Piwik\Plugins\Marketplace\PluginTrial\Storage;
|
|
use Piwik\Tests\Framework\Mock\FakeAccess;
|
|
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
|
|
|
|
/**
|
|
* @group Marketplace
|
|
* @group PluginTrial
|
|
* @group Plugins
|
|
*/
|
|
class NotificationTest extends IntegrationTestCase
|
|
{
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
\Zend_Session::$_unitTestEnabled = true;
|
|
Manager::cancelAllNotifications();
|
|
}
|
|
|
|
public function testConstructorThrowsOnInvalidPluginName()
|
|
{
|
|
self::expectException(\Exception::class);
|
|
|
|
$storageMock = self::createMock(Storage::class);
|
|
|
|
$notification = new Notification('Inval%dPlu§1nName', $storageMock);
|
|
}
|
|
|
|
public function testCreateNotificationIfNeededNotRequested()
|
|
{
|
|
$storageMock = self::createMock(Storage::class);
|
|
$storageMock->method('wasRequested')->willReturn(false);
|
|
$storageMock->method('isNotificationDismissed')->willReturn(false);
|
|
|
|
$notification = new Notification('PremiumPlugin', $storageMock);
|
|
$notification->createNotificationIfNeeded();
|
|
|
|
$this->checkNoNotificationWasCreated();
|
|
}
|
|
|
|
public function testCreateNotificationIfNeededAlreadyDismissed()
|
|
{
|
|
$storageMock = self::createMock(Storage::class);
|
|
$storageMock->method('wasRequested')->willReturn(true);
|
|
$storageMock->method('isNotificationDismissed')->willReturn(true);
|
|
|
|
$notification = new Notification('PremiumPlugin', $storageMock);
|
|
$notification->createNotificationIfNeeded();
|
|
|
|
$this->checkNoNotificationWasCreated();
|
|
}
|
|
|
|
public function testCreateNotificationIfNeededCreatesNotification()
|
|
{
|
|
$storageMock = self::createMock(Storage::class);
|
|
$storageMock->method('wasRequested')->willReturn(true);
|
|
$storageMock->method('isNotificationDismissed')->willReturn(false);
|
|
|
|
$notification = new Notification('PremiumPlugin', $storageMock);
|
|
$notification->createNotificationIfNeeded();
|
|
|
|
$this->checkNotificationWasCreated();
|
|
}
|
|
|
|
public function testSetNotificationDismissed()
|
|
{
|
|
$storageMock = self::createMock(Storage::class);
|
|
$storageMock->method('wasRequested')->willReturn(true);
|
|
$storageMock->method('isNotificationDismissed')->willReturn(false);
|
|
$storageMock->expects(self::once())->method('setNotificationDismissed');
|
|
|
|
$notification = new Notification('PremiumPlugin', $storageMock);
|
|
$notification->setNotificationDismissed();
|
|
}
|
|
|
|
private function checkNoNotificationWasCreated()
|
|
{
|
|
self::assertEmpty(Manager::getPendingInMemoryNotifications());
|
|
}
|
|
|
|
private function checkNotificationWasCreated()
|
|
{
|
|
$notifications = Manager::getPendingInMemoryNotifications();
|
|
|
|
self::assertCount(1, $notifications);
|
|
|
|
$expectedNotificationKey = 'Marketplace_PluginTrialRequest_' . md5(FakeAccess::$superUserLogin) . '_PremiumPlugin';
|
|
|
|
self::assertArrayHasKey($expectedNotificationKey, $notifications);
|
|
}
|
|
|
|
public function provideContainerConfig()
|
|
{
|
|
return array(
|
|
'Piwik\Access' => new FakeAccess()
|
|
);
|
|
}
|
|
}
|