Spaces:
No application file
No application file
File size: 4,932 Bytes
d2897cd |
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 127 128 129 130 131 132 133 134 135 136 137 138 139 |
<?php
declare(strict_types=1);
namespace Mautic\DashboardBundle\Tests\Controller;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use Mautic\DashboardBundle\Entity\Widget;
use Mautic\LeadBundle\Entity\LeadList;
use Mautic\ReportBundle\Entity\Report;
use Mautic\UserBundle\Entity\User;
use PHPUnit\Framework\Assert;
use Symfony\Component\DomCrawler\Crawler;
class DashboardControllerFunctionalTest extends MauticMysqlTestCase
{
public function testWidgetWithReport(): void
{
$user = $this->em->getRepository(User::class)->findOneBy([]);
$report = new Report();
$report->setName('Lead and points');
$report->setSource('lead.pointlog');
$this->em->persist($report);
$this->em->flush();
$widget = new Widget();
$widget->setName('Line graph report');
$widget->setType('report');
$widget->setParams(['graph' => sprintf('%s:mautic.lead.graph.line.leads', $report->getId())]);
$widget->setWidth(100);
$widget->setHeight(200);
$widget->setCreatedBy($user);
$this->em->persist($widget);
$this->em->flush();
$this->em->detach($widget);
$this->client->request('GET', sprintf('/s/dashboard/widget/%s', $widget->getId()), [], [], [
'HTTP_X-Requested-With' => 'XMLHttpRequest',
]);
$response = $this->client->getResponse();
Assert::assertSame(200, $response->getStatusCode());
$content = $response->getContent();
Assert::assertJson($content);
$data = json_decode($content, true);
Assert::assertIsArray($data);
Assert::assertArrayHasKey('success', $data);
Assert::assertSame(1, $data['success']);
Assert::assertArrayHasKey('widgetId', $data);
Assert::assertSame((string) $widget->getId(), $data['widgetId']);
Assert::assertArrayHasKey('widgetWidth', $data);
Assert::assertSame($widget->getWidth(), $data['widgetWidth']);
Assert::assertArrayHasKey('widgetHeight', $data);
Assert::assertSame($widget->getHeight(), $data['widgetHeight']);
Assert::assertArrayHasKey('widgetHtml', $data);
Assert::assertStringContainsString('View Full Report', $data['widgetHtml']);
}
public function testWidgetWithSegmentBuildTime(): void
{
$user = $this->em->getRepository(User::class)->findOneBy([]);
$this->createSegment('A', 'a', 3, $user);
$this->createSegment('B', 'b', 60, $user);
$this->createSegment('C', 'c', 66, $user);
$this->createSegment('D', 'd', 0.4, $user);
$widget = new Widget();
$widget->setName('Segments build time');
$widget->setType('segments.build.time');
$widget->setParams(['order' => 'DESC', 'segments' => []]);
$widget->setWidth(100);
$widget->setHeight(300);
$widget->setCreatedBy($user);
$this->em->persist($widget);
$this->em->flush();
$this->em->detach($widget);
$this->client->request('GET', sprintf('/s/dashboard/widget/%s', $widget->getId()), [], [], [
'HTTP_X-Requested-With' => 'XMLHttpRequest',
]);
$response = $this->client->getResponse();
Assert::assertSame(200, $response->getStatusCode());
$content = $response->getContent();
Assert::assertJson($content);
$data = json_decode($content, true);
Assert::assertIsArray($data);
Assert::assertArrayHasKey('success', $data);
Assert::assertSame(1, $data['success']);
Assert::assertArrayHasKey('widgetHtml', $data);
$tableArray = $this->widgetHtmlWithTableToArray($data['widgetHtml']);
$this->assertSame([
['C', 'Admin User', '1 minute 6 seconds'],
['B', 'Admin User', '1 minute'],
['A', 'Admin User', '3 seconds'],
['D', 'Admin User', 'Less than 1 second'],
], $tableArray);
}
private function createSegment(string $name, string $alias, float $lastBuildTime = 0, ?User $user = null): LeadList
{
$segment = new LeadList();
$segment->setName($name);
$segment->setPublicName($name);
$segment->setAlias($alias);
$segment->setLastBuiltTime($lastBuildTime);
if ($user) {
$segment->setCreatedBy($user);
$segment->setCreatedByUser($user->getName());
}
$this->em->persist($segment);
return $segment;
}
/**
* @return array<int,array<int,string>>
*/
private function widgetHtmlWithTableToArray(string $widgetHtml): array
{
$doc = new \DOMDocument();
$doc->loadHTML($widgetHtml);
$crawler = new Crawler($doc);
$crawlerTable = $crawler->filter('table')->first();
return array_slice($crawlerTable->filter('tr')->each(fn ($tr) => $tr->filter('td')->each(fn ($td) => trim($td->text()))), 1);
}
}
|