1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/plugins/Widgetize/tests/Fixtures/WidgetizeFixture.php
Michal Kleiner 9a3ef94df6 [Coding Style] Enable rule PSR12.Files.FileHeader + unify file headers (#22132)
* [Coding Style] Enable rule PSR12.Files.FileHeader

* Apply CS

* Replace Piwik with Matomo in file headers

* Unify file headers (position, no. of lines, https links)

* Rebuild dist files

* Apply CS

* Fix system test that relies on line numbers in a file that had the file header updated

---------

Co-authored-by: Stefan Giehl <stefan@matomo.org>
2024-04-20 20:50:47 +02:00

58 خطوط
1.9 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\Widgetize\tests\Fixtures;
use Piwik\Plugins\Goals;
use Piwik\Tests\Framework\Fixture;
/**
* Generates tracker testing data for our SimpleSystemTest
*
* This Simple fixture adds one website and tracks one visit with couple pageviews and an ecommerce conversion
*/
class WidgetizeFixture extends Fixture
{
public $dateTime = '2013-01-23 01:23:45';
public $idSite = 1;
private $goals = array(
array('name' => 'Download Software', 'match' => 'url', 'pattern' => 'download', 'patternType' => 'contains', 'revenue' => 0.10),
array('name' => 'Download Software2', 'match' => 'url', 'pattern' => 'latest.zip', 'patternType' => 'contains', 'revenue' => 0.05),
array('name' => 'Opens Contact Form', 'match' => 'url', 'pattern' => 'contact', 'patternType' => 'contains', 'revenue' => false),
array('name' => 'Visit Docs', 'match' => 'url', 'pattern' => 'docs', 'patternType' => 'contains', 'revenue' => false),
);
public function setUp(): void
{
$this->setUpWebsite();
$this->setUpGoals();
}
public function tearDown(): void
{
// empty
}
private function setUpWebsite()
{
if (!self::siteCreated($this->idSite)) {
$idSite = self::createWebsite($this->dateTime, $ecommerce = 1);
$this->assertSame($this->idSite, $idSite);
}
}
protected function setUpGoals()
{
$api = Goals\API::getInstance();
foreach ($this->goals as $goal) {
$api->addGoal($this->idSite, $goal['name'], $goal['match'], $goal['pattern'], $goal['patternType'], $caseSensitive = false, $goal['revenue'], $allowMultipleConversionsPerVisit = false);
}
}
}