69 lines
1.4 KiB
PHP
69 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use PhpMyAdmin\Pdf;
|
|
|
|
/**
|
|
* @covers \PhpMyAdmin\Pdf
|
|
*/
|
|
class PdfTest extends AbstractTestCase
|
|
{
|
|
/**
|
|
* SetUp for test cases
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
parent::setGlobalConfig();
|
|
}
|
|
|
|
/**
|
|
* Test for Pdf::getPDFData
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testBasic(): void
|
|
{
|
|
$arr = new Pdf();
|
|
$this->assertStringContainsString('PDF', $arr->getPDFData());
|
|
}
|
|
|
|
/**
|
|
* Test for Pdf::getPDFData
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testAlias(): void
|
|
{
|
|
$arr = new Pdf();
|
|
$arr->setAlias('{00}', '32');
|
|
$this->assertStringContainsString('PDF', $arr->getPDFData());
|
|
}
|
|
|
|
/**
|
|
* Test for Pdf::getPDFData
|
|
*
|
|
* @group large
|
|
*/
|
|
public function testDocument(): void
|
|
{
|
|
$pdf = new Pdf();
|
|
$pdf->SetTitle('Title');
|
|
$pdf->Open();
|
|
$pdf->SetAutoPageBreak(false);
|
|
$pdf->Addpage();
|
|
$pdf->SetFont(Pdf::PMA_PDF_FONT, 'B', 14);
|
|
$pdf->Cell(0, 6, 'Cell', 'B', 1, 'C');
|
|
$pdf->Ln();
|
|
$pdf->Addpage();
|
|
$pdf->Bookmark('Bookmark');
|
|
$pdf->SetMargins(0, 0);
|
|
$pdf->SetDrawColor(200, 200, 200);
|
|
$pdf->line(0, 0, 100, 100);
|
|
$this->assertStringContainsString('PDF', $pdf->getPDFData());
|
|
}
|
|
}
|