Files
alrahma_sunday_school_api/tests/Unit/Services/BroadcastEmail/BroadcastEmailComposerServiceTest.php
T
2026-06-08 23:30:22 -04:00

31 lines
921 B
PHP

<?php
namespace Tests\Unit\Services\BroadcastEmail;
use App\Services\BroadcastEmail\BroadcastEmailComposerService;
use Tests\TestCase;
class BroadcastEmailComposerServiceTest extends TestCase
{
public function test_sanitize_removes_script_and_events(): void
{
$service = new BroadcastEmailComposerService;
$html = '<p onclick="alert(1)">Hi</p><script>alert(2)</script>';
$clean = $service->sanitizeHtml($html);
$this->assertStringNotContainsString('script', $clean);
$this->assertStringNotContainsString('onclick', $clean);
}
public function test_compose_replaces_name_when_personalized(): void
{
$service = new BroadcastEmailComposerService;
$html = '<p>Hello {{name}}</p>';
$rendered = $service->compose(false, 'Subject', $html, 'Parent', '', '', '', true);
$this->assertSame('<p>Hello Parent</p>', $rendered);
}
}